diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..1de56593 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +target \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..dc3b8952 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.configuration.updateBuildConfiguration": "interactive" +} \ No newline at end of file diff --git a/pom.xml b/pom.xml index d65fca58..419ecc3f 100644 --- a/pom.xml +++ b/pom.xml @@ -21,6 +21,20 @@ + + org.openjfx + javafx-maven-plugin + 0.0.8 + + com.rafsan.inventory.MainApp + + + + + org.openjfx + javafx-plugin + 0.0.14 + org.apache.maven.plugins maven-dependency-plugin @@ -43,7 +57,7 @@ org.codehaus.mojo exec-maven-plugin - 1.2.1 + 3.1.0 unpack-dependencies @@ -83,15 +97,16 @@ org.apache.maven.plugins maven-compiler-plugin - 3.1 + 3.8.1 - 1.8 - 1.8 + 9 + 9 ${sun.boot.class.path}${path.separator}${java.home}/lib/jfxrt.jar + org.apache.maven.plugins maven-surefire-plugin @@ -108,7 +123,7 @@ mysql mysql-connector-java - 5.1.39 + 8.0.30 org.hibernate @@ -133,7 +148,43 @@ com.itextpdf itextpdf - 5.5.11 + 5.5.13.3 + + + + org.openjfx + javafx-controls + 19 + + + + org.openjfx + javafx-fxml + 19 + + + + org.openjfx + javafx-graphics + 19 + + + + org.openjfx + javafx-media + 19 + + + + org.openjfx + javafx-swing + 19 + + + + org.openjfx + javafx-web + 19 diff --git a/src/main/java/com/rafsan/inventory/AppState.java b/src/main/java/com/rafsan/inventory/AppState.java new file mode 100644 index 00000000..a98f08a4 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/AppState.java @@ -0,0 +1,15 @@ +package com.rafsan.inventory; + +import com.rafsan.inventory.entity.Employee; + +public class AppState { + private Employee employee; + + public void setEmployee(Employee employee) { + this.employee = employee; + } + + public Employee getEmployee() { + return employee; + } +} diff --git a/src/main/java/com/rafsan/inventory/MainApp.java b/src/main/java/com/rafsan/inventory/MainApp.java index 555c10a9..ff8f91da 100644 --- a/src/main/java/com/rafsan/inventory/MainApp.java +++ b/src/main/java/com/rafsan/inventory/MainApp.java @@ -1,7 +1,8 @@ package com.rafsan.inventory; +import com.rafsan.inventory.interfaces.Controller; + import javafx.application.Application; -import static javafx.application.Application.launch; import javafx.application.Platform; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; @@ -14,12 +15,19 @@ public class MainApp extends Application { + private AppState appState = new AppState(); + private double xOffset = 0; private double yOffset = 0; @Override public void start(Stage stage) throws Exception { - Parent root = FXMLLoader.load(getClass().getResource("/fxml/Login.fxml")); + FXMLLoader loader = new FXMLLoader(getClass().getResource("/fxml/Login.fxml")); + + Controller controller = loader.getController(); + controller.setAppState(appState); + + Parent root = loader.load(); root.setOnMousePressed((MouseEvent event) -> { xOffset = event.getSceneX(); yOffset = event.getSceneY(); @@ -28,6 +36,7 @@ public void start(Stage stage) throws Exception { stage.setX(event.getScreenX() - xOffset); stage.setY(event.getScreenY() - yOffset); }); + Scene scene = new Scene(root); stage.setTitle("Inventory:: Version 1.0"); stage.getIcons().add(new Image("/images/logo.png")); diff --git a/src/main/java/com/rafsan/inventory/adapters/ItemAdapter.java b/src/main/java/com/rafsan/inventory/adapters/ItemAdapter.java new file mode 100644 index 00000000..13c7b57b --- /dev/null +++ b/src/main/java/com/rafsan/inventory/adapters/ItemAdapter.java @@ -0,0 +1,27 @@ +package com.rafsan.inventory.adapters; + +import com.rafsan.inventory.entity.Item; +import com.rafsan.inventory.entity.ProductBase; + +public class ItemAdapter extends ProductBase { + private Item item; + + public ItemAdapter(Item item) { + this.item = item; + } + + @Override + public String getProductName() { + return item.getItemName(); + } + + @Override + public double getPrice() { + return item.getUnitPrice(); + } + + @Override + public double getQuantity() { + return this.getQuantity(); + } +} diff --git a/src/main/java/com/rafsan/inventory/builders/InvoiceBuilder.java b/src/main/java/com/rafsan/inventory/builders/InvoiceBuilder.java new file mode 100644 index 00000000..d7083c89 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/builders/InvoiceBuilder.java @@ -0,0 +1,68 @@ +package com.rafsan.inventory.builders; + +import com.rafsan.inventory.entity.Employee; +import com.rafsan.inventory.entity.Invoice; +import com.rafsan.inventory.interfaces.Builder; + +public class InvoiceBuilder implements Builder { + + private String id; + private Employee employee; + private double total; + private double vat; + private double discount; + private double payable; + private double paid; + private double returned; + private String date; + + public InvoiceBuilder setId(String id) { + this.id = id; + return this; + } + + public InvoiceBuilder setEmployee(Employee employee) { + this.employee = employee; + return this; + } + + public InvoiceBuilder setTotal(double total) { + this.total = total; + return this; + } + + public InvoiceBuilder setVat(double vat) { + this.vat = vat; + return this; + } + + public InvoiceBuilder setDiscount(double discount) { + this.discount = discount; + return this; + } + + public InvoiceBuilder setPayable(double payable) { + this.payable = payable; + return this; + } + + public InvoiceBuilder setPaid(double paid) { + this.paid = paid; + return this; + } + + public InvoiceBuilder setReturned(double returned) { + this.returned = returned; + return this; + } + + public InvoiceBuilder setDate(String date) { + this.date = date; + return this; + } + + @Override + public Invoice build() { + return new Invoice(id, employee, total, vat, discount, payable, paid, returned, date); + } +} diff --git a/src/main/java/com/rafsan/inventory/controller/admin/AdminController.java b/src/main/java/com/rafsan/inventory/controller/admin/AdminController.java index 0dff556e..ee6101e0 100644 --- a/src/main/java/com/rafsan/inventory/controller/admin/AdminController.java +++ b/src/main/java/com/rafsan/inventory/controller/admin/AdminController.java @@ -1,5 +1,6 @@ package com.rafsan.inventory.controller.admin; +import com.rafsan.inventory.AppState; import com.rafsan.inventory.entity.Invoice; import com.rafsan.inventory.entity.Product; import com.rafsan.inventory.model.InvoiceModel; @@ -33,6 +34,8 @@ public class AdminController implements Initializable { + private AppState appState; + private double xOffset = 0; private double yOffset = 0; @@ -136,6 +139,11 @@ private void loadStockChart(){ stockChart.getData().addAll(lists); } + + public void setAppState(AppState appState) { + this.appState = appState; + } + @FXML public void productAction(ActionEvent event) throws Exception { diff --git a/src/main/java/com/rafsan/inventory/controller/login/LoginController.java b/src/main/java/com/rafsan/inventory/controller/login/LoginController.java index cbc1a7c8..0eddaa8d 100644 --- a/src/main/java/com/rafsan/inventory/controller/login/LoginController.java +++ b/src/main/java/com/rafsan/inventory/controller/login/LoginController.java @@ -1,5 +1,7 @@ package com.rafsan.inventory.controller.login; +import com.rafsan.inventory.AppState; +import com.rafsan.inventory.interfaces.Controller; import com.rafsan.inventory.model.EmployeeModel; import java.net.URL; import java.util.ResourceBundle; @@ -21,7 +23,9 @@ import javafx.stage.Stage; import org.apache.commons.codec.digest.DigestUtils; -public class LoginController implements Initializable { +public class LoginController implements Initializable, Controller { + + private AppState appState; @FXML private TextField usernameField, passwordField; @@ -35,6 +39,10 @@ public void initialize(URL url, ResourceBundle rb) { enterPressed(); } + public void setAppState(AppState appState) { + this.appState = appState; + } + private void enterPressed() { usernameField.setOnKeyPressed((KeyEvent ke) -> { @@ -100,7 +108,12 @@ private void authenticate(Event event) throws Exception { private void windows(String path, String title) throws Exception { - Parent root = FXMLLoader.load(getClass().getResource(path)); + FXMLLoader loader = new FXMLLoader(getClass().getResource(path)); + + Controller controller = loader.getController(); + controller.setAppState(appState); + + Parent root = loader.load(); Stage stage = new Stage(); Scene scene = new Scene(root); stage.setTitle(title); diff --git a/src/main/java/com/rafsan/inventory/controller/pos/PosController.java b/src/main/java/com/rafsan/inventory/controller/pos/PosController.java index e90f782b..135eba2e 100644 --- a/src/main/java/com/rafsan/inventory/controller/pos/PosController.java +++ b/src/main/java/com/rafsan/inventory/controller/pos/PosController.java @@ -1,5 +1,6 @@ package com.rafsan.inventory.controller.pos; +import com.rafsan.inventory.AppState; import com.rafsan.inventory.entity.Item; import com.rafsan.inventory.entity.Payment; import com.rafsan.inventory.entity.Product; @@ -29,12 +30,15 @@ import javafx.stage.Modality; import javafx.stage.Stage; import javafx.scene.Node; + +import com.rafsan.inventory.interfaces.Controller; import com.rafsan.inventory.interfaces.ProductInterface; -import static com.rafsan.inventory.interfaces.ProductInterface.PRODUCTLIST; import javafx.scene.input.MouseEvent; import javafx.stage.StageStyle; -public class PosController implements Initializable, ProductInterface { +public class PosController implements Initializable, ProductInterface, Controller { + + private AppState appState; @FXML private TableView productTableView; @@ -116,6 +120,10 @@ private void filterData() { }); } + public void setAppState(AppState appState) { + this.appState = appState; + } + private void loadData() { if (!PRODUCTLIST.isEmpty()) { PRODUCTLIST.clear(); diff --git a/src/main/java/com/rafsan/inventory/decorators/Discount.java b/src/main/java/com/rafsan/inventory/decorators/Discount.java new file mode 100644 index 00000000..e59f8f63 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/decorators/Discount.java @@ -0,0 +1,48 @@ +package com.rafsan.inventory.decorators; + +import com.rafsan.inventory.entity.Category; +import com.rafsan.inventory.entity.Supplier; +import com.rafsan.inventory.interfaces.Product; + +public class Discount extends ProductDecorator { + private double descuento; + + public Discount(Product product, double descuento) { + super(product); + this.descuento = descuento; + } + + @Override + public String getProductName() { + return product.getProductName(); + } + + @Override + public double getPrice() { + return product.getPrice() - (product.getPrice() * descuento); + } + + @Override + public double getQuantity() { + return product.getQuantity(); + } + + @Override + public String getDescription() { + return product.getDescription(); + } + + @Override + public Category getCategory() { + return this.product.getCategory(); + } + + @Override + public Supplier getSupplier() { + return this.product.getSupplier(); + } + + public double getDescuento() { + return this.descuento; + } +} diff --git a/src/main/java/com/rafsan/inventory/decorators/ProductDecorator.java b/src/main/java/com/rafsan/inventory/decorators/ProductDecorator.java new file mode 100644 index 00000000..17070173 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/decorators/ProductDecorator.java @@ -0,0 +1,11 @@ +package com.rafsan.inventory.decorators; + +import com.rafsan.inventory.interfaces.Product; + +public abstract class ProductDecorator implements Product { + protected Product product; + + public ProductDecorator(Product product) { + this.product = product; + } +} diff --git a/src/main/java/com/rafsan/inventory/entity/ProductBase.java b/src/main/java/com/rafsan/inventory/entity/ProductBase.java new file mode 100644 index 00000000..02b193f7 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/entity/ProductBase.java @@ -0,0 +1,88 @@ +package com.rafsan.inventory.entity; + +import javax.persistence.CascadeType; +import javax.persistence.Column; +import javax.persistence.JoinColumn; +import javax.persistence.OneToOne; + +import com.rafsan.inventory.interfaces.Product; + +public class ProductBase implements Product { + + @Column(name = "name") + private String productName; + @Column(name = "price") + private double price; + @Column(name = "quantity") + private double quantity; + @Column(name = "description") + private String description; + + @OneToOne(cascade = CascadeType.MERGE) + @JoinColumn(name = "categoryId") + private Category category; + + @OneToOne(cascade = CascadeType.MERGE) + @JoinColumn(name = "supplierId") + private Supplier supplier; + + public ProductBase() {} + + public ProductBase(String productName, double price, + double quantity, String description, Category category, Supplier supplier) { + this.productName = productName; + this.price = price; + this.quantity = quantity; + this.description = description; + this.category = category; + this.supplier = supplier; + } + + public String getProductName() { + return productName; + } + + public void setProductName(String productName) { + this.productName = productName; + } + + public double getPrice() { + return price; + } + + public void setPrice(double price) { + this.price = price; + } + + public double getQuantity() { + return quantity; + } + + public void setQuantity(double quantity) { + this.quantity = quantity; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public Category getCategory() { + return category; + } + + public void setCategory(Category category) { + this.category = category; + } + + public Supplier getSupplier() { + return supplier; + } + + public void setSupplier(Supplier supplier) { + this.supplier = supplier; + } +} diff --git a/src/main/java/com/rafsan/inventory/entity/ProductNotStored.java b/src/main/java/com/rafsan/inventory/entity/ProductNotStored.java new file mode 100644 index 00000000..ba1f7802 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/entity/ProductNotStored.java @@ -0,0 +1,7 @@ +package com.rafsan.inventory.entity; + +public class ProductNotStored extends ProductBase { + public ProductNotStored(String productName, double price, double quantity, String description, Category category, Supplier supplier) { + super(productName, price, quantity, description, category, supplier); + } +} diff --git a/src/main/java/com/rafsan/inventory/entity/ProductStored.java b/src/main/java/com/rafsan/inventory/entity/ProductStored.java new file mode 100644 index 00000000..c201f660 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/entity/ProductStored.java @@ -0,0 +1,19 @@ +package com.rafsan.inventory.entity; + +import javax.persistence.Column; + +public class ProductStored extends ProductBase { + + @Column(name = "id") + private long id; + + public ProductStored(long id, String productName, double price, double quantity, String description, Category category, Supplier supplier) { + super(productName, price, quantity, description, category, supplier); + + this.id = id; + } + + public long getId() { + return this.id; + } +} diff --git a/src/main/java/com/rafsan/inventory/facades/ProductManagerFacade.java b/src/main/java/com/rafsan/inventory/facades/ProductManagerFacade.java new file mode 100644 index 00000000..e6b37660 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/facades/ProductManagerFacade.java @@ -0,0 +1,26 @@ +package com.rafsan.inventory.facades; + +import java.util.ArrayList; + +import com.rafsan.inventory.interfaces.Product; +import com.rafsan.inventory.interfaces.ProductManager; + +public class ProductManagerFacade implements ProductManager { + private ArrayList products = new ArrayList(); + + @Override + public Product getProduct(int i) { + return products.get(i); + } + + @Override + public void updateProduct(int i, Product product) { + products.add(i, product); + } + + @Override + public void addProduct(Product product) { + products.add(product); + } + +} diff --git a/src/main/java/com/rafsan/inventory/factories/ProductFactory.java b/src/main/java/com/rafsan/inventory/factories/ProductFactory.java new file mode 100644 index 00000000..762cd1f7 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/factories/ProductFactory.java @@ -0,0 +1,9 @@ +package com.rafsan.inventory.factories; + +import com.rafsan.inventory.entity.Category; +import com.rafsan.inventory.entity.Supplier; +import com.rafsan.inventory.interfaces.Product; + +public abstract class ProductFactory { + public abstract Product createProduct(String productName, double price, double quantity, String description, Category category, Supplier supplier); +} diff --git a/src/main/java/com/rafsan/inventory/factories/ProductNotStoredFactory.java b/src/main/java/com/rafsan/inventory/factories/ProductNotStoredFactory.java new file mode 100644 index 00000000..6b45c9e5 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/factories/ProductNotStoredFactory.java @@ -0,0 +1,12 @@ +package com.rafsan.inventory.factories; + +import com.rafsan.inventory.entity.Category; +import com.rafsan.inventory.entity.ProductNotStored; +import com.rafsan.inventory.entity.Supplier; +import com.rafsan.inventory.interfaces.Product; + +public class ProductNotStoredFactory extends ProductFactory { + public Product createProduct(String productName, double price, double quantity, String description, Category category, Supplier supplier) { + return new ProductNotStored(productName, price, quantity, description, category, supplier); + } +} \ No newline at end of file diff --git a/src/main/java/com/rafsan/inventory/factories/ProductStoredFactory.java b/src/main/java/com/rafsan/inventory/factories/ProductStoredFactory.java new file mode 100644 index 00000000..62d4f40a --- /dev/null +++ b/src/main/java/com/rafsan/inventory/factories/ProductStoredFactory.java @@ -0,0 +1,18 @@ +package com.rafsan.inventory.factories; + +import com.rafsan.inventory.entity.Category; +import com.rafsan.inventory.entity.ProductStored; +import com.rafsan.inventory.entity.Supplier; +import com.rafsan.inventory.interfaces.Product; + +public class ProductStoredFactory extends ProductFactory { + private long id = 0; + + public Product createProduct(String productName, double price, double quantity, String description, Category category, Supplier supplier) { + return new ProductStored(this.id, productName, price, quantity, description, category, supplier); + } + + public void setProductId(long id) { + this.id = id; + } +} diff --git a/src/main/java/com/rafsan/inventory/interfaces/Builder.java b/src/main/java/com/rafsan/inventory/interfaces/Builder.java new file mode 100644 index 00000000..81142344 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/interfaces/Builder.java @@ -0,0 +1,5 @@ +package com.rafsan.inventory.interfaces; + +public interface Builder { + public T build(); +} diff --git a/src/main/java/com/rafsan/inventory/interfaces/Controller.java b/src/main/java/com/rafsan/inventory/interfaces/Controller.java new file mode 100644 index 00000000..54e69dbe --- /dev/null +++ b/src/main/java/com/rafsan/inventory/interfaces/Controller.java @@ -0,0 +1,7 @@ +package com.rafsan.inventory.interfaces; + +import com.rafsan.inventory.AppState; + +public interface Controller { + public void setAppState(AppState appState); +} diff --git a/src/main/java/com/rafsan/inventory/interfaces/Product.java b/src/main/java/com/rafsan/inventory/interfaces/Product.java new file mode 100644 index 00000000..a815f8d8 --- /dev/null +++ b/src/main/java/com/rafsan/inventory/interfaces/Product.java @@ -0,0 +1,20 @@ +package com.rafsan.inventory.interfaces; + +import java.io.Serializable; + +import com.rafsan.inventory.entity.Category; +import com.rafsan.inventory.entity.Supplier; + +public interface Product extends Serializable { + public String getProductName(); + + public double getPrice(); + + public double getQuantity(); + + public String getDescription(); + + public Category getCategory(); + + public Supplier getSupplier(); +} diff --git a/src/main/java/com/rafsan/inventory/interfaces/ProductManager.java b/src/main/java/com/rafsan/inventory/interfaces/ProductManager.java new file mode 100644 index 00000000..f86e66fd --- /dev/null +++ b/src/main/java/com/rafsan/inventory/interfaces/ProductManager.java @@ -0,0 +1,10 @@ +package com.rafsan.inventory.interfaces; + +public interface ProductManager { + + Product getProduct(int it); + + void updateProduct(int i, Product product); + + void addProduct(Product product); +} diff --git a/target/classes/META-INF/INDEX.LIST b/target/classes/META-INF/INDEX.LIST deleted file mode 100644 index 6fee2800..00000000 --- a/target/classes/META-INF/INDEX.LIST +++ /dev/null @@ -1,11 +0,0 @@ -JarIndex-Version: 1.0 - -jboss-logging-3.3.0.Final.jar -META-INF -META-INF/maven -META-INF/maven/org.jboss.logging -META-INF/maven/org.jboss.logging/jboss-logging -org -org/jboss -org/jboss/logging - diff --git a/target/classes/META-INF/LICENSE b/target/classes/META-INF/LICENSE deleted file mode 100644 index 522a4db0..00000000 --- a/target/classes/META-INF/LICENSE +++ /dev/null @@ -1,7 +0,0 @@ -This copy of Java ClassMate library is licensed under Apache (Software) License, -version 2.0 ("the License"). -See the License for details about distribution rights, and the specific rights regarding derivate works. - -You may obtain a copy of the License at: - -http://www.apache.org/licenses/LICENSE-2.0 diff --git a/target/classes/META-INF/LICENSE.txt b/target/classes/META-INF/LICENSE.txt deleted file mode 100644 index d6456956..00000000 --- a/target/classes/META-INF/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/target/classes/META-INF/MANIFEST.MF b/target/classes/META-INF/MANIFEST.MF deleted file mode 100644 index 0fb00855..00000000 --- a/target/classes/META-INF/MANIFEST.MF +++ /dev/null @@ -1,26 +0,0 @@ -Manifest-Version: 1.0 -Bundle-Description: A module of the Hibernate O/RM project -Bundle-SymbolicName: org.hibernate.java8 -Implementation-Version: 5.1.0.Final -Bundle-ManifestVersion: 2 -Bnd-LastModified: 1455125288000 -Implementation-Vendor-Id: org.hibernate -Bundle-Vendor: Hibernate.org -Import-Package: org.hibernate;version="[5.1,6)",org.hibernate.boot.mod - el;version="[5.1,6)",org.hibernate.dialect;version="[5.1,6)",org.hibe - rnate.engine.spi;version="[5.1,6)",org.hibernate.internal.util.compar - e;version="[5.1,6)",org.hibernate.service;version="[5.1,6)",org.hiber - nate.type.descriptor;version="[5.1,6)",org.hibernate.type.descriptor. - sql;version="[5.1,6)",javax.transaction;version="[1.1,2)" -Tool: Bnd-2.1.0.20130426-122213 -Implementation-Vendor: Hibernate.org -Export-Package: org.hibernate.internal.util;version="5.1.0.Final",org. - hibernate.type;version="5.1.0.Final";uses:="org.hibernate.boot.model, - org.hibernate.dialect,org.hibernate.engine.spi,org.hibernate.service" - ,org.hibernate.type.descriptor.java;version="5.1.0.Final";uses:="org. - hibernate.type.descriptor" -Bundle-Name: hibernate-java8 -Bundle-Version: 5.1.0.Final -Created-By: 1.8.0_40 (Oracle Corporation) -Implementation-Url: http://hibernate.org - diff --git a/target/classes/META-INF/NOTICE b/target/classes/META-INF/NOTICE deleted file mode 100644 index 9e27178b..00000000 --- a/target/classes/META-INF/NOTICE +++ /dev/null @@ -1,6 +0,0 @@ -Java ClassMate library was originally written by Tatu Saloranta (tatu.saloranta@iki.fi) - -Other developers who have contributed code are: - -* Brian Langel - diff --git a/target/classes/META-INF/NOTICE.txt b/target/classes/META-INF/NOTICE.txt deleted file mode 100644 index 1da9af50..00000000 --- a/target/classes/META-INF/NOTICE.txt +++ /dev/null @@ -1,17 +0,0 @@ -Apache Commons Codec -Copyright 2002-2014 The Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - -src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java -contains test data from http://aspell.net/test/orig/batch0.tab. -Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org) - -=============================================================================== - -The content of package org.apache.commons.codec.language.bm has been translated -from the original php source code available at http://stevemorse.org/phoneticinfo.htm -with permission from the original authors. -Original source copyright: -Copyright (c) 2008 Alexander Beider & Stephen P. Morse. diff --git a/target/classes/META-INF/maven/com.fasterxml/classmate/pom.properties b/target/classes/META-INF/maven/com.fasterxml/classmate/pom.properties deleted file mode 100644 index 305107aa..00000000 --- a/target/classes/META-INF/maven/com.fasterxml/classmate/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by org.apache.felix.bundleplugin -#Wed Sep 16 15:08:54 PDT 2015 -version=1.3.0 -groupId=com.fasterxml -artifactId=classmate diff --git a/target/classes/META-INF/maven/com.fasterxml/classmate/pom.xml b/target/classes/META-INF/maven/com.fasterxml/classmate/pom.xml deleted file mode 100644 index 3500d653..00000000 --- a/target/classes/META-INF/maven/com.fasterxml/classmate/pom.xml +++ /dev/null @@ -1,160 +0,0 @@ - - 4.0.0 - - com.fasterxml - oss-parent - 24 - - com.fasterxml - classmate - ClassMate - 1.3.0 - bundle - Library for introspecting types with full generic information - including resolving of field and method types. - - http://github.com/cowtowncoder/java-classmate - - scm:git:git@github.com:cowtowncoder/java-classmate.git - scm:git:git@github.com:cowtowncoder/java-classmate.git - http://github.com/cowtowncoder/java-classmate - classmate-1.3.0 - - - - tatu - Tatu Saloranta - tatu@fasterxml.com - - - blangel - Brian Langel - blangel@ocheyedan.net - - - - - 2.2.1 - - - UTF-8 - - com.fasterxml.classmate;version=${project.version}, -com.fasterxml.classmate.*;version=${project.version} - - com.fasterxml.classmate.util.* - - - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - fasterxml.com - http://fasterxml.com - - - - - - junit - junit - 4.12 - test - - - - - - - maven-compiler-plugin - 3.2 - - 1.6 - 1.6 - - - - org.apache.maven.plugins - maven-release-plugin - 2.5.2 - - forked-path - - - - org.apache.maven.plugins - maven-source-plugin - 2.1.2 - - - attach-sources - - jar - - - - - - - org.apache.maven.plugins - maven-javadoc-plugin - ${version.plugin.javadoc} - - 1.6 - 1.6 - UTF-8 - 512m - - http://docs.oracle.com/javase/7/docs/api/ - - - - - attach-javadocs - verify - - jar - - - - - - - - - - release-sign-artifacts - - - performRelease - true - - - - - - org.apache.maven.plugins - maven-gpg-plugin - 1.1 - - - sign-artifacts - verify - - sign - - - - - - - - - - diff --git a/target/classes/META-INF/maven/com.itextpdf/itextpdf/pom.properties b/target/classes/META-INF/maven/com.itextpdf/itextpdf/pom.properties deleted file mode 100644 index cb98b8a3..00000000 --- a/target/classes/META-INF/maven/com.itextpdf/itextpdf/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by org.apache.felix.bundleplugin -#Mon Mar 20 11:11:17 CET 2017 -version=5.5.11 -groupId=com.itextpdf -artifactId=itextpdf diff --git a/target/classes/META-INF/maven/com.itextpdf/itextpdf/pom.xml b/target/classes/META-INF/maven/com.itextpdf/itextpdf/pom.xml deleted file mode 100644 index ecf6aee9..00000000 --- a/target/classes/META-INF/maven/com.itextpdf/itextpdf/pom.xml +++ /dev/null @@ -1,377 +0,0 @@ - - - 4.0.0 - - - com.itextpdf - itext-parent - 1.0.0 - - - - itextpdf - 5.5.11 - - iText Core - A Free Java-PDF library - http://itextpdf.com - - - - GNU Affero General Public License v3 - http://www.fsf.org/licensing/licenses/agpl-3.0.html - - - - - - itext - iText Software - info@itextpdf.com - http://www.itextpdf.com - - - - - - iText on StackOverflow - http://stackoverflow.com/questions/tagged/itext - http://stackoverflow.com/questions/tagged/itext - - http://news.gmane.org/gmane.comp.java.lib.itext.general - http://itext-general.2136553.n4.nabble.com/ - http://www.junlu.com/2.html - http://sourceforge.net/mailarchive/forum.php?forum_id=3273 - http://www.mail-archive.com/itext-questions%40lists.sourceforge.net/ - - - - - - scm:git:git@github.com:itext/itextpdf.git - https://github.com/itext/itextpdf - - - - jira - https://jira.itextsupport.com/ - - - - jenkins-ci - http://ci.itextsupport.com/ - - - - UTF-8 - -Xms512m -Xmx1024m - license.txt - java - jacoco - ${project.basedir}/target/jacoco.exec - - - - - org.bouncycastle - bcprov-jdk15on - 1.49 - true - - - org.bouncycastle - bcpkix-jdk15on - 1.49 - true - - - junit - junit - 4.8.2 - test - - - org.apache.santuario - xmlsec - 1.5.1 - true - - - - - - - - src/main/resources - - **/*.lng - **/*.afm - **/*.html - **/*.txt - - - - - - - src/main/resources - - com/itextpdf/text/pdf/fonts/cmaps/** - **/cmap_info.txt - - - - src/test/resources - - **/*.* - - - - - - - - org.codehaus.mojo - buildnumber-maven-plugin - 1.4 - - - validate - - create - - - - - false - false - - - - - - org.apache.felix - maven-bundle-plugin - 3.2.0 - true - - - bundle-manifest - process-classes - - - manifest - - - - - - true - - - com.itextpdf.text.*, com.itextpdf.awt.*, - com.itextpdf.xmp.* - - - - - - org.apache.maven.plugins - maven-jar-plugin - 3.0.2 - - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - true - - - ${buildNumber} - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.19.1 - - random - - - - - external.atlassian.jgitflow - jgitflow-maven-plugin - 1.0-m5.1 - - - master - develop - feature/ - release/ - hotfix/ - - - true - true - true - - - - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.17 - - checkstyle-config.xml - - - - - - - - - snapshot - - ${project.artifactId}-${project.version}-rev${buildNumber} - - - - - all - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - - attach-sources - - jar - - - - - - http://developers.itextpdf.com/reference/classes - -
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), - m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) - })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); - - ga('create', 'UA-11854164-1', 'itextpdf.com'); - ga('send', 'pageview'); - - - ]]>
-
-
-
-
-
- - - doclint-java8-disable - - [1.8,) - - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.10.4 - - -Xdoclint:none - --allow-script-in-comments - - - - - - - - - coverage-per-test - - - - org.apache.maven.plugins - maven-surefire-plugin - - 2.19.1 - - - - listener - org.sonar.java.jacoco.JUnitListener - - - - - - - - - org.codehaus.sonar-plugins.java - sonar-jacoco-listeners - 3.2 - test - - - - - - - compileWithLegacyJDK - - - 1.5 - ${env.JAVA5_HOME} - ${java.home}/jre/lib - ${java.libs}/rt.jar${path.separator}${java.libs}/jce.jar - - - - - org.apache.maven.plugins - maven-compiler-plugin - 3.6.1 - - ${java.version} - ${java.version} - - ${java.bootclasspath} - - ${java.version} - true - ${java.home}/bin/javac - - - - - - -
- -
diff --git a/target/classes/META-INF/maven/commons-codec/commons-codec/pom.properties b/target/classes/META-INF/maven/commons-codec/commons-codec/pom.properties deleted file mode 100644 index 6d6b346a..00000000 --- a/target/classes/META-INF/maven/commons-codec/commons-codec/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Wed Nov 05 23:29:19 EST 2014 -version=1.10 -groupId=commons-codec -artifactId=commons-codec diff --git a/target/classes/META-INF/maven/commons-codec/commons-codec/pom.xml b/target/classes/META-INF/maven/commons-codec/commons-codec/pom.xml deleted file mode 100644 index beeaebae..00000000 --- a/target/classes/META-INF/maven/commons-codec/commons-codec/pom.xml +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - org.apache.commons - commons-parent - 35 - - 4.0.0 - commons-codec - commons-codec - - 1.10 - Apache Commons Codec - 2002 - - The Apache Commons Codec package contains simple encoder and decoders for - various formats such as Base64 and Hexadecimal. In addition to these - widely used encoders and decoders, the codec package also maintains a - collection of phonetic encoding utilities. - - - 3.0.0 - - http://commons.apache.org/proper/commons-codec/ - - jira - http://issues.apache.org/jira/browse/CODEC - - - scm:svn:http://svn.apache.org/repos/asf/commons/proper/codec/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/codec/trunk - http://svn.apache.org/viewvc/commons/proper/codec/trunk - - - - stagingSite - Apache Staging Website - ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}/ - - - - - Henri Yandell - bayard - bayard@apache.org - - - Tim OBrien - tobrien - tobrien@apache.org - -6 - - - Scott Sanders - sanders - sanders@totalsync.com - - - Rodney Waldhoff - rwaldhoff - rwaldhoff@apache.org - - - Daniel Rall - dlr - dlr@finemaltcoding.com - - - Jon S. Stevens - jon - jon@collab.net - - - Gary Gregory - ggregory - ggregory@apache.org - http://www.garygregory.com - -5 - - - David Graham - dgraham - dgraham@apache.org - - - Julius Davies - julius - julius@apache.org - http://juliusdavies.ca/ - -8 - - - Thomas Neidhart - tn - tn@apache.org - - - - - Christopher O'Brien - siege@preoccupied.net - - hex - md5 - architecture - - - - Martin Redington - - Representing xml-rpc - - - - Jeffery Dever - - Representing http-client - - - - Steve Zimmermann - steve.zimmermann@heii.com - - Documentation - - - - Benjamin Walstrum - ben@walstrum.com - - - Oleg Kalnichevski - oleg@ural.ru - - Representing http-client - - - - Dave Dribin - apache@dave.dribin.org - - DigestUtil - - - - Alex Karasulu - aok123 at bellsouth.net - - Submitted Binary class and test - - - - Matthew Inger - mattinger at yahoo.com - - Submitted DIFFERENCE algorithm for Soundex and RefinedSoundex - - - - Jochen Wiedmann - jochen@apache.org - - Base64 code [CODEC-69] - - - - Sebastian Bazley - sebb@apache.org - - Streaming Base64 - - - - Matthew Pocock - turingatemyhamster@gmail.com - - Beider-Morse phonetic matching - - - - Colm Rice - colm_rice at hotmail dot com - - Submitted Match Rating Approach (MRA) phonetic encoder and tests [CODEC-161] - - - - - - - junit - junit - 4.11 - test - - - - 1.6 - 1.6 - codec - 1.10 - - RC1 - CODEC - 12310464 - - UTF-8 - UTF-8 - UTF-8 - ${basedir}/LICENSE-header.txt - - - - - - org.apache.maven.plugins - maven-scm-publish-plugin - - - archive** - - - - - - - - org.apache.maven.plugins - maven-surefire-plugin - - - **/*AbstractTest.java - **/*PerformanceTest.java - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.4 - - - - test-jar - - - - - - org.apache.maven.plugins - maven-assembly-plugin - 2.5 - - - src/main/assembly/bin.xml - src/main/assembly/src.xml - - gnu - - - - - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - 2.9.1 - - ${basedir}/checkstyle.xml - false - ${basedir}/LICENSE-header.txt - - - - - - checkstyle - - - - - - org.apache.maven.plugins - maven-pmd-plugin - 3.2 - - ${maven.compiler.target} - true - - ${basedir}/pmd.xml - - - - - org.codehaus.mojo - findbugs-maven-plugin - 2.5.5 - - - org.codehaus.mojo - taglist-maven-plugin - 2.4 - - - TODO - NOPMD - NOTE - - - - - org.codehaus.mojo - javancss-maven-plugin - 2.0 - - - - diff --git a/target/classes/META-INF/maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec/pom.properties b/target/classes/META-INF/maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec/pom.properties deleted file mode 100644 index 5c103657..00000000 --- a/target/classes/META-INF/maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Fri Feb 01 11:36:40 CET 2008 -version=1.1.1 -groupId=org.apache.geronimo.specs -artifactId=geronimo-jta_1.1_spec diff --git a/target/classes/META-INF/maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec/pom.xml b/target/classes/META-INF/maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec/pom.xml deleted file mode 100644 index f68a2763..00000000 --- a/target/classes/META-INF/maven/org.apache.geronimo.specs/geronimo-jta_1.1_spec/pom.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - 4.0.0 - - - org.apache.geronimo.specs - specs - 1.4 - ../pom.xml - - - geronimo-jta_1.1_spec - jar - JTA 1.1 - 1.1.1 - - - javax.transaction* - 1.1 - - - - scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/tags/geronimo-jta_1.1_spec-1.1.1 - scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/tags/geronimo-jta_1.1_spec-1.1.1 - scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/tags/geronimo-jta_1.1_spec-1.1.1 - - - diff --git a/target/classes/META-INF/maven/org.javassist/javassist/pom.properties b/target/classes/META-INF/maven/org.javassist/javassist/pom.properties deleted file mode 100644 index 9a5ca6ba..00000000 --- a/target/classes/META-INF/maven/org.javassist/javassist/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by org.apache.felix.bundleplugin -#Thu Jun 25 08:09:29 EDT 2015 -version=3.20.0-GA -groupId=org.javassist -artifactId=javassist diff --git a/target/classes/META-INF/maven/org.javassist/javassist/pom.xml b/target/classes/META-INF/maven/org.javassist/javassist/pom.xml deleted file mode 100644 index 164b07c0..00000000 --- a/target/classes/META-INF/maven/org.javassist/javassist/pom.xml +++ /dev/null @@ -1,315 +0,0 @@ - - 4.0.0 - org.javassist - javassist - bundle - - Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation - simple. It is a class library for editing bytecodes in Java. - - 3.20.0-GA - Javassist - http://www.javassist.org/ - - - Shigeru Chiba, www.javassist.org - - - - JIRA - https://jira.jboss.org/jira/browse/JASSIST/ - - - - - MPL 1.1 - http://www.mozilla.org/MPL/MPL-1.1.html - - - - LGPL 2.1 - http://www.gnu.org/licenses/lgpl-2.1.html - - - - Apache License 2.0 - http://www.apache.org/licenses/ - - - - - scm:git:git@github.com:jboss-javassist/javassist.git - scm:git:git@github.com:jboss-javassist/javassist.git - scm:git:git@github.com:jboss-javassist/javassist.git - - - - - chiba - Shigeru Chiba - chiba@javassist.org - The Javassist Project - http://www.javassist.org/ - - project lead - - 9 - - - - adinn - Andrew Dinn - adinn@redhat.com - JBoss - http://www.jboss.org/ - - contributing developer - - 0 - - - - kabir.khan@jboss.com - Kabir Khan - kabir.khan@jboss.com - JBoss - http://www.jboss.org/ - - contributing developer - - 0 - - - - scottmarlow - Scott Marlow - smarlow@redhat.com - JBoss - http://www.jboss.org/ - - contributing developer - - -5 - - - - - - - - - jboss-releases-repository - JBoss Releases Repository - https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/ - - - jboss-snapshots-repository - JBoss Snapshots Repository - https://repository.jboss.org/nexus/content/repositories/snapshots/ - - - - src/main/ - src/test/ - - - org.apache.maven.plugins - maven-compiler-plugin - 3.2 - - 1.6 - 1.6 - 1.8 - 1.8 - -parameters - - - - org.apache.maven.plugins - maven-surefire-plugin - 2.18.1 - - - javassist/JvstTest.java - - once - runtest - - - - org.apache.maven.plugins - maven-jar-plugin - 2.6 - - - - javassist.CtClass - true - - - - - - maven-source-plugin - 2.0.3 - - - attach-sources - - jar - - - - true - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.7 - - true - - - - org.apache.felix - maven-bundle-plugin - 2.1.0 - - - bundle-manifest - process-classes - - manifest - - - - - - jar - bundle - war - - - ${project.artifactId} - ${project.version} - !com.sun.jdi.* - !com.sun.jdi.*,javassist.*;version="${project.version}" - - - true - - - - - - - centralRelease - - - - sonatype-releases-repository - Sonatype Releases Repository - https://oss.sonatype.org/service/local/staging/deploy/maven2 - - - - - - - org.apache.maven.plugins - maven-gpg-plugin - - ${gpg.passphrase} - ${gpg.useAgent} - - - - sign-artifacts - verify - - sign - - - - - - - - - - default-tools - - - !mac - - - - - com.sun - tools - ${java.version} - system - true - ${java.home}/../lib/tools.jar - - - - - mac-tools - - - mac - - - - - com.sun - tools - ${java.version} - system - true - ${java.home}/../lib/tools.jar - - - - - - - junit - junit - 3.8.1 - test - - - - diff --git a/target/classes/META-INF/maven/org.jboss.logging/jboss-logging/pom.properties b/target/classes/META-INF/maven/org.jboss.logging/jboss-logging/pom.properties deleted file mode 100644 index 16cc94e1..00000000 --- a/target/classes/META-INF/maven/org.jboss.logging/jboss-logging/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Thu May 28 09:49:30 PDT 2015 -version=3.3.0.Final -groupId=org.jboss.logging -artifactId=jboss-logging diff --git a/target/classes/META-INF/maven/org.jboss.logging/jboss-logging/pom.xml b/target/classes/META-INF/maven/org.jboss.logging/jboss-logging/pom.xml deleted file mode 100644 index 69eb4280..00000000 --- a/target/classes/META-INF/maven/org.jboss.logging/jboss-logging/pom.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - 4.0.0 - org.jboss.logging - jboss-logging - 3.3.0.Final - jar - JBoss Logging 3 - http://www.jboss.org - The JBoss Logging Framework - - scm:git:git://github.com/jboss-logging/jboss-logging.git - https://github.com/jboss-logging/jboss-logging - - - - org.jboss - jboss-parent - 15 - - - - - Apache License, version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - 1.2.16 - 2.0 - 1.5.2.Final - 1.7.2 - - - 1.3.2.GA - - - 1.6 - 1.6 - - - - - org.jboss.logmanager - jboss-logmanager - ${version.org.jboss.logmanager} - provided - - - log4j - log4j - ${version.org.apache.log4j} - provided - - - com.sun.jdmk - jmxtools - - - com.sun.jmx - jmxri - - - - - org.apache.logging.log4j - log4j-api - ${version.org.apache.logging.log4j} - provided - - - org.slf4j - slf4j-api - ${version.org.sfl4j} - provided - - - - - - - maven-compiler-plugin - - - maven-source-plugin - - - maven-javadoc-plugin - - false - false - net.gleamynode.apiviz.APIviz - - org.jboss.apiviz - apiviz - ${version.org.jboss.apiviz.apiviz} - - ${project.version} -
${project.version}
-
${project.version}
- Copyright © 2015 Red Hat, Inc.]]> - - http://java.sun.com/javase/6/docs/api/ - -
-
- - - maven-jar-plugin - - - ${project.build.outputDirectory}/META-INF/MANIFEST.MF - - - - - org.apache.felix - maven-bundle-plugin - true - - - - ${project.groupId}.*;version=${project.version};-split-package:=error - - - *;resolution:=optional - - - - - - bundle-manifest - process-classes - - manifest - - - - -
-
-
diff --git a/target/classes/META-INF/maven/org.jboss/jandex/pom.properties b/target/classes/META-INF/maven/org.jboss/jandex/pom.properties deleted file mode 100644 index 2d590dfc..00000000 --- a/target/classes/META-INF/maven/org.jboss/jandex/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by org.apache.felix.bundleplugin -#Fri Oct 02 19:23:59 CDT 2015 -version=2.0.0.Final -groupId=org.jboss -artifactId=jandex diff --git a/target/classes/META-INF/maven/org.jboss/jandex/pom.xml b/target/classes/META-INF/maven/org.jboss/jandex/pom.xml deleted file mode 100644 index 9bbda4ca..00000000 --- a/target/classes/META-INF/maven/org.jboss/jandex/pom.xml +++ /dev/null @@ -1,134 +0,0 @@ - - 4.0.0 - - 1.6 - 1.6 - 1.6 - - - - org.jboss - jboss-parent - 12 - - org.jboss - jandex - 2.0.0.Final - Java Annotation Indexer - bundle - - - - Apache License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - repo - - - - - - - org.apache.maven.plugins - maven-compiler-plugin - 2.1 - - true - 1.6 - 1.6 - true - true - - - - org.apache.maven.plugins - maven-javadoc-plugin - - org.jboss.apiviz.APIviz - - org.jboss.apiviz - apiviz - 1.3.2.GA - - true - UTF-8 - UTF-8 - UTF-8 - true - true - true - true - - -sourceclasspath ${project.build.outputDirectory} - - true - - - - ]]> -
- SyntaxHighlighter.defaults["auto-links"] = false; - SyntaxHighlighter.defaults["tab-size"] = 2; - SyntaxHighlighter.defaults["toolbar"] = false; - SyntaxHighlighter.all(); - - ]]>
-
-
- - org.apache.felix - maven-bundle-plugin - 2.3.7 - true - - - true - - org.jboss.jandex.Main - - - - ${project.groupId}.${project.artifactId} - ${project.version} - - org.jboss.jandex;version="${project.version}" - - - org.apache.tools.ant;resolution:=optional, - org.apache.tools.ant.types;resolution:=optional, - * - - - <_nouses>true - - - -
-
- - - junit - junit - 4.7 - jar - test - - - org.jboss.jandex - typeannotation-test - 1.0 - jar - test - - - org.apache.ant - ant - 1.8.1 - provided - true - - -
diff --git a/target/classes/META-INF/services/java.sql.Driver b/target/classes/META-INF/services/java.sql.Driver deleted file mode 100644 index dcbdb585..00000000 --- a/target/classes/META-INF/services/java.sql.Driver +++ /dev/null @@ -1,2 +0,0 @@ -com.mysql.jdbc.Driver -com.mysql.fabric.jdbc.FabricMySQLDriver \ No newline at end of file diff --git a/target/classes/META-INF/services/javax.persistence.spi.PersistenceProvider b/target/classes/META-INF/services/javax.persistence.spi.PersistenceProvider deleted file mode 100644 index 2961f55a..00000000 --- a/target/classes/META-INF/services/javax.persistence.spi.PersistenceProvider +++ /dev/null @@ -1,13 +0,0 @@ -# -# Hibernate, Relational Persistence for Idiomatic Java -# -# License: GNU Lesser General Public License (LGPL), version 2.1 or later. -# See the lgpl.txt file in the root directory or . -# -# -# Hibernate, Relational Persistence for Idiomatic Java -# -# License: GNU Lesser General Public License (LGPL), version 2.1 or later. -# See the lgpl.txt file in the root directory or . -# -org.hibernate.jpa.HibernatePersistenceProvider \ No newline at end of file diff --git a/target/classes/META-INF/services/org.hibernate.boot.model.TypeContributor b/target/classes/META-INF/services/org.hibernate.boot.model.TypeContributor deleted file mode 100644 index 4c6f376a..00000000 --- a/target/classes/META-INF/services/org.hibernate.boot.model.TypeContributor +++ /dev/null @@ -1,13 +0,0 @@ -# -# Hibernate, Relational Persistence for Idiomatic Java -# -# License: GNU Lesser General Public License (LGPL), version 2.1 or later. -# See the lgpl.txt file in the root directory or . -# -# -# Hibernate, Relational Persistence for Idiomatic Java -# -# License: GNU Lesser General Public License (LGPL), version 2.1 or later. -# See the lgpl.txt file in the root directory or . -# -org.hibernate.type.Java8DateTimeTypeContributor \ No newline at end of file diff --git a/target/classes/antlr/ANTLRError.class b/target/classes/antlr/ANTLRError.class deleted file mode 100644 index 7fa7c289..00000000 Binary files a/target/classes/antlr/ANTLRError.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRException.class b/target/classes/antlr/ANTLRException.class deleted file mode 100644 index 8f325a08..00000000 Binary files a/target/classes/antlr/ANTLRException.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRGrammarParseBehavior.class b/target/classes/antlr/ANTLRGrammarParseBehavior.class deleted file mode 100644 index 33f11be0..00000000 Binary files a/target/classes/antlr/ANTLRGrammarParseBehavior.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRHashString.class b/target/classes/antlr/ANTLRHashString.class deleted file mode 100644 index 84515f98..00000000 Binary files a/target/classes/antlr/ANTLRHashString.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRLexer.class b/target/classes/antlr/ANTLRLexer.class deleted file mode 100644 index d87af905..00000000 Binary files a/target/classes/antlr/ANTLRLexer.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRParser.class b/target/classes/antlr/ANTLRParser.class deleted file mode 100644 index fafa83e5..00000000 Binary files a/target/classes/antlr/ANTLRParser.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRStringBuffer.class b/target/classes/antlr/ANTLRStringBuffer.class deleted file mode 100644 index f4e91066..00000000 Binary files a/target/classes/antlr/ANTLRStringBuffer.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRTokdefLexer.class b/target/classes/antlr/ANTLRTokdefLexer.class deleted file mode 100644 index 6913e74d..00000000 Binary files a/target/classes/antlr/ANTLRTokdefLexer.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRTokdefParser.class b/target/classes/antlr/ANTLRTokdefParser.class deleted file mode 100644 index 3bdf960c..00000000 Binary files a/target/classes/antlr/ANTLRTokdefParser.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRTokdefParserTokenTypes.class b/target/classes/antlr/ANTLRTokdefParserTokenTypes.class deleted file mode 100644 index d3ca6b2c..00000000 Binary files a/target/classes/antlr/ANTLRTokdefParserTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/ANTLRTokenTypes.class b/target/classes/antlr/ANTLRTokenTypes.class deleted file mode 100644 index f00ccd77..00000000 Binary files a/target/classes/antlr/ANTLRTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/ASTFactory.class b/target/classes/antlr/ASTFactory.class deleted file mode 100644 index 94962bcd..00000000 Binary files a/target/classes/antlr/ASTFactory.class and /dev/null differ diff --git a/target/classes/antlr/ASTIterator.class b/target/classes/antlr/ASTIterator.class deleted file mode 100644 index 0b38d421..00000000 Binary files a/target/classes/antlr/ASTIterator.class and /dev/null differ diff --git a/target/classes/antlr/ASTNULLType.class b/target/classes/antlr/ASTNULLType.class deleted file mode 100644 index d2d540a9..00000000 Binary files a/target/classes/antlr/ASTNULLType.class and /dev/null differ diff --git a/target/classes/antlr/ASTPair.class b/target/classes/antlr/ASTPair.class deleted file mode 100644 index 0590bc12..00000000 Binary files a/target/classes/antlr/ASTPair.class and /dev/null differ diff --git a/target/classes/antlr/ASTVisitor.class b/target/classes/antlr/ASTVisitor.class deleted file mode 100644 index 01e44c92..00000000 Binary files a/target/classes/antlr/ASTVisitor.class and /dev/null differ diff --git a/target/classes/antlr/ASdebug/ASDebugStream.class b/target/classes/antlr/ASdebug/ASDebugStream.class deleted file mode 100644 index 7de6456e..00000000 Binary files a/target/classes/antlr/ASdebug/ASDebugStream.class and /dev/null differ diff --git a/target/classes/antlr/ASdebug/IASDebugStream.class b/target/classes/antlr/ASdebug/IASDebugStream.class deleted file mode 100644 index 2e92138d..00000000 Binary files a/target/classes/antlr/ASdebug/IASDebugStream.class and /dev/null differ diff --git a/target/classes/antlr/ASdebug/TokenOffsetInfo.class b/target/classes/antlr/ASdebug/TokenOffsetInfo.class deleted file mode 100644 index 5bec91c0..00000000 Binary files a/target/classes/antlr/ASdebug/TokenOffsetInfo.class and /dev/null differ diff --git a/target/classes/antlr/ActionElement.class b/target/classes/antlr/ActionElement.class deleted file mode 100644 index 2c9c8491..00000000 Binary files a/target/classes/antlr/ActionElement.class and /dev/null differ diff --git a/target/classes/antlr/ActionTransInfo.class b/target/classes/antlr/ActionTransInfo.class deleted file mode 100644 index 513508b5..00000000 Binary files a/target/classes/antlr/ActionTransInfo.class and /dev/null differ diff --git a/target/classes/antlr/Alternative.class b/target/classes/antlr/Alternative.class deleted file mode 100644 index d2593ba4..00000000 Binary files a/target/classes/antlr/Alternative.class and /dev/null differ diff --git a/target/classes/antlr/AlternativeBlock.class b/target/classes/antlr/AlternativeBlock.class deleted file mode 100644 index 66ec7916..00000000 Binary files a/target/classes/antlr/AlternativeBlock.class and /dev/null differ diff --git a/target/classes/antlr/AlternativeElement.class b/target/classes/antlr/AlternativeElement.class deleted file mode 100644 index 3b73c24d..00000000 Binary files a/target/classes/antlr/AlternativeElement.class and /dev/null differ diff --git a/target/classes/antlr/BaseAST.class b/target/classes/antlr/BaseAST.class deleted file mode 100644 index 2c6ab02e..00000000 Binary files a/target/classes/antlr/BaseAST.class and /dev/null differ diff --git a/target/classes/antlr/BlockContext.class b/target/classes/antlr/BlockContext.class deleted file mode 100644 index ad61e1f9..00000000 Binary files a/target/classes/antlr/BlockContext.class and /dev/null differ diff --git a/target/classes/antlr/BlockEndElement.class b/target/classes/antlr/BlockEndElement.class deleted file mode 100644 index 5089f0c7..00000000 Binary files a/target/classes/antlr/BlockEndElement.class and /dev/null differ diff --git a/target/classes/antlr/BlockWithImpliedExitPath.class b/target/classes/antlr/BlockWithImpliedExitPath.class deleted file mode 100644 index 830fdaf0..00000000 Binary files a/target/classes/antlr/BlockWithImpliedExitPath.class and /dev/null differ diff --git a/target/classes/antlr/ByteBuffer.class b/target/classes/antlr/ByteBuffer.class deleted file mode 100644 index 65d32dc6..00000000 Binary files a/target/classes/antlr/ByteBuffer.class and /dev/null differ diff --git a/target/classes/antlr/CSharpBlockFinishingInfo.class b/target/classes/antlr/CSharpBlockFinishingInfo.class deleted file mode 100644 index fab69b7b..00000000 Binary files a/target/classes/antlr/CSharpBlockFinishingInfo.class and /dev/null differ diff --git a/target/classes/antlr/CSharpCharFormatter.class b/target/classes/antlr/CSharpCharFormatter.class deleted file mode 100644 index cb1dc9a5..00000000 Binary files a/target/classes/antlr/CSharpCharFormatter.class and /dev/null differ diff --git a/target/classes/antlr/CSharpCodeGenerator.class b/target/classes/antlr/CSharpCodeGenerator.class deleted file mode 100644 index cbd51ec5..00000000 Binary files a/target/classes/antlr/CSharpCodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/CSharpNameSpace.class b/target/classes/antlr/CSharpNameSpace.class deleted file mode 100644 index fe4bbb05..00000000 Binary files a/target/classes/antlr/CSharpNameSpace.class and /dev/null differ diff --git a/target/classes/antlr/CharBuffer.class b/target/classes/antlr/CharBuffer.class deleted file mode 100644 index 91a20745..00000000 Binary files a/target/classes/antlr/CharBuffer.class and /dev/null differ diff --git a/target/classes/antlr/CharFormatter.class b/target/classes/antlr/CharFormatter.class deleted file mode 100644 index 1b359129..00000000 Binary files a/target/classes/antlr/CharFormatter.class and /dev/null differ diff --git a/target/classes/antlr/CharLiteralElement.class b/target/classes/antlr/CharLiteralElement.class deleted file mode 100644 index d9819f98..00000000 Binary files a/target/classes/antlr/CharLiteralElement.class and /dev/null differ diff --git a/target/classes/antlr/CharQueue.class b/target/classes/antlr/CharQueue.class deleted file mode 100644 index 93b63cd3..00000000 Binary files a/target/classes/antlr/CharQueue.class and /dev/null differ diff --git a/target/classes/antlr/CharRangeElement.class b/target/classes/antlr/CharRangeElement.class deleted file mode 100644 index 38edfda6..00000000 Binary files a/target/classes/antlr/CharRangeElement.class and /dev/null differ diff --git a/target/classes/antlr/CharScanner.class b/target/classes/antlr/CharScanner.class deleted file mode 100644 index 46b9cb20..00000000 Binary files a/target/classes/antlr/CharScanner.class and /dev/null differ diff --git a/target/classes/antlr/CharStreamException.class b/target/classes/antlr/CharStreamException.class deleted file mode 100644 index 92f44783..00000000 Binary files a/target/classes/antlr/CharStreamException.class and /dev/null differ diff --git a/target/classes/antlr/CharStreamIOException.class b/target/classes/antlr/CharStreamIOException.class deleted file mode 100644 index eb4658ed..00000000 Binary files a/target/classes/antlr/CharStreamIOException.class and /dev/null differ diff --git a/target/classes/antlr/CodeGenerator.class b/target/classes/antlr/CodeGenerator.class deleted file mode 100644 index d4209237..00000000 Binary files a/target/classes/antlr/CodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/CommonAST.class b/target/classes/antlr/CommonAST.class deleted file mode 100644 index 934bf882..00000000 Binary files a/target/classes/antlr/CommonAST.class and /dev/null differ diff --git a/target/classes/antlr/CommonASTWithHiddenTokens.class b/target/classes/antlr/CommonASTWithHiddenTokens.class deleted file mode 100644 index 1b82ef53..00000000 Binary files a/target/classes/antlr/CommonASTWithHiddenTokens.class and /dev/null differ diff --git a/target/classes/antlr/CommonHiddenStreamToken.class b/target/classes/antlr/CommonHiddenStreamToken.class deleted file mode 100644 index a4591f88..00000000 Binary files a/target/classes/antlr/CommonHiddenStreamToken.class and /dev/null differ diff --git a/target/classes/antlr/CommonToken.class b/target/classes/antlr/CommonToken.class deleted file mode 100644 index 9640cedc..00000000 Binary files a/target/classes/antlr/CommonToken.class and /dev/null differ diff --git a/target/classes/antlr/CppBlockFinishingInfo.class b/target/classes/antlr/CppBlockFinishingInfo.class deleted file mode 100644 index 5d439492..00000000 Binary files a/target/classes/antlr/CppBlockFinishingInfo.class and /dev/null differ diff --git a/target/classes/antlr/CppCharFormatter.class b/target/classes/antlr/CppCharFormatter.class deleted file mode 100644 index c46f6597..00000000 Binary files a/target/classes/antlr/CppCharFormatter.class and /dev/null differ diff --git a/target/classes/antlr/CppCodeGenerator.class b/target/classes/antlr/CppCodeGenerator.class deleted file mode 100644 index 6ebf37d9..00000000 Binary files a/target/classes/antlr/CppCodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/DefaultFileLineFormatter.class b/target/classes/antlr/DefaultFileLineFormatter.class deleted file mode 100644 index d880e8e6..00000000 Binary files a/target/classes/antlr/DefaultFileLineFormatter.class and /dev/null differ diff --git a/target/classes/antlr/DefaultJavaCodeGeneratorPrintWriterManager.class b/target/classes/antlr/DefaultJavaCodeGeneratorPrintWriterManager.class deleted file mode 100644 index d325ee8e..00000000 Binary files a/target/classes/antlr/DefaultJavaCodeGeneratorPrintWriterManager.class and /dev/null differ diff --git a/target/classes/antlr/DefaultToolErrorHandler.class b/target/classes/antlr/DefaultToolErrorHandler.class deleted file mode 100644 index 4459681d..00000000 Binary files a/target/classes/antlr/DefaultToolErrorHandler.class and /dev/null differ diff --git a/target/classes/antlr/DefineGrammarSymbols.class b/target/classes/antlr/DefineGrammarSymbols.class deleted file mode 100644 index 51bf5909..00000000 Binary files a/target/classes/antlr/DefineGrammarSymbols.class and /dev/null differ diff --git a/target/classes/antlr/DiagnosticCodeGenerator.class b/target/classes/antlr/DiagnosticCodeGenerator.class deleted file mode 100644 index 43f9648c..00000000 Binary files a/target/classes/antlr/DiagnosticCodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/DocBookCodeGenerator.class b/target/classes/antlr/DocBookCodeGenerator.class deleted file mode 100644 index 439aee39..00000000 Binary files a/target/classes/antlr/DocBookCodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/DumpASTVisitor.class b/target/classes/antlr/DumpASTVisitor.class deleted file mode 100644 index 3058392b..00000000 Binary files a/target/classes/antlr/DumpASTVisitor.class and /dev/null differ diff --git a/target/classes/antlr/ExceptionHandler.class b/target/classes/antlr/ExceptionHandler.class deleted file mode 100644 index f40da96b..00000000 Binary files a/target/classes/antlr/ExceptionHandler.class and /dev/null differ diff --git a/target/classes/antlr/ExceptionSpec.class b/target/classes/antlr/ExceptionSpec.class deleted file mode 100644 index 1151a32c..00000000 Binary files a/target/classes/antlr/ExceptionSpec.class and /dev/null differ diff --git a/target/classes/antlr/FileCopyException.class b/target/classes/antlr/FileCopyException.class deleted file mode 100644 index 7eb3a1c0..00000000 Binary files a/target/classes/antlr/FileCopyException.class and /dev/null differ diff --git a/target/classes/antlr/FileLineFormatter.class b/target/classes/antlr/FileLineFormatter.class deleted file mode 100644 index 6b44608c..00000000 Binary files a/target/classes/antlr/FileLineFormatter.class and /dev/null differ diff --git a/target/classes/antlr/Grammar.class b/target/classes/antlr/Grammar.class deleted file mode 100644 index 348c77aa..00000000 Binary files a/target/classes/antlr/Grammar.class and /dev/null differ diff --git a/target/classes/antlr/GrammarAnalyzer.class b/target/classes/antlr/GrammarAnalyzer.class deleted file mode 100644 index 59d8adf5..00000000 Binary files a/target/classes/antlr/GrammarAnalyzer.class and /dev/null differ diff --git a/target/classes/antlr/GrammarAtom.class b/target/classes/antlr/GrammarAtom.class deleted file mode 100644 index d5db7fe3..00000000 Binary files a/target/classes/antlr/GrammarAtom.class and /dev/null differ diff --git a/target/classes/antlr/GrammarElement.class b/target/classes/antlr/GrammarElement.class deleted file mode 100644 index 7d3a1cf6..00000000 Binary files a/target/classes/antlr/GrammarElement.class and /dev/null differ diff --git a/target/classes/antlr/GrammarSymbol.class b/target/classes/antlr/GrammarSymbol.class deleted file mode 100644 index 45cba094..00000000 Binary files a/target/classes/antlr/GrammarSymbol.class and /dev/null differ diff --git a/target/classes/antlr/HTMLCodeGenerator.class b/target/classes/antlr/HTMLCodeGenerator.class deleted file mode 100644 index 8642fc9e..00000000 Binary files a/target/classes/antlr/HTMLCodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/ImportVocabTokenManager.class b/target/classes/antlr/ImportVocabTokenManager.class deleted file mode 100644 index 571edfb3..00000000 Binary files a/target/classes/antlr/ImportVocabTokenManager.class and /dev/null differ diff --git a/target/classes/antlr/InputBuffer.class b/target/classes/antlr/InputBuffer.class deleted file mode 100644 index 7c162fde..00000000 Binary files a/target/classes/antlr/InputBuffer.class and /dev/null differ diff --git a/target/classes/antlr/JavaBlockFinishingInfo.class b/target/classes/antlr/JavaBlockFinishingInfo.class deleted file mode 100644 index 67ebf9c9..00000000 Binary files a/target/classes/antlr/JavaBlockFinishingInfo.class and /dev/null differ diff --git a/target/classes/antlr/JavaCharFormatter.class b/target/classes/antlr/JavaCharFormatter.class deleted file mode 100644 index 25c03eec..00000000 Binary files a/target/classes/antlr/JavaCharFormatter.class and /dev/null differ diff --git a/target/classes/antlr/JavaCodeGenerator.class b/target/classes/antlr/JavaCodeGenerator.class deleted file mode 100644 index 647f0b17..00000000 Binary files a/target/classes/antlr/JavaCodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/JavaCodeGeneratorPrintWriterManager.class b/target/classes/antlr/JavaCodeGeneratorPrintWriterManager.class deleted file mode 100644 index 75b8b14b..00000000 Binary files a/target/classes/antlr/JavaCodeGeneratorPrintWriterManager.class and /dev/null differ diff --git a/target/classes/antlr/LLkAnalyzer.class b/target/classes/antlr/LLkAnalyzer.class deleted file mode 100644 index 815c175d..00000000 Binary files a/target/classes/antlr/LLkAnalyzer.class and /dev/null differ diff --git a/target/classes/antlr/LLkGrammarAnalyzer.class b/target/classes/antlr/LLkGrammarAnalyzer.class deleted file mode 100644 index 5f6ed089..00000000 Binary files a/target/classes/antlr/LLkGrammarAnalyzer.class and /dev/null differ diff --git a/target/classes/antlr/LLkParser.class b/target/classes/antlr/LLkParser.class deleted file mode 100644 index 170b53e6..00000000 Binary files a/target/classes/antlr/LLkParser.class and /dev/null differ diff --git a/target/classes/antlr/LexerGrammar.class b/target/classes/antlr/LexerGrammar.class deleted file mode 100644 index 79950d98..00000000 Binary files a/target/classes/antlr/LexerGrammar.class and /dev/null differ diff --git a/target/classes/antlr/LexerSharedInputState.class b/target/classes/antlr/LexerSharedInputState.class deleted file mode 100644 index e5da7e4a..00000000 Binary files a/target/classes/antlr/LexerSharedInputState.class and /dev/null differ diff --git a/target/classes/antlr/Lookahead.class b/target/classes/antlr/Lookahead.class deleted file mode 100644 index 47f9975f..00000000 Binary files a/target/classes/antlr/Lookahead.class and /dev/null differ diff --git a/target/classes/antlr/MakeGrammar.class b/target/classes/antlr/MakeGrammar.class deleted file mode 100644 index caad1886..00000000 Binary files a/target/classes/antlr/MakeGrammar.class and /dev/null differ diff --git a/target/classes/antlr/MismatchedCharException.class b/target/classes/antlr/MismatchedCharException.class deleted file mode 100644 index 7979b45a..00000000 Binary files a/target/classes/antlr/MismatchedCharException.class and /dev/null differ diff --git a/target/classes/antlr/MismatchedTokenException.class b/target/classes/antlr/MismatchedTokenException.class deleted file mode 100644 index 9f590599..00000000 Binary files a/target/classes/antlr/MismatchedTokenException.class and /dev/null differ diff --git a/target/classes/antlr/NameSpace.class b/target/classes/antlr/NameSpace.class deleted file mode 100644 index c9c0f1e2..00000000 Binary files a/target/classes/antlr/NameSpace.class and /dev/null differ diff --git a/target/classes/antlr/NoViableAltException.class b/target/classes/antlr/NoViableAltException.class deleted file mode 100644 index b449ef6d..00000000 Binary files a/target/classes/antlr/NoViableAltException.class and /dev/null differ diff --git a/target/classes/antlr/NoViableAltForCharException.class b/target/classes/antlr/NoViableAltForCharException.class deleted file mode 100644 index 67f3dc32..00000000 Binary files a/target/classes/antlr/NoViableAltForCharException.class and /dev/null differ diff --git a/target/classes/antlr/OneOrMoreBlock.class b/target/classes/antlr/OneOrMoreBlock.class deleted file mode 100644 index 3433e388..00000000 Binary files a/target/classes/antlr/OneOrMoreBlock.class and /dev/null differ diff --git a/target/classes/antlr/ParseTree.class b/target/classes/antlr/ParseTree.class deleted file mode 100644 index 41ffbc4a..00000000 Binary files a/target/classes/antlr/ParseTree.class and /dev/null differ diff --git a/target/classes/antlr/ParseTreeRule.class b/target/classes/antlr/ParseTreeRule.class deleted file mode 100644 index e480e40c..00000000 Binary files a/target/classes/antlr/ParseTreeRule.class and /dev/null differ diff --git a/target/classes/antlr/ParseTreeToken.class b/target/classes/antlr/ParseTreeToken.class deleted file mode 100644 index 5610055a..00000000 Binary files a/target/classes/antlr/ParseTreeToken.class and /dev/null differ diff --git a/target/classes/antlr/Parser.class b/target/classes/antlr/Parser.class deleted file mode 100644 index c88fd7a6..00000000 Binary files a/target/classes/antlr/Parser.class and /dev/null differ diff --git a/target/classes/antlr/ParserGrammar.class b/target/classes/antlr/ParserGrammar.class deleted file mode 100644 index ae2158fb..00000000 Binary files a/target/classes/antlr/ParserGrammar.class and /dev/null differ diff --git a/target/classes/antlr/ParserSharedInputState.class b/target/classes/antlr/ParserSharedInputState.class deleted file mode 100644 index 8409bdf4..00000000 Binary files a/target/classes/antlr/ParserSharedInputState.class and /dev/null differ diff --git a/target/classes/antlr/PreservingFileWriter.class b/target/classes/antlr/PreservingFileWriter.class deleted file mode 100644 index 214439e7..00000000 Binary files a/target/classes/antlr/PreservingFileWriter.class and /dev/null differ diff --git a/target/classes/antlr/PrintWriterWithSMAP.class b/target/classes/antlr/PrintWriterWithSMAP.class deleted file mode 100644 index e76d637e..00000000 Binary files a/target/classes/antlr/PrintWriterWithSMAP.class and /dev/null differ diff --git a/target/classes/antlr/PythonBlockFinishingInfo.class b/target/classes/antlr/PythonBlockFinishingInfo.class deleted file mode 100644 index d73241db..00000000 Binary files a/target/classes/antlr/PythonBlockFinishingInfo.class and /dev/null differ diff --git a/target/classes/antlr/PythonCharFormatter.class b/target/classes/antlr/PythonCharFormatter.class deleted file mode 100644 index dde9ab5b..00000000 Binary files a/target/classes/antlr/PythonCharFormatter.class and /dev/null differ diff --git a/target/classes/antlr/PythonCodeGenerator.class b/target/classes/antlr/PythonCodeGenerator.class deleted file mode 100644 index 7575b06e..00000000 Binary files a/target/classes/antlr/PythonCodeGenerator.class and /dev/null differ diff --git a/target/classes/antlr/RecognitionException.class b/target/classes/antlr/RecognitionException.class deleted file mode 100644 index fb5396bb..00000000 Binary files a/target/classes/antlr/RecognitionException.class and /dev/null differ diff --git a/target/classes/antlr/RuleBlock.class b/target/classes/antlr/RuleBlock.class deleted file mode 100644 index a0d7ab19..00000000 Binary files a/target/classes/antlr/RuleBlock.class and /dev/null differ diff --git a/target/classes/antlr/RuleEndElement.class b/target/classes/antlr/RuleEndElement.class deleted file mode 100644 index 17600197..00000000 Binary files a/target/classes/antlr/RuleEndElement.class and /dev/null differ diff --git a/target/classes/antlr/RuleRefElement.class b/target/classes/antlr/RuleRefElement.class deleted file mode 100644 index fb26a7cf..00000000 Binary files a/target/classes/antlr/RuleRefElement.class and /dev/null differ diff --git a/target/classes/antlr/RuleSymbol.class b/target/classes/antlr/RuleSymbol.class deleted file mode 100644 index 4cbf7c81..00000000 Binary files a/target/classes/antlr/RuleSymbol.class and /dev/null differ diff --git a/target/classes/antlr/SemanticException.class b/target/classes/antlr/SemanticException.class deleted file mode 100644 index e67a6f8d..00000000 Binary files a/target/classes/antlr/SemanticException.class and /dev/null differ diff --git a/target/classes/antlr/SimpleTokenManager.class b/target/classes/antlr/SimpleTokenManager.class deleted file mode 100644 index 2d11557c..00000000 Binary files a/target/classes/antlr/SimpleTokenManager.class and /dev/null differ diff --git a/target/classes/antlr/StringLiteralElement.class b/target/classes/antlr/StringLiteralElement.class deleted file mode 100644 index 617fd3d8..00000000 Binary files a/target/classes/antlr/StringLiteralElement.class and /dev/null differ diff --git a/target/classes/antlr/StringLiteralSymbol.class b/target/classes/antlr/StringLiteralSymbol.class deleted file mode 100644 index 71b58dc4..00000000 Binary files a/target/classes/antlr/StringLiteralSymbol.class and /dev/null differ diff --git a/target/classes/antlr/StringUtils.class b/target/classes/antlr/StringUtils.class deleted file mode 100644 index 828ea820..00000000 Binary files a/target/classes/antlr/StringUtils.class and /dev/null differ diff --git a/target/classes/antlr/SynPredBlock.class b/target/classes/antlr/SynPredBlock.class deleted file mode 100644 index 7f5157ec..00000000 Binary files a/target/classes/antlr/SynPredBlock.class and /dev/null differ diff --git a/target/classes/antlr/Token.class b/target/classes/antlr/Token.class deleted file mode 100644 index 92780c8b..00000000 Binary files a/target/classes/antlr/Token.class and /dev/null differ diff --git a/target/classes/antlr/TokenBuffer.class b/target/classes/antlr/TokenBuffer.class deleted file mode 100644 index 03dd909d..00000000 Binary files a/target/classes/antlr/TokenBuffer.class and /dev/null differ diff --git a/target/classes/antlr/TokenManager.class b/target/classes/antlr/TokenManager.class deleted file mode 100644 index 4952928f..00000000 Binary files a/target/classes/antlr/TokenManager.class and /dev/null differ diff --git a/target/classes/antlr/TokenQueue.class b/target/classes/antlr/TokenQueue.class deleted file mode 100644 index be16347e..00000000 Binary files a/target/classes/antlr/TokenQueue.class and /dev/null differ diff --git a/target/classes/antlr/TokenRangeElement.class b/target/classes/antlr/TokenRangeElement.class deleted file mode 100644 index 630e2b35..00000000 Binary files a/target/classes/antlr/TokenRangeElement.class and /dev/null differ diff --git a/target/classes/antlr/TokenRefElement.class b/target/classes/antlr/TokenRefElement.class deleted file mode 100644 index f73e9ac1..00000000 Binary files a/target/classes/antlr/TokenRefElement.class and /dev/null differ diff --git a/target/classes/antlr/TokenStream.class b/target/classes/antlr/TokenStream.class deleted file mode 100644 index e9cc0dc3..00000000 Binary files a/target/classes/antlr/TokenStream.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamBasicFilter.class b/target/classes/antlr/TokenStreamBasicFilter.class deleted file mode 100644 index ca0b1380..00000000 Binary files a/target/classes/antlr/TokenStreamBasicFilter.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamException.class b/target/classes/antlr/TokenStreamException.class deleted file mode 100644 index a70ac38f..00000000 Binary files a/target/classes/antlr/TokenStreamException.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamHiddenTokenFilter.class b/target/classes/antlr/TokenStreamHiddenTokenFilter.class deleted file mode 100644 index 41a9412b..00000000 Binary files a/target/classes/antlr/TokenStreamHiddenTokenFilter.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamIOException.class b/target/classes/antlr/TokenStreamIOException.class deleted file mode 100644 index bd4ddf1a..00000000 Binary files a/target/classes/antlr/TokenStreamIOException.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRecognitionException.class b/target/classes/antlr/TokenStreamRecognitionException.class deleted file mode 100644 index eca8f043..00000000 Binary files a/target/classes/antlr/TokenStreamRecognitionException.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRetryException.class b/target/classes/antlr/TokenStreamRetryException.class deleted file mode 100644 index 5e4b7c91..00000000 Binary files a/target/classes/antlr/TokenStreamRetryException.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRewriteEngine$1.class b/target/classes/antlr/TokenStreamRewriteEngine$1.class deleted file mode 100644 index 46e04324..00000000 Binary files a/target/classes/antlr/TokenStreamRewriteEngine$1.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRewriteEngine$DeleteOp.class b/target/classes/antlr/TokenStreamRewriteEngine$DeleteOp.class deleted file mode 100644 index 11310ec2..00000000 Binary files a/target/classes/antlr/TokenStreamRewriteEngine$DeleteOp.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRewriteEngine$InsertBeforeOp.class b/target/classes/antlr/TokenStreamRewriteEngine$InsertBeforeOp.class deleted file mode 100644 index e0c64db6..00000000 Binary files a/target/classes/antlr/TokenStreamRewriteEngine$InsertBeforeOp.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRewriteEngine$ReplaceOp.class b/target/classes/antlr/TokenStreamRewriteEngine$ReplaceOp.class deleted file mode 100644 index 772ce5de..00000000 Binary files a/target/classes/antlr/TokenStreamRewriteEngine$ReplaceOp.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRewriteEngine$RewriteOperation.class b/target/classes/antlr/TokenStreamRewriteEngine$RewriteOperation.class deleted file mode 100644 index 3b51896c..00000000 Binary files a/target/classes/antlr/TokenStreamRewriteEngine$RewriteOperation.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamRewriteEngine.class b/target/classes/antlr/TokenStreamRewriteEngine.class deleted file mode 100644 index 3bc46d15..00000000 Binary files a/target/classes/antlr/TokenStreamRewriteEngine.class and /dev/null differ diff --git a/target/classes/antlr/TokenStreamSelector.class b/target/classes/antlr/TokenStreamSelector.class deleted file mode 100644 index 9e290d47..00000000 Binary files a/target/classes/antlr/TokenStreamSelector.class and /dev/null differ diff --git a/target/classes/antlr/TokenSymbol.class b/target/classes/antlr/TokenSymbol.class deleted file mode 100644 index f7849575..00000000 Binary files a/target/classes/antlr/TokenSymbol.class and /dev/null differ diff --git a/target/classes/antlr/TokenWithIndex.class b/target/classes/antlr/TokenWithIndex.class deleted file mode 100644 index 42ad9aca..00000000 Binary files a/target/classes/antlr/TokenWithIndex.class and /dev/null differ diff --git a/target/classes/antlr/Tool.class b/target/classes/antlr/Tool.class deleted file mode 100644 index 5192f062..00000000 Binary files a/target/classes/antlr/Tool.class and /dev/null differ diff --git a/target/classes/antlr/ToolErrorHandler.class b/target/classes/antlr/ToolErrorHandler.class deleted file mode 100644 index 65030d81..00000000 Binary files a/target/classes/antlr/ToolErrorHandler.class and /dev/null differ diff --git a/target/classes/antlr/TreeBlockContext.class b/target/classes/antlr/TreeBlockContext.class deleted file mode 100644 index 7404b998..00000000 Binary files a/target/classes/antlr/TreeBlockContext.class and /dev/null differ diff --git a/target/classes/antlr/TreeElement.class b/target/classes/antlr/TreeElement.class deleted file mode 100644 index 218028fc..00000000 Binary files a/target/classes/antlr/TreeElement.class and /dev/null differ diff --git a/target/classes/antlr/TreeParser.class b/target/classes/antlr/TreeParser.class deleted file mode 100644 index c64b3dd3..00000000 Binary files a/target/classes/antlr/TreeParser.class and /dev/null differ diff --git a/target/classes/antlr/TreeParserSharedInputState.class b/target/classes/antlr/TreeParserSharedInputState.class deleted file mode 100644 index 553be8d3..00000000 Binary files a/target/classes/antlr/TreeParserSharedInputState.class and /dev/null differ diff --git a/target/classes/antlr/TreeSpecifierNode.class b/target/classes/antlr/TreeSpecifierNode.class deleted file mode 100644 index 66f36841..00000000 Binary files a/target/classes/antlr/TreeSpecifierNode.class and /dev/null differ diff --git a/target/classes/antlr/TreeWalkerGrammar.class b/target/classes/antlr/TreeWalkerGrammar.class deleted file mode 100644 index f77877ec..00000000 Binary files a/target/classes/antlr/TreeWalkerGrammar.class and /dev/null differ diff --git a/target/classes/antlr/Utils.class b/target/classes/antlr/Utils.class deleted file mode 100644 index 77af2f82..00000000 Binary files a/target/classes/antlr/Utils.class and /dev/null differ diff --git a/target/classes/antlr/Version.class b/target/classes/antlr/Version.class deleted file mode 100644 index 95f04529..00000000 Binary files a/target/classes/antlr/Version.class and /dev/null differ diff --git a/target/classes/antlr/WildcardElement.class b/target/classes/antlr/WildcardElement.class deleted file mode 100644 index ed59cd00..00000000 Binary files a/target/classes/antlr/WildcardElement.class and /dev/null differ diff --git a/target/classes/antlr/ZeroOrMoreBlock.class b/target/classes/antlr/ZeroOrMoreBlock.class deleted file mode 100644 index 6f642f5e..00000000 Binary files a/target/classes/antlr/ZeroOrMoreBlock.class and /dev/null differ diff --git a/target/classes/antlr/actions/cpp/ActionLexer.class b/target/classes/antlr/actions/cpp/ActionLexer.class deleted file mode 100644 index f6661949..00000000 Binary files a/target/classes/antlr/actions/cpp/ActionLexer.class and /dev/null differ diff --git a/target/classes/antlr/actions/cpp/ActionLexerTokenTypes.class b/target/classes/antlr/actions/cpp/ActionLexerTokenTypes.class deleted file mode 100644 index 06f5e14c..00000000 Binary files a/target/classes/antlr/actions/cpp/ActionLexerTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/actions/csharp/ActionLexer.class b/target/classes/antlr/actions/csharp/ActionLexer.class deleted file mode 100644 index 5608c25d..00000000 Binary files a/target/classes/antlr/actions/csharp/ActionLexer.class and /dev/null differ diff --git a/target/classes/antlr/actions/csharp/ActionLexerTokenTypes.class b/target/classes/antlr/actions/csharp/ActionLexerTokenTypes.class deleted file mode 100644 index bd421ddd..00000000 Binary files a/target/classes/antlr/actions/csharp/ActionLexerTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/actions/java/ActionLexer.class b/target/classes/antlr/actions/java/ActionLexer.class deleted file mode 100644 index 6a09384f..00000000 Binary files a/target/classes/antlr/actions/java/ActionLexer.class and /dev/null differ diff --git a/target/classes/antlr/actions/java/ActionLexerTokenTypes.class b/target/classes/antlr/actions/java/ActionLexerTokenTypes.class deleted file mode 100644 index 1a3d281b..00000000 Binary files a/target/classes/antlr/actions/java/ActionLexerTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/actions/python/ActionLexer.class b/target/classes/antlr/actions/python/ActionLexer.class deleted file mode 100644 index fb2e8d67..00000000 Binary files a/target/classes/antlr/actions/python/ActionLexer.class and /dev/null differ diff --git a/target/classes/antlr/actions/python/ActionLexerTokenTypes.class b/target/classes/antlr/actions/python/ActionLexerTokenTypes.class deleted file mode 100644 index b1ffc82e..00000000 Binary files a/target/classes/antlr/actions/python/ActionLexerTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/actions/python/CodeLexer.class b/target/classes/antlr/actions/python/CodeLexer.class deleted file mode 100644 index 719f88fb..00000000 Binary files a/target/classes/antlr/actions/python/CodeLexer.class and /dev/null differ diff --git a/target/classes/antlr/actions/python/CodeLexerTokenTypes.class b/target/classes/antlr/actions/python/CodeLexerTokenTypes.class deleted file mode 100644 index 0ad528d7..00000000 Binary files a/target/classes/antlr/actions/python/CodeLexerTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/build/ANTLR$1.class b/target/classes/antlr/build/ANTLR$1.class deleted file mode 100644 index a62568e5..00000000 Binary files a/target/classes/antlr/build/ANTLR$1.class and /dev/null differ diff --git a/target/classes/antlr/build/ANTLR.class b/target/classes/antlr/build/ANTLR.class deleted file mode 100644 index 605a3a0c..00000000 Binary files a/target/classes/antlr/build/ANTLR.class and /dev/null differ diff --git a/target/classes/antlr/build/StreamScarfer.class b/target/classes/antlr/build/StreamScarfer.class deleted file mode 100644 index 888bd272..00000000 Binary files a/target/classes/antlr/build/StreamScarfer.class and /dev/null differ diff --git a/target/classes/antlr/build/Tool.class b/target/classes/antlr/build/Tool.class deleted file mode 100644 index d2ccb891..00000000 Binary files a/target/classes/antlr/build/Tool.class and /dev/null differ diff --git a/target/classes/antlr/collections/AST.class b/target/classes/antlr/collections/AST.class deleted file mode 100644 index 3b83d765..00000000 Binary files a/target/classes/antlr/collections/AST.class and /dev/null differ diff --git a/target/classes/antlr/collections/ASTEnumeration.class b/target/classes/antlr/collections/ASTEnumeration.class deleted file mode 100644 index b55c0585..00000000 Binary files a/target/classes/antlr/collections/ASTEnumeration.class and /dev/null differ diff --git a/target/classes/antlr/collections/Enumerator.class b/target/classes/antlr/collections/Enumerator.class deleted file mode 100644 index 7963e087..00000000 Binary files a/target/classes/antlr/collections/Enumerator.class and /dev/null differ diff --git a/target/classes/antlr/collections/List.class b/target/classes/antlr/collections/List.class deleted file mode 100644 index cc186bc0..00000000 Binary files a/target/classes/antlr/collections/List.class and /dev/null differ diff --git a/target/classes/antlr/collections/Stack.class b/target/classes/antlr/collections/Stack.class deleted file mode 100644 index 0f0a1e6c..00000000 Binary files a/target/classes/antlr/collections/Stack.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/ASTArray.class b/target/classes/antlr/collections/impl/ASTArray.class deleted file mode 100644 index 9799b330..00000000 Binary files a/target/classes/antlr/collections/impl/ASTArray.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/ASTEnumerator.class b/target/classes/antlr/collections/impl/ASTEnumerator.class deleted file mode 100644 index 52a5b723..00000000 Binary files a/target/classes/antlr/collections/impl/ASTEnumerator.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/BitSet.class b/target/classes/antlr/collections/impl/BitSet.class deleted file mode 100644 index 00ed1cf0..00000000 Binary files a/target/classes/antlr/collections/impl/BitSet.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/IndexedVector.class b/target/classes/antlr/collections/impl/IndexedVector.class deleted file mode 100644 index 4c987434..00000000 Binary files a/target/classes/antlr/collections/impl/IndexedVector.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/IntRange.class b/target/classes/antlr/collections/impl/IntRange.class deleted file mode 100644 index c943dda4..00000000 Binary files a/target/classes/antlr/collections/impl/IntRange.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/LLCell.class b/target/classes/antlr/collections/impl/LLCell.class deleted file mode 100644 index 60fc06e2..00000000 Binary files a/target/classes/antlr/collections/impl/LLCell.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/LLEnumeration.class b/target/classes/antlr/collections/impl/LLEnumeration.class deleted file mode 100644 index 6aaeeecf..00000000 Binary files a/target/classes/antlr/collections/impl/LLEnumeration.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/LList.class b/target/classes/antlr/collections/impl/LList.class deleted file mode 100644 index c0fb02ed..00000000 Binary files a/target/classes/antlr/collections/impl/LList.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/Vector.class b/target/classes/antlr/collections/impl/Vector.class deleted file mode 100644 index bf80672e..00000000 Binary files a/target/classes/antlr/collections/impl/Vector.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/VectorEnumeration.class b/target/classes/antlr/collections/impl/VectorEnumeration.class deleted file mode 100644 index 818fd33e..00000000 Binary files a/target/classes/antlr/collections/impl/VectorEnumeration.class and /dev/null differ diff --git a/target/classes/antlr/collections/impl/VectorEnumerator.class b/target/classes/antlr/collections/impl/VectorEnumerator.class deleted file mode 100644 index 98597e2c..00000000 Binary files a/target/classes/antlr/collections/impl/VectorEnumerator.class and /dev/null differ diff --git a/target/classes/antlr/debug/DebuggingCharScanner.class b/target/classes/antlr/debug/DebuggingCharScanner.class deleted file mode 100644 index e9495acb..00000000 Binary files a/target/classes/antlr/debug/DebuggingCharScanner.class and /dev/null differ diff --git a/target/classes/antlr/debug/DebuggingInputBuffer.class b/target/classes/antlr/debug/DebuggingInputBuffer.class deleted file mode 100644 index 9b18195f..00000000 Binary files a/target/classes/antlr/debug/DebuggingInputBuffer.class and /dev/null differ diff --git a/target/classes/antlr/debug/DebuggingParser.class b/target/classes/antlr/debug/DebuggingParser.class deleted file mode 100644 index e58e7a5f..00000000 Binary files a/target/classes/antlr/debug/DebuggingParser.class and /dev/null differ diff --git a/target/classes/antlr/debug/Event.class b/target/classes/antlr/debug/Event.class deleted file mode 100644 index 48d46795..00000000 Binary files a/target/classes/antlr/debug/Event.class and /dev/null differ diff --git a/target/classes/antlr/debug/GuessingEvent.class b/target/classes/antlr/debug/GuessingEvent.class deleted file mode 100644 index 4aba414d..00000000 Binary files a/target/classes/antlr/debug/GuessingEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/InputBufferAdapter.class b/target/classes/antlr/debug/InputBufferAdapter.class deleted file mode 100644 index 112541eb..00000000 Binary files a/target/classes/antlr/debug/InputBufferAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/InputBufferEvent.class b/target/classes/antlr/debug/InputBufferEvent.class deleted file mode 100644 index 346bed5f..00000000 Binary files a/target/classes/antlr/debug/InputBufferEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/InputBufferEventSupport.class b/target/classes/antlr/debug/InputBufferEventSupport.class deleted file mode 100644 index a9059824..00000000 Binary files a/target/classes/antlr/debug/InputBufferEventSupport.class and /dev/null differ diff --git a/target/classes/antlr/debug/InputBufferListener.class b/target/classes/antlr/debug/InputBufferListener.class deleted file mode 100644 index 65ffb6f0..00000000 Binary files a/target/classes/antlr/debug/InputBufferListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/InputBufferReporter.class b/target/classes/antlr/debug/InputBufferReporter.class deleted file mode 100644 index 1a0eb903..00000000 Binary files a/target/classes/antlr/debug/InputBufferReporter.class and /dev/null differ diff --git a/target/classes/antlr/debug/LLkDebuggingParser.class b/target/classes/antlr/debug/LLkDebuggingParser.class deleted file mode 100644 index 1470b358..00000000 Binary files a/target/classes/antlr/debug/LLkDebuggingParser.class and /dev/null differ diff --git a/target/classes/antlr/debug/ListenerBase.class b/target/classes/antlr/debug/ListenerBase.class deleted file mode 100644 index 4d23e593..00000000 Binary files a/target/classes/antlr/debug/ListenerBase.class and /dev/null differ diff --git a/target/classes/antlr/debug/MessageAdapter.class b/target/classes/antlr/debug/MessageAdapter.class deleted file mode 100644 index 84fe6716..00000000 Binary files a/target/classes/antlr/debug/MessageAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/MessageEvent.class b/target/classes/antlr/debug/MessageEvent.class deleted file mode 100644 index 000004a6..00000000 Binary files a/target/classes/antlr/debug/MessageEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/MessageListener.class b/target/classes/antlr/debug/MessageListener.class deleted file mode 100644 index 8fd9d49a..00000000 Binary files a/target/classes/antlr/debug/MessageListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/NewLineEvent.class b/target/classes/antlr/debug/NewLineEvent.class deleted file mode 100644 index d7071786..00000000 Binary files a/target/classes/antlr/debug/NewLineEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/NewLineListener.class b/target/classes/antlr/debug/NewLineListener.class deleted file mode 100644 index 06821396..00000000 Binary files a/target/classes/antlr/debug/NewLineListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParseTreeDebugParser.class b/target/classes/antlr/debug/ParseTreeDebugParser.class deleted file mode 100644 index 1c6342b7..00000000 Binary files a/target/classes/antlr/debug/ParseTreeDebugParser.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserAdapter.class b/target/classes/antlr/debug/ParserAdapter.class deleted file mode 100644 index cd506b44..00000000 Binary files a/target/classes/antlr/debug/ParserAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserController.class b/target/classes/antlr/debug/ParserController.class deleted file mode 100644 index bbe1fec6..00000000 Binary files a/target/classes/antlr/debug/ParserController.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserEventSupport.class b/target/classes/antlr/debug/ParserEventSupport.class deleted file mode 100644 index 6fa4a56d..00000000 Binary files a/target/classes/antlr/debug/ParserEventSupport.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserListener.class b/target/classes/antlr/debug/ParserListener.class deleted file mode 100644 index f89a4bab..00000000 Binary files a/target/classes/antlr/debug/ParserListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserMatchAdapter.class b/target/classes/antlr/debug/ParserMatchAdapter.class deleted file mode 100644 index a8c87d76..00000000 Binary files a/target/classes/antlr/debug/ParserMatchAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserMatchEvent.class b/target/classes/antlr/debug/ParserMatchEvent.class deleted file mode 100644 index f64aae03..00000000 Binary files a/target/classes/antlr/debug/ParserMatchEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserMatchListener.class b/target/classes/antlr/debug/ParserMatchListener.class deleted file mode 100644 index d3440748..00000000 Binary files a/target/classes/antlr/debug/ParserMatchListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserReporter.class b/target/classes/antlr/debug/ParserReporter.class deleted file mode 100644 index 379dde17..00000000 Binary files a/target/classes/antlr/debug/ParserReporter.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserTokenAdapter.class b/target/classes/antlr/debug/ParserTokenAdapter.class deleted file mode 100644 index 48e28c3f..00000000 Binary files a/target/classes/antlr/debug/ParserTokenAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserTokenEvent.class b/target/classes/antlr/debug/ParserTokenEvent.class deleted file mode 100644 index eaa5124b..00000000 Binary files a/target/classes/antlr/debug/ParserTokenEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/ParserTokenListener.class b/target/classes/antlr/debug/ParserTokenListener.class deleted file mode 100644 index 443caec1..00000000 Binary files a/target/classes/antlr/debug/ParserTokenListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/SemanticPredicateAdapter.class b/target/classes/antlr/debug/SemanticPredicateAdapter.class deleted file mode 100644 index 4507b21c..00000000 Binary files a/target/classes/antlr/debug/SemanticPredicateAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/SemanticPredicateEvent.class b/target/classes/antlr/debug/SemanticPredicateEvent.class deleted file mode 100644 index 4681d0d2..00000000 Binary files a/target/classes/antlr/debug/SemanticPredicateEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/SemanticPredicateListener.class b/target/classes/antlr/debug/SemanticPredicateListener.class deleted file mode 100644 index fa56561f..00000000 Binary files a/target/classes/antlr/debug/SemanticPredicateListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/SyntacticPredicateAdapter.class b/target/classes/antlr/debug/SyntacticPredicateAdapter.class deleted file mode 100644 index 7bc586e8..00000000 Binary files a/target/classes/antlr/debug/SyntacticPredicateAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/SyntacticPredicateEvent.class b/target/classes/antlr/debug/SyntacticPredicateEvent.class deleted file mode 100644 index 5a5c409b..00000000 Binary files a/target/classes/antlr/debug/SyntacticPredicateEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/SyntacticPredicateListener.class b/target/classes/antlr/debug/SyntacticPredicateListener.class deleted file mode 100644 index 6f2a87a4..00000000 Binary files a/target/classes/antlr/debug/SyntacticPredicateListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/TraceAdapter.class b/target/classes/antlr/debug/TraceAdapter.class deleted file mode 100644 index 3a120f7b..00000000 Binary files a/target/classes/antlr/debug/TraceAdapter.class and /dev/null differ diff --git a/target/classes/antlr/debug/TraceEvent.class b/target/classes/antlr/debug/TraceEvent.class deleted file mode 100644 index 7b4d65a1..00000000 Binary files a/target/classes/antlr/debug/TraceEvent.class and /dev/null differ diff --git a/target/classes/antlr/debug/TraceListener.class b/target/classes/antlr/debug/TraceListener.class deleted file mode 100644 index c762f9a7..00000000 Binary files a/target/classes/antlr/debug/TraceListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/Tracer.class b/target/classes/antlr/debug/Tracer.class deleted file mode 100644 index a6bc3508..00000000 Binary files a/target/classes/antlr/debug/Tracer.class and /dev/null differ diff --git a/target/classes/antlr/debug/misc/ASTFrame$1.class b/target/classes/antlr/debug/misc/ASTFrame$1.class deleted file mode 100644 index bc71bb30..00000000 Binary files a/target/classes/antlr/debug/misc/ASTFrame$1.class and /dev/null differ diff --git a/target/classes/antlr/debug/misc/ASTFrame$MyTreeSelectionListener.class b/target/classes/antlr/debug/misc/ASTFrame$MyTreeSelectionListener.class deleted file mode 100644 index e2c757ad..00000000 Binary files a/target/classes/antlr/debug/misc/ASTFrame$MyTreeSelectionListener.class and /dev/null differ diff --git a/target/classes/antlr/debug/misc/ASTFrame.class b/target/classes/antlr/debug/misc/ASTFrame.class deleted file mode 100644 index 32a4a667..00000000 Binary files a/target/classes/antlr/debug/misc/ASTFrame.class and /dev/null differ diff --git a/target/classes/antlr/debug/misc/JTreeASTModel.class b/target/classes/antlr/debug/misc/JTreeASTModel.class deleted file mode 100644 index add856ad..00000000 Binary files a/target/classes/antlr/debug/misc/JTreeASTModel.class and /dev/null differ diff --git a/target/classes/antlr/debug/misc/JTreeASTPanel.class b/target/classes/antlr/debug/misc/JTreeASTPanel.class deleted file mode 100644 index e7617aea..00000000 Binary files a/target/classes/antlr/debug/misc/JTreeASTPanel.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/Grammar.class b/target/classes/antlr/preprocessor/Grammar.class deleted file mode 100644 index dcdf5c31..00000000 Binary files a/target/classes/antlr/preprocessor/Grammar.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/GrammarFile.class b/target/classes/antlr/preprocessor/GrammarFile.class deleted file mode 100644 index 48695952..00000000 Binary files a/target/classes/antlr/preprocessor/GrammarFile.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/Hierarchy.class b/target/classes/antlr/preprocessor/Hierarchy.class deleted file mode 100644 index 299e7a89..00000000 Binary files a/target/classes/antlr/preprocessor/Hierarchy.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/Option.class b/target/classes/antlr/preprocessor/Option.class deleted file mode 100644 index 6ae9c500..00000000 Binary files a/target/classes/antlr/preprocessor/Option.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/Preprocessor.class b/target/classes/antlr/preprocessor/Preprocessor.class deleted file mode 100644 index 59da6f5b..00000000 Binary files a/target/classes/antlr/preprocessor/Preprocessor.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/PreprocessorLexer.class b/target/classes/antlr/preprocessor/PreprocessorLexer.class deleted file mode 100644 index bdc6f9bf..00000000 Binary files a/target/classes/antlr/preprocessor/PreprocessorLexer.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/PreprocessorTokenTypes.class b/target/classes/antlr/preprocessor/PreprocessorTokenTypes.class deleted file mode 100644 index 72784b6f..00000000 Binary files a/target/classes/antlr/preprocessor/PreprocessorTokenTypes.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/Rule.class b/target/classes/antlr/preprocessor/Rule.class deleted file mode 100644 index 28b97e86..00000000 Binary files a/target/classes/antlr/preprocessor/Rule.class and /dev/null differ diff --git a/target/classes/antlr/preprocessor/Tool.class b/target/classes/antlr/preprocessor/Tool.class deleted file mode 100644 index 82317ed0..00000000 Binary files a/target/classes/antlr/preprocessor/Tool.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/AnnotationConfiguration$StdConfiguration.class b/target/classes/com/fasterxml/classmate/AnnotationConfiguration$StdConfiguration.class deleted file mode 100644 index ebcb3188..00000000 Binary files a/target/classes/com/fasterxml/classmate/AnnotationConfiguration$StdConfiguration.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/AnnotationConfiguration.class b/target/classes/com/fasterxml/classmate/AnnotationConfiguration.class deleted file mode 100644 index 5bbad46d..00000000 Binary files a/target/classes/com/fasterxml/classmate/AnnotationConfiguration.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/AnnotationInclusion.class b/target/classes/com/fasterxml/classmate/AnnotationInclusion.class deleted file mode 100644 index abfd9a52..00000000 Binary files a/target/classes/com/fasterxml/classmate/AnnotationInclusion.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/AnnotationOverrides$StdBuilder.class b/target/classes/com/fasterxml/classmate/AnnotationOverrides$StdBuilder.class deleted file mode 100644 index 6f4f1b73..00000000 Binary files a/target/classes/com/fasterxml/classmate/AnnotationOverrides$StdBuilder.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/AnnotationOverrides$StdImpl.class b/target/classes/com/fasterxml/classmate/AnnotationOverrides$StdImpl.class deleted file mode 100644 index e25d2af4..00000000 Binary files a/target/classes/com/fasterxml/classmate/AnnotationOverrides$StdImpl.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/AnnotationOverrides.class b/target/classes/com/fasterxml/classmate/AnnotationOverrides.class deleted file mode 100644 index 0703dbd9..00000000 Binary files a/target/classes/com/fasterxml/classmate/AnnotationOverrides.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/Annotations.class b/target/classes/com/fasterxml/classmate/Annotations.class deleted file mode 100644 index 55ee3353..00000000 Binary files a/target/classes/com/fasterxml/classmate/Annotations.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/Filter.class b/target/classes/com/fasterxml/classmate/Filter.class deleted file mode 100644 index a375ce43..00000000 Binary files a/target/classes/com/fasterxml/classmate/Filter.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/GenericType.class b/target/classes/com/fasterxml/classmate/GenericType.class deleted file mode 100644 index b4ff769d..00000000 Binary files a/target/classes/com/fasterxml/classmate/GenericType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/MemberResolver.class b/target/classes/com/fasterxml/classmate/MemberResolver.class deleted file mode 100644 index bcf64b34..00000000 Binary files a/target/classes/com/fasterxml/classmate/MemberResolver.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/ResolvedType.class b/target/classes/com/fasterxml/classmate/ResolvedType.class deleted file mode 100644 index 875291f7..00000000 Binary files a/target/classes/com/fasterxml/classmate/ResolvedType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/ResolvedTypeWithMembers$AnnotationHandler.class b/target/classes/com/fasterxml/classmate/ResolvedTypeWithMembers$AnnotationHandler.class deleted file mode 100644 index 1f827064..00000000 Binary files a/target/classes/com/fasterxml/classmate/ResolvedTypeWithMembers$AnnotationHandler.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/ResolvedTypeWithMembers.class b/target/classes/com/fasterxml/classmate/ResolvedTypeWithMembers.class deleted file mode 100644 index 52b030b6..00000000 Binary files a/target/classes/com/fasterxml/classmate/ResolvedTypeWithMembers.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/TypeBindings.class b/target/classes/com/fasterxml/classmate/TypeBindings.class deleted file mode 100644 index faa17c86..00000000 Binary files a/target/classes/com/fasterxml/classmate/TypeBindings.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/TypeResolver.class b/target/classes/com/fasterxml/classmate/TypeResolver.class deleted file mode 100644 index c0f771a9..00000000 Binary files a/target/classes/com/fasterxml/classmate/TypeResolver.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/HierarchicType.class b/target/classes/com/fasterxml/classmate/members/HierarchicType.class deleted file mode 100644 index b291c4e6..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/HierarchicType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/RawConstructor.class b/target/classes/com/fasterxml/classmate/members/RawConstructor.class deleted file mode 100644 index 22efd536..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/RawConstructor.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/RawField.class b/target/classes/com/fasterxml/classmate/members/RawField.class deleted file mode 100644 index 4aa63f5f..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/RawField.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/RawMember.class b/target/classes/com/fasterxml/classmate/members/RawMember.class deleted file mode 100644 index 747c2f5c..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/RawMember.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/RawMethod.class b/target/classes/com/fasterxml/classmate/members/RawMethod.class deleted file mode 100644 index ca4b59ee..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/RawMethod.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/ResolvedConstructor.class b/target/classes/com/fasterxml/classmate/members/ResolvedConstructor.class deleted file mode 100644 index 24d68e51..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/ResolvedConstructor.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/ResolvedField.class b/target/classes/com/fasterxml/classmate/members/ResolvedField.class deleted file mode 100644 index 68eb703d..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/ResolvedField.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/ResolvedMember.class b/target/classes/com/fasterxml/classmate/members/ResolvedMember.class deleted file mode 100644 index 355f03a3..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/ResolvedMember.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/ResolvedMethod.class b/target/classes/com/fasterxml/classmate/members/ResolvedMethod.class deleted file mode 100644 index d8d370de..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/ResolvedMethod.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/members/ResolvedParameterizedMember.class b/target/classes/com/fasterxml/classmate/members/ResolvedParameterizedMember.class deleted file mode 100644 index 4c11da30..00000000 Binary files a/target/classes/com/fasterxml/classmate/members/ResolvedParameterizedMember.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/types/ResolvedArrayType.class b/target/classes/com/fasterxml/classmate/types/ResolvedArrayType.class deleted file mode 100644 index 3950ec2e..00000000 Binary files a/target/classes/com/fasterxml/classmate/types/ResolvedArrayType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/types/ResolvedInterfaceType.class b/target/classes/com/fasterxml/classmate/types/ResolvedInterfaceType.class deleted file mode 100644 index 7557a29f..00000000 Binary files a/target/classes/com/fasterxml/classmate/types/ResolvedInterfaceType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/types/ResolvedObjectType.class b/target/classes/com/fasterxml/classmate/types/ResolvedObjectType.class deleted file mode 100644 index 16009dee..00000000 Binary files a/target/classes/com/fasterxml/classmate/types/ResolvedObjectType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/types/ResolvedPrimitiveType.class b/target/classes/com/fasterxml/classmate/types/ResolvedPrimitiveType.class deleted file mode 100644 index 052f4716..00000000 Binary files a/target/classes/com/fasterxml/classmate/types/ResolvedPrimitiveType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/types/ResolvedRecursiveType.class b/target/classes/com/fasterxml/classmate/types/ResolvedRecursiveType.class deleted file mode 100644 index 42797b60..00000000 Binary files a/target/classes/com/fasterxml/classmate/types/ResolvedRecursiveType.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/types/TypePlaceHolder.class b/target/classes/com/fasterxml/classmate/types/TypePlaceHolder.class deleted file mode 100644 index f093c8eb..00000000 Binary files a/target/classes/com/fasterxml/classmate/types/TypePlaceHolder.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/util/ClassKey.class b/target/classes/com/fasterxml/classmate/util/ClassKey.class deleted file mode 100644 index fc43f946..00000000 Binary files a/target/classes/com/fasterxml/classmate/util/ClassKey.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/util/ClassStack.class b/target/classes/com/fasterxml/classmate/util/ClassStack.class deleted file mode 100644 index ef1eb0af..00000000 Binary files a/target/classes/com/fasterxml/classmate/util/ClassStack.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/util/MethodKey.class b/target/classes/com/fasterxml/classmate/util/MethodKey.class deleted file mode 100644 index f14000bb..00000000 Binary files a/target/classes/com/fasterxml/classmate/util/MethodKey.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache$CacheMap.class b/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache$CacheMap.class deleted file mode 100644 index e436da28..00000000 Binary files a/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache$CacheMap.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache$Key.class b/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache$Key.class deleted file mode 100644 index 9fd2d480..00000000 Binary files a/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache$Key.class and /dev/null differ diff --git a/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache.class b/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache.class deleted file mode 100644 index b1467043..00000000 Binary files a/target/classes/com/fasterxml/classmate/util/ResolvedTypeCache.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/AsianFontMapper.class b/target/classes/com/itextpdf/awt/AsianFontMapper.class deleted file mode 100644 index e8c308e8..00000000 Binary files a/target/classes/com/itextpdf/awt/AsianFontMapper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/DefaultFontMapper$BaseFontParameters.class b/target/classes/com/itextpdf/awt/DefaultFontMapper$BaseFontParameters.class deleted file mode 100644 index 9dc7f1b4..00000000 Binary files a/target/classes/com/itextpdf/awt/DefaultFontMapper$BaseFontParameters.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/DefaultFontMapper.class b/target/classes/com/itextpdf/awt/DefaultFontMapper.class deleted file mode 100644 index 4fd7d1a4..00000000 Binary files a/target/classes/com/itextpdf/awt/DefaultFontMapper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/FontMapper.class b/target/classes/com/itextpdf/awt/FontMapper.class deleted file mode 100644 index 4ed6433d..00000000 Binary files a/target/classes/com/itextpdf/awt/FontMapper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/PdfGraphics2D$1.class b/target/classes/com/itextpdf/awt/PdfGraphics2D$1.class deleted file mode 100644 index fe77331c..00000000 Binary files a/target/classes/com/itextpdf/awt/PdfGraphics2D$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/PdfGraphics2D$FakeComponent.class b/target/classes/com/itextpdf/awt/PdfGraphics2D$FakeComponent.class deleted file mode 100644 index 2633d601..00000000 Binary files a/target/classes/com/itextpdf/awt/PdfGraphics2D$FakeComponent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/PdfGraphics2D$HyperLinkKey.class b/target/classes/com/itextpdf/awt/PdfGraphics2D$HyperLinkKey.class deleted file mode 100644 index 46623860..00000000 Binary files a/target/classes/com/itextpdf/awt/PdfGraphics2D$HyperLinkKey.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/PdfGraphics2D$Kid.class b/target/classes/com/itextpdf/awt/PdfGraphics2D$Kid.class deleted file mode 100644 index c1f406d9..00000000 Binary files a/target/classes/com/itextpdf/awt/PdfGraphics2D$Kid.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/PdfGraphics2D.class b/target/classes/com/itextpdf/awt/PdfGraphics2D.class deleted file mode 100644 index d3d1dc9d..00000000 Binary files a/target/classes/com/itextpdf/awt/PdfGraphics2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/PdfPrinterGraphics2D.class b/target/classes/com/itextpdf/awt/PdfPrinterGraphics2D.class deleted file mode 100644 index d1aeef18..00000000 Binary files a/target/classes/com/itextpdf/awt/PdfPrinterGraphics2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/AffineTransform.class b/target/classes/com/itextpdf/awt/geom/AffineTransform.class deleted file mode 100644 index 7b120306..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/AffineTransform.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Double.class b/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Double.class deleted file mode 100644 index 58d5438e..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Double.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Float.class b/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Float.class deleted file mode 100644 index 682b41ea..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Float.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Iterator.class b/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Iterator.class deleted file mode 100644 index 2127581f..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/CubicCurve2D$Iterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/CubicCurve2D.class b/target/classes/com/itextpdf/awt/geom/CubicCurve2D.class deleted file mode 100644 index 5b8772c4..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/CubicCurve2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Dimension.class b/target/classes/com/itextpdf/awt/geom/Dimension.class deleted file mode 100644 index 85d1db03..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Dimension.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Dimension2D.class b/target/classes/com/itextpdf/awt/geom/Dimension2D.class deleted file mode 100644 index 34e94a5b..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Dimension2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/FlatteningPathIterator.class b/target/classes/com/itextpdf/awt/geom/FlatteningPathIterator.class deleted file mode 100644 index dd2beb05..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/FlatteningPathIterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/GeneralPath$Iterator.class b/target/classes/com/itextpdf/awt/geom/GeneralPath$Iterator.class deleted file mode 100644 index a43dbc0d..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/GeneralPath$Iterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/GeneralPath.class b/target/classes/com/itextpdf/awt/geom/GeneralPath.class deleted file mode 100644 index efc406da..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/GeneralPath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/IllegalPathStateException.class b/target/classes/com/itextpdf/awt/geom/IllegalPathStateException.class deleted file mode 100644 index 1be03a75..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/IllegalPathStateException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Line2D$Double.class b/target/classes/com/itextpdf/awt/geom/Line2D$Double.class deleted file mode 100644 index 8a5bfc75..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Line2D$Double.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Line2D$Float.class b/target/classes/com/itextpdf/awt/geom/Line2D$Float.class deleted file mode 100644 index 713928fe..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Line2D$Float.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Line2D$Iterator.class b/target/classes/com/itextpdf/awt/geom/Line2D$Iterator.class deleted file mode 100644 index 91ac39ba..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Line2D$Iterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Line2D.class b/target/classes/com/itextpdf/awt/geom/Line2D.class deleted file mode 100644 index 3e102e24..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Line2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/NoninvertibleTransformException.class b/target/classes/com/itextpdf/awt/geom/NoninvertibleTransformException.class deleted file mode 100644 index f17dbf2e..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/NoninvertibleTransformException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/PathIterator.class b/target/classes/com/itextpdf/awt/geom/PathIterator.class deleted file mode 100644 index 08b2ae1a..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/PathIterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Point.class b/target/classes/com/itextpdf/awt/geom/Point.class deleted file mode 100644 index 53f3a5ee..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Point.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Point2D$Double.class b/target/classes/com/itextpdf/awt/geom/Point2D$Double.class deleted file mode 100644 index 9acc4d98..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Point2D$Double.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Point2D$Float.class b/target/classes/com/itextpdf/awt/geom/Point2D$Float.class deleted file mode 100644 index 85b8ada3..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Point2D$Float.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Point2D.class b/target/classes/com/itextpdf/awt/geom/Point2D.class deleted file mode 100644 index 85512685..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Point2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/PolylineShape.class b/target/classes/com/itextpdf/awt/geom/PolylineShape.class deleted file mode 100644 index 2c359239..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/PolylineShape.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/PolylineShapeIterator.class b/target/classes/com/itextpdf/awt/geom/PolylineShapeIterator.class deleted file mode 100644 index a3e0199e..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/PolylineShapeIterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Double.class b/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Double.class deleted file mode 100644 index c071abb3..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Double.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Float.class b/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Float.class deleted file mode 100644 index a3cdb50a..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Float.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Iterator.class b/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Iterator.class deleted file mode 100644 index a088215f..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/QuadCurve2D$Iterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/QuadCurve2D.class b/target/classes/com/itextpdf/awt/geom/QuadCurve2D.class deleted file mode 100644 index f0a9b25c..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/QuadCurve2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Rectangle.class b/target/classes/com/itextpdf/awt/geom/Rectangle.class deleted file mode 100644 index 2b828ad4..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Rectangle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Rectangle2D$Double.class b/target/classes/com/itextpdf/awt/geom/Rectangle2D$Double.class deleted file mode 100644 index d40eacb9..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Rectangle2D$Double.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Rectangle2D$Float.class b/target/classes/com/itextpdf/awt/geom/Rectangle2D$Float.class deleted file mode 100644 index 9fb86c7c..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Rectangle2D$Float.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Rectangle2D$Iterator.class b/target/classes/com/itextpdf/awt/geom/Rectangle2D$Iterator.class deleted file mode 100644 index 08307c79..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Rectangle2D$Iterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Rectangle2D.class b/target/classes/com/itextpdf/awt/geom/Rectangle2D.class deleted file mode 100644 index 74a32738..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Rectangle2D.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/RectangularShape.class b/target/classes/com/itextpdf/awt/geom/RectangularShape.class deleted file mode 100644 index b018efd4..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/RectangularShape.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/Shape.class b/target/classes/com/itextpdf/awt/geom/Shape.class deleted file mode 100644 index 6dedfede..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/Shape.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/gl/Crossing$CubicCurve.class b/target/classes/com/itextpdf/awt/geom/gl/Crossing$CubicCurve.class deleted file mode 100644 index bf6d7185..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/gl/Crossing$CubicCurve.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/gl/Crossing$QuadCurve.class b/target/classes/com/itextpdf/awt/geom/gl/Crossing$QuadCurve.class deleted file mode 100644 index c2f02f6d..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/gl/Crossing$QuadCurve.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/gl/Crossing.class b/target/classes/com/itextpdf/awt/geom/gl/Crossing.class deleted file mode 100644 index 795ae404..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/gl/Crossing.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/misc/HashCode.class b/target/classes/com/itextpdf/awt/geom/misc/HashCode.class deleted file mode 100644 index 6371e36a..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/misc/HashCode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/misc/Messages.class b/target/classes/com/itextpdf/awt/geom/misc/Messages.class deleted file mode 100644 index 1d697c45..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/misc/Messages.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$Key.class b/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$Key.class deleted file mode 100644 index 63381b5e..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$Key.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$KeyImpl.class b/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$KeyImpl.class deleted file mode 100644 index 1e13c165..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$KeyImpl.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$KeyValue.class b/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$KeyValue.class deleted file mode 100644 index ffa48ee8..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints$KeyValue.class and /dev/null differ diff --git a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints.class b/target/classes/com/itextpdf/awt/geom/misc/RenderingHints.class deleted file mode 100644 index 0160d510..00000000 Binary files a/target/classes/com/itextpdf/awt/geom/misc/RenderingHints.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$1.class b/target/classes/com/itextpdf/testutils/CompareTool$1.class deleted file mode 100644 index e9bbfc66..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$CmpMarkedContentRenderFilter.class b/target/classes/com/itextpdf/testutils/CompareTool$CmpMarkedContentRenderFilter.class deleted file mode 100644 index 7afa2963..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$CmpMarkedContentRenderFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$CmpPngFileFilter.class b/target/classes/com/itextpdf/testutils/CompareTool$CmpPngFileFilter.class deleted file mode 100644 index 14203999..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$CmpPngFileFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$CmpTaggedPdfReaderTool.class b/target/classes/com/itextpdf/testutils/CompareTool$CmpTaggedPdfReaderTool.class deleted file mode 100644 index 430655b0..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$CmpTaggedPdfReaderTool.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$CompareResult.class b/target/classes/com/itextpdf/testutils/CompareTool$CompareResult.class deleted file mode 100644 index 9b7153f0..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$CompareResult.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$ImageNameComparator.class b/target/classes/com/itextpdf/testutils/CompareTool$ImageNameComparator.class deleted file mode 100644 index 08a935c7..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$ImageNameComparator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$ArrayPathItem.class b/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$ArrayPathItem.class deleted file mode 100644 index a5e1ad22..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$ArrayPathItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$DictPathItem.class b/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$DictPathItem.class deleted file mode 100644 index a5aceb0d..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$DictPathItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$OffsetPathItem.class b/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$OffsetPathItem.class deleted file mode 100644 index 1e993248..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$OffsetPathItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$Pair.class b/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$Pair.class deleted file mode 100644 index 01a85861..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$Pair.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$PathItem.class b/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$PathItem.class deleted file mode 100644 index 9839b963..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath$PathItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath.class b/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath.class deleted file mode 100644 index 2a47a055..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$ObjectPath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool$PngFileFilter.class b/target/classes/com/itextpdf/testutils/CompareTool$PngFileFilter.class deleted file mode 100644 index a2f6ee94..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool$PngFileFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/CompareTool.class b/target/classes/com/itextpdf/testutils/CompareTool.class deleted file mode 100644 index 87d53a4c..00000000 Binary files a/target/classes/com/itextpdf/testutils/CompareTool.class and /dev/null differ diff --git a/target/classes/com/itextpdf/testutils/ITextTest.class b/target/classes/com/itextpdf/testutils/ITextTest.class deleted file mode 100644 index ba451a04..00000000 Binary files a/target/classes/com/itextpdf/testutils/ITextTest.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/AGPL.txt b/target/classes/com/itextpdf/text/AGPL.txt deleted file mode 100644 index dba13ed2..00000000 --- a/target/classes/com/itextpdf/text/AGPL.txt +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/target/classes/com/itextpdf/text/AccessibleElementId.class b/target/classes/com/itextpdf/text/AccessibleElementId.class deleted file mode 100644 index 07169afc..00000000 Binary files a/target/classes/com/itextpdf/text/AccessibleElementId.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Anchor.class b/target/classes/com/itextpdf/text/Anchor.class deleted file mode 100644 index c4d1d8e8..00000000 Binary files a/target/classes/com/itextpdf/text/Anchor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Annotation.class b/target/classes/com/itextpdf/text/Annotation.class deleted file mode 100644 index a7b0c769..00000000 Binary files a/target/classes/com/itextpdf/text/Annotation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/BadElementException.class b/target/classes/com/itextpdf/text/BadElementException.class deleted file mode 100644 index 57db2c98..00000000 Binary files a/target/classes/com/itextpdf/text/BadElementException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/BaseColor.class b/target/classes/com/itextpdf/text/BaseColor.class deleted file mode 100644 index 9523956f..00000000 Binary files a/target/classes/com/itextpdf/text/BaseColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Chapter.class b/target/classes/com/itextpdf/text/Chapter.class deleted file mode 100644 index b67c4507..00000000 Binary files a/target/classes/com/itextpdf/text/Chapter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ChapterAutoNumber.class b/target/classes/com/itextpdf/text/ChapterAutoNumber.class deleted file mode 100644 index d70f4be0..00000000 Binary files a/target/classes/com/itextpdf/text/ChapterAutoNumber.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Chunk.class b/target/classes/com/itextpdf/text/Chunk.class deleted file mode 100644 index 3c6727f6..00000000 Binary files a/target/classes/com/itextpdf/text/Chunk.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/DocListener.class b/target/classes/com/itextpdf/text/DocListener.class deleted file mode 100644 index f0372ad3..00000000 Binary files a/target/classes/com/itextpdf/text/DocListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/DocWriter.class b/target/classes/com/itextpdf/text/DocWriter.class deleted file mode 100644 index 2e2a503b..00000000 Binary files a/target/classes/com/itextpdf/text/DocWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Document.class b/target/classes/com/itextpdf/text/Document.class deleted file mode 100644 index 5f22f847..00000000 Binary files a/target/classes/com/itextpdf/text/Document.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/DocumentException.class b/target/classes/com/itextpdf/text/DocumentException.class deleted file mode 100644 index 5ac7a856..00000000 Binary files a/target/classes/com/itextpdf/text/DocumentException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Element.class b/target/classes/com/itextpdf/text/Element.class deleted file mode 100644 index 0761b83e..00000000 Binary files a/target/classes/com/itextpdf/text/Element.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ElementListener.class b/target/classes/com/itextpdf/text/ElementListener.class deleted file mode 100644 index c305492d..00000000 Binary files a/target/classes/com/itextpdf/text/ElementListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ExceptionConverter.class b/target/classes/com/itextpdf/text/ExceptionConverter.class deleted file mode 100644 index 838ec1ff..00000000 Binary files a/target/classes/com/itextpdf/text/ExceptionConverter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Font$1.class b/target/classes/com/itextpdf/text/Font$1.class deleted file mode 100644 index 3e8bee61..00000000 Binary files a/target/classes/com/itextpdf/text/Font$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Font$FontFamily.class b/target/classes/com/itextpdf/text/Font$FontFamily.class deleted file mode 100644 index 0990eb5a..00000000 Binary files a/target/classes/com/itextpdf/text/Font$FontFamily.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Font$FontStyle.class b/target/classes/com/itextpdf/text/Font$FontStyle.class deleted file mode 100644 index 7d3d0139..00000000 Binary files a/target/classes/com/itextpdf/text/Font$FontStyle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Font.class b/target/classes/com/itextpdf/text/Font.class deleted file mode 100644 index 33538aa7..00000000 Binary files a/target/classes/com/itextpdf/text/Font.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/FontFactory.class b/target/classes/com/itextpdf/text/FontFactory.class deleted file mode 100644 index 6aef453e..00000000 Binary files a/target/classes/com/itextpdf/text/FontFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/FontFactoryImp.class b/target/classes/com/itextpdf/text/FontFactoryImp.class deleted file mode 100644 index 39b59112..00000000 Binary files a/target/classes/com/itextpdf/text/FontFactoryImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/FontProvider.class b/target/classes/com/itextpdf/text/FontProvider.class deleted file mode 100644 index a4a658e1..00000000 Binary files a/target/classes/com/itextpdf/text/FontProvider.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/GreekList.class b/target/classes/com/itextpdf/text/GreekList.class deleted file mode 100644 index 0345ef87..00000000 Binary files a/target/classes/com/itextpdf/text/GreekList.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Header.class b/target/classes/com/itextpdf/text/Header.class deleted file mode 100644 index 4ac26d9a..00000000 Binary files a/target/classes/com/itextpdf/text/Header.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Image.class b/target/classes/com/itextpdf/text/Image.class deleted file mode 100644 index 34c69d61..00000000 Binary files a/target/classes/com/itextpdf/text/Image.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ImgCCITT.class b/target/classes/com/itextpdf/text/ImgCCITT.class deleted file mode 100644 index ca6a1c05..00000000 Binary files a/target/classes/com/itextpdf/text/ImgCCITT.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ImgJBIG2.class b/target/classes/com/itextpdf/text/ImgJBIG2.class deleted file mode 100644 index e5504b32..00000000 Binary files a/target/classes/com/itextpdf/text/ImgJBIG2.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ImgRaw.class b/target/classes/com/itextpdf/text/ImgRaw.class deleted file mode 100644 index 8401c546..00000000 Binary files a/target/classes/com/itextpdf/text/ImgRaw.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ImgTemplate.class b/target/classes/com/itextpdf/text/ImgTemplate.class deleted file mode 100644 index 72824194..00000000 Binary files a/target/classes/com/itextpdf/text/ImgTemplate.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ImgWMF.class b/target/classes/com/itextpdf/text/ImgWMF.class deleted file mode 100644 index 8c221aec..00000000 Binary files a/target/classes/com/itextpdf/text/ImgWMF.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Jpeg.class b/target/classes/com/itextpdf/text/Jpeg.class deleted file mode 100644 index 9a6bd02a..00000000 Binary files a/target/classes/com/itextpdf/text/Jpeg.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Jpeg2000$ColorSpecBox.class b/target/classes/com/itextpdf/text/Jpeg2000$ColorSpecBox.class deleted file mode 100644 index 1f76c779..00000000 Binary files a/target/classes/com/itextpdf/text/Jpeg2000$ColorSpecBox.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Jpeg2000$ZeroBoxSizeException.class b/target/classes/com/itextpdf/text/Jpeg2000$ZeroBoxSizeException.class deleted file mode 100644 index c9f90914..00000000 Binary files a/target/classes/com/itextpdf/text/Jpeg2000$ZeroBoxSizeException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Jpeg2000.class b/target/classes/com/itextpdf/text/Jpeg2000.class deleted file mode 100644 index df308f32..00000000 Binary files a/target/classes/com/itextpdf/text/Jpeg2000.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/LICENSE.txt b/target/classes/com/itextpdf/text/LICENSE.txt deleted file mode 100644 index 730016fb..00000000 --- a/target/classes/com/itextpdf/text/LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -This program is free software; you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation with the addition of the following permission added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY iText Group NV, iText Group NV DISCLAIMS THE WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. - -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. -You should have received a copy of the GNU Affero General Public License along with this program; if not, see http://www.gnu.org/licenses or write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA, 02110-1301 USA, or download the license from the following URL: - -http://itextpdf.com/terms-of-use/ - -The interactive user interfaces in modified source and object code versions of this program must display Appropriate Legal Notices, as required under Section 5 of the GNU Affero General Public License. - -In accordance with Section 7(b) of the GNU Affero General Public License, a covered work must retain the producer line in every PDF that is created or manipulated using iText. - -You can be released from the requirements of the license by purchasing a commercial license. Buying such a license is mandatory as soon as you develop commercial activities involving the iText software without disclosing the source code of your own applications. -These activities include: offering paid services to customers as an ASP, serving PDFs on the fly in a web application, shipping iText with a closed source product. - -For more information, please contact iText Software Corp. at this address: sales@itextpdf.com \ No newline at end of file diff --git a/target/classes/com/itextpdf/text/LargeElement.class b/target/classes/com/itextpdf/text/LargeElement.class deleted file mode 100644 index 02130004..00000000 Binary files a/target/classes/com/itextpdf/text/LargeElement.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/List.class b/target/classes/com/itextpdf/text/List.class deleted file mode 100644 index d6159e63..00000000 Binary files a/target/classes/com/itextpdf/text/List.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ListBody.class b/target/classes/com/itextpdf/text/ListBody.class deleted file mode 100644 index a4f7b8d7..00000000 Binary files a/target/classes/com/itextpdf/text/ListBody.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ListItem.class b/target/classes/com/itextpdf/text/ListItem.class deleted file mode 100644 index 456edfe0..00000000 Binary files a/target/classes/com/itextpdf/text/ListItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ListLabel.class b/target/classes/com/itextpdf/text/ListLabel.class deleted file mode 100644 index 78157479..00000000 Binary files a/target/classes/com/itextpdf/text/ListLabel.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/MarkedObject.class b/target/classes/com/itextpdf/text/MarkedObject.class deleted file mode 100644 index eb0c71a9..00000000 Binary files a/target/classes/com/itextpdf/text/MarkedObject.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/MarkedSection.class b/target/classes/com/itextpdf/text/MarkedSection.class deleted file mode 100644 index ee0f4a89..00000000 Binary files a/target/classes/com/itextpdf/text/MarkedSection.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Meta.class b/target/classes/com/itextpdf/text/Meta.class deleted file mode 100644 index f8dc03e4..00000000 Binary files a/target/classes/com/itextpdf/text/Meta.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/NOTICE.txt b/target/classes/com/itextpdf/text/NOTICE.txt deleted file mode 100644 index d36e5684..00000000 --- a/target/classes/com/itextpdf/text/NOTICE.txt +++ /dev/null @@ -1,454 +0,0 @@ -(1) - -ExceptionConverter: -The original version of this class was published in an article by Heinz Kabutz. -Read http://www.javaspecialists.eu/archive/Issue033.html -"This material from The Java(tm) Specialists' Newsletter by Maximum Solutions -(South Africa). Please contact Maximum Solutions for more information. -Heinz Kabutz granted permission to use the example we've built on. - -(2) - -SimpleXMLParser: -The original version of this class was published in a JavaWorld article by Steven Brandt: -http://www.javaworld.com/javaworld/javatips/jw-javatip128.html -Jennifer Orr (JavaWorld) wrote: "You have permission to use the code appearing in -Steven Brandt's JavaWorld article, 'Java Tip 128: Create a quick-and-dirty XML parser.' -We ask that you reference the author as the creator and JavaWorld as the original publisher -of the code." Steven Brandt also agreed with the use of this class. - -(3) - -The following files contain material that was copyrighted by SUN: - -com/itextpdf/text/pdf/LZWDecoder.java (first appearance in iText: 2002-02-08) -com/itextpdf/text/pdf/codec/BmpImage.java (first appearance in iText: 2003-06-20) -com/itextpdf/text/pdf/codec/PngImage.java (first appearance in iText: 2003-04-25) -com/itextpdf/text/pdf/codec/TIFFDirectory.java (first appearance in iText: 2003-04-09) -com/itextpdf/text/pdf/codec/TIFFFaxDecoder.java (first appearance in iText: 2003-04-09) -com/itextpdf/text/pdf/codec/TIFFField.java (first appearance in iText: 2003-04-09) -com/itextpdf/text/pdf/codec/TIFFLZWDecoder.java (first appearance in iText: 2003-04-09) - -The original code was released under the BSD license, and contained the following -extra restriction: "You acknowledge that Software is not designed, licensed or intended -for use in the design, construction, operation or maintenance of any nuclear facility." - -In a mail sent to Bruno Lowagie on January 23, 2008, Brian Burkhalter (@sun.com) -writes: "This code is under a BSD license and supersedes the older codec packages -on which your code is based. It also includes numerous fixes among them being the -ability to handle a lot of 'broken' TIFFs." - -Note that numerous fixes were applied to the code used in iText by Paulo Soares, -but apart from the fixes there were no essential changes between the code that -was originally adapted and the code that is now available under the following -license: - - Copyright (c) 2005 Sun Microsystems, Inc. All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - - Redistribution of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - - Redistribution in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - Neither the name of Sun Microsystems, Inc. or the names of - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - This software is provided "AS IS," without a warranty of any - kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND - WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - POSSIBILITY OF SUCH DAMAGES. - - You acknowledge that this software is not designed or intended for - use in the design, construction, operation or maintenance of any - nuclear facility. - -The main difference can be found in the final paragraph: the restriction -that the source code is not "licensed" in this particular situation has -been removed. - -FYI: Brian also added: "A bit of history might be in order. -The codec classes that you used originally were based on some -classes included with JAI but not strictly part of JAI. -As of Java SE 1.4 an official Image I/O framework was -added in javax.imageio.... This frameork supports these formats: - -Java 1.4: GIF (read only), JPEG, PNG -Java 1.5: Added support for BMP and WBMP -Java 1.6: Added support for writing GIF - -The JAI Image I/O Tools packages (jai-imageio-core) were created -to support formats handled by JAI but not included in Java SE -as well as some new things like JPEG2000." - -(4) the file com/itextpdf/text/pdf/codec/TIFFConstants -and some other TIFF related code is derived from LIBTIFF: - - Copyright (c) 1988-1997 Sam Leffler - Copyright (c) 1991-1997 Silicon Graphics, Inc. - - Permission to use, copy, modify, distribute, and sell this software and - its documentation for any purpose is hereby granted without fee, provided - that (i) the above copyright notices and this permission notice appear in - all copies of the software and related documentation, and (ii) the names of - Sam Leffler and Silicon Graphics may not be used in any advertising or - publicity relating to the software without the specific, prior written - permission of Sam Leffler and Silicon Graphics. - - THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, - EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY - WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - - IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR - ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, - OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, - WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF - LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE - OF THIS SOFTWARE. - -(5) - -BidiOrder: -As stated in the Javadoc comments, materials from Unicode.org -are used in the class com/itextpdf/text/pdf/BidiOrder.java -The following license applies to these materials: - http://www.unicode.org/copyright.html#Exhibit1 - - EXHIBIT 1 - UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE - - Unicode Data Files include all data files under the directories - http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/ . - Unicode Software includes any source code published in the Unicode Standard - or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, - and http://www.unicode.org/cldr/data/. - - NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, - INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), - AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, - ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT - DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. - - COPYRIGHT AND PERMISSION NOTICE - Copyright (C) 1991-2007 Unicode, Inc. All rights reserved. Distributed under - the Terms of Use in http://www.unicode.org/copyright.html. - - Permission is hereby granted, free of charge, to any person obtaining a copy - of the Unicode data files and any associated documentation (the "Data Files") - or Unicode software and any associated documentation (the "Software") to deal - in the Data Files or Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, and/or sell copies - of the Data Files or Software, and to permit persons to whom the Data Files - or Software are furnished to do so, provided that (a) the above copyright - notice(s) and this permission notice appear with all copies of the Data Files - or Software, (b) both the above copyright notice(s) and this permission notice - appear in associated documentation, and (c) there is clear notice in each - modified Data File or in the Software as well as in the documentation associated - with the Data File(s) or Software that the data or software has been modified. - - THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. - IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE - LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY - DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. - - Except as contained in this notice, the name of a copyright holder shall not - be used in advertising or otherwise to promote the sale, use or other dealings - in these Data Files or Software without prior written authorization of the - copyright holder. - -(6) Contributions by Deutsche Bahn - -Our customer Deutsche Bahn provided a patch regarding tables using an agreement -different from the custom Contributor License Agreement, but as liberal as an -MIT-style license agreement. - -This contribution involves: -a. extra colspan functionality added to the following classes: - ColumnText, PdfPTable, and PdfPRow. -b. an extra table event: PdfPTableEventAfterSplit (also involving - PdfPTableEventForwarder). - -(7) Adobe XMP library - -In package com.itextpdf.xmp, we're using the Adobe XMP library. -This library was released under the following terms: - -Copyright (c) 2006, Adobe Systems Incorporated -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - This product includes software developed by the Adobe Systems Incorporated. -4. Neither the name of the Adobe Systems Incorporated nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY ADOBE SYSTEMS INCORPORATED ''AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL ADOBE SYSTEMS INCORPORATED BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -http://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html - -(8) -Some files use code from different Apache projects. -The source code of these files contains the appropriate copyright notices -as described in the Appendix of http://www.apache.org/licenses/LICENSE-2.0 -This is a copy of the text that can be found at that specific URL: - -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. - -Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. - -Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. - -You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - * You must give any other recipients of the Work or - Derivative Works a copy of this License; and - * You must cause any modified files to carry prominent notices - stating that You changed the files; and - * You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - * If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. - -Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. - -This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. - -Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. - -In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. - -While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - -Extra information: - -if you use the PdfCleanUp tool in the xtra package, you also need the -following Apache libraries: - -- Apache Commons: commons-imaging -- Apache Commons: commons-io \ No newline at end of file diff --git a/target/classes/com/itextpdf/text/PageSize.class b/target/classes/com/itextpdf/text/PageSize.class deleted file mode 100644 index a5de07c9..00000000 Binary files a/target/classes/com/itextpdf/text/PageSize.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Paragraph.class b/target/classes/com/itextpdf/text/Paragraph.class deleted file mode 100644 index bfc98aae..00000000 Binary files a/target/classes/com/itextpdf/text/Paragraph.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Phrase.class b/target/classes/com/itextpdf/text/Phrase.class deleted file mode 100644 index efc440f2..00000000 Binary files a/target/classes/com/itextpdf/text/Phrase.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Rectangle.class b/target/classes/com/itextpdf/text/Rectangle.class deleted file mode 100644 index adfdc4f5..00000000 Binary files a/target/classes/com/itextpdf/text/Rectangle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/RectangleReadOnly.class b/target/classes/com/itextpdf/text/RectangleReadOnly.class deleted file mode 100644 index 17b6d968..00000000 Binary files a/target/classes/com/itextpdf/text/RectangleReadOnly.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/RomanList.class b/target/classes/com/itextpdf/text/RomanList.class deleted file mode 100644 index b149e43b..00000000 Binary files a/target/classes/com/itextpdf/text/RomanList.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Section.class b/target/classes/com/itextpdf/text/Section.class deleted file mode 100644 index 7c01cac8..00000000 Binary files a/target/classes/com/itextpdf/text/Section.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/SpecialSymbol.class b/target/classes/com/itextpdf/text/SpecialSymbol.class deleted file mode 100644 index 630aab06..00000000 Binary files a/target/classes/com/itextpdf/text/SpecialSymbol.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/SplitCharacter.class b/target/classes/com/itextpdf/text/SplitCharacter.class deleted file mode 100644 index 9c323d2a..00000000 Binary files a/target/classes/com/itextpdf/text/SplitCharacter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/TabSettings.class b/target/classes/com/itextpdf/text/TabSettings.class deleted file mode 100644 index 25eec316..00000000 Binary files a/target/classes/com/itextpdf/text/TabSettings.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/TabSplitCharacter.class b/target/classes/com/itextpdf/text/TabSplitCharacter.class deleted file mode 100644 index c7bf9ce7..00000000 Binary files a/target/classes/com/itextpdf/text/TabSplitCharacter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/TabStop$1.class b/target/classes/com/itextpdf/text/TabStop$1.class deleted file mode 100644 index 4df78c54..00000000 Binary files a/target/classes/com/itextpdf/text/TabStop$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/TabStop$Alignment.class b/target/classes/com/itextpdf/text/TabStop$Alignment.class deleted file mode 100644 index 49256e67..00000000 Binary files a/target/classes/com/itextpdf/text/TabStop$Alignment.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/TabStop.class b/target/classes/com/itextpdf/text/TabStop.class deleted file mode 100644 index 00eac496..00000000 Binary files a/target/classes/com/itextpdf/text/TabStop.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/TextElementArray.class b/target/classes/com/itextpdf/text/TextElementArray.class deleted file mode 100644 index 2ec2cc77..00000000 Binary files a/target/classes/com/itextpdf/text/TextElementArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Utilities.class b/target/classes/com/itextpdf/text/Utilities.class deleted file mode 100644 index bbb52ce6..00000000 Binary files a/target/classes/com/itextpdf/text/Utilities.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/Version.class b/target/classes/com/itextpdf/text/Version.class deleted file mode 100644 index 88cf4e2e..00000000 Binary files a/target/classes/com/itextpdf/text/Version.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/WritableDirectElement.class b/target/classes/com/itextpdf/text/WritableDirectElement.class deleted file mode 100644 index 9dd27364..00000000 Binary files a/target/classes/com/itextpdf/text/WritableDirectElement.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ZapfDingbatsList.class b/target/classes/com/itextpdf/text/ZapfDingbatsList.class deleted file mode 100644 index 0bc16e0f..00000000 Binary files a/target/classes/com/itextpdf/text/ZapfDingbatsList.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/ZapfDingbatsNumberList.class b/target/classes/com/itextpdf/text/ZapfDingbatsNumberList.class deleted file mode 100644 index 077bdabe..00000000 Binary files a/target/classes/com/itextpdf/text/ZapfDingbatsNumberList.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/api/Indentable.class b/target/classes/com/itextpdf/text/api/Indentable.class deleted file mode 100644 index 6f7d33b2..00000000 Binary files a/target/classes/com/itextpdf/text/api/Indentable.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/api/Spaceable.class b/target/classes/com/itextpdf/text/api/Spaceable.class deleted file mode 100644 index 88aea3ee..00000000 Binary files a/target/classes/com/itextpdf/text/api/Spaceable.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/api/WriterOperation.class b/target/classes/com/itextpdf/text/api/WriterOperation.class deleted file mode 100644 index 3e1ba328..00000000 Binary files a/target/classes/com/itextpdf/text/api/WriterOperation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/error_messages/MessageLocalization.class b/target/classes/com/itextpdf/text/error_messages/MessageLocalization.class deleted file mode 100644 index 56706b12..00000000 Binary files a/target/classes/com/itextpdf/text/error_messages/MessageLocalization.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/exceptions/BadPasswordException.class b/target/classes/com/itextpdf/text/exceptions/BadPasswordException.class deleted file mode 100644 index 554afdc0..00000000 Binary files a/target/classes/com/itextpdf/text/exceptions/BadPasswordException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/exceptions/IllegalPdfSyntaxException.class b/target/classes/com/itextpdf/text/exceptions/IllegalPdfSyntaxException.class deleted file mode 100644 index eb7639ed..00000000 Binary files a/target/classes/com/itextpdf/text/exceptions/IllegalPdfSyntaxException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/exceptions/InvalidImageException.class b/target/classes/com/itextpdf/text/exceptions/InvalidImageException.class deleted file mode 100644 index 6e8955ae..00000000 Binary files a/target/classes/com/itextpdf/text/exceptions/InvalidImageException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/exceptions/InvalidPdfException.class b/target/classes/com/itextpdf/text/exceptions/InvalidPdfException.class deleted file mode 100644 index 7818bdf4..00000000 Binary files a/target/classes/com/itextpdf/text/exceptions/InvalidPdfException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/exceptions/UnsupportedPdfException.class b/target/classes/com/itextpdf/text/exceptions/UnsupportedPdfException.class deleted file mode 100644 index 1bdb96cc..00000000 Binary files a/target/classes/com/itextpdf/text/exceptions/UnsupportedPdfException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/factories/GreekAlphabetFactory.class b/target/classes/com/itextpdf/text/factories/GreekAlphabetFactory.class deleted file mode 100644 index 3a7b629f..00000000 Binary files a/target/classes/com/itextpdf/text/factories/GreekAlphabetFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/factories/RomanAlphabetFactory.class b/target/classes/com/itextpdf/text/factories/RomanAlphabetFactory.class deleted file mode 100644 index 07c76521..00000000 Binary files a/target/classes/com/itextpdf/text/factories/RomanAlphabetFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/factories/RomanNumberFactory$RomanDigit.class b/target/classes/com/itextpdf/text/factories/RomanNumberFactory$RomanDigit.class deleted file mode 100644 index 2ee462b7..00000000 Binary files a/target/classes/com/itextpdf/text/factories/RomanNumberFactory$RomanDigit.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/factories/RomanNumberFactory.class b/target/classes/com/itextpdf/text/factories/RomanNumberFactory.class deleted file mode 100644 index f0c65415..00000000 Binary files a/target/classes/com/itextpdf/text/factories/RomanNumberFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/HtmlEncoder.class b/target/classes/com/itextpdf/text/html/HtmlEncoder.class deleted file mode 100644 index e38190cf..00000000 Binary files a/target/classes/com/itextpdf/text/html/HtmlEncoder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/HtmlTags.class b/target/classes/com/itextpdf/text/html/HtmlTags.class deleted file mode 100644 index 25398375..00000000 Binary files a/target/classes/com/itextpdf/text/html/HtmlTags.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/HtmlUtilities.class b/target/classes/com/itextpdf/text/html/HtmlUtilities.class deleted file mode 100644 index 4cc9fb18..00000000 Binary files a/target/classes/com/itextpdf/text/html/HtmlUtilities.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/WebColors.class b/target/classes/com/itextpdf/text/html/WebColors.class deleted file mode 100644 index 4d55f230..00000000 Binary files a/target/classes/com/itextpdf/text/html/WebColors.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/CellWrapper.class b/target/classes/com/itextpdf/text/html/simpleparser/CellWrapper.class deleted file mode 100644 index 7018aba9..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/CellWrapper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/ChainedProperties$TagAttributes.class b/target/classes/com/itextpdf/text/html/simpleparser/ChainedProperties$TagAttributes.class deleted file mode 100644 index 8c5a5caa..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/ChainedProperties$TagAttributes.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/ChainedProperties.class b/target/classes/com/itextpdf/text/html/simpleparser/ChainedProperties.class deleted file mode 100644 index 1b85e3c5..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/ChainedProperties.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/ElementFactory.class b/target/classes/com/itextpdf/text/html/simpleparser/ElementFactory.class deleted file mode 100644 index da8ca576..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/ElementFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessor.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessor.class deleted file mode 100644 index a0947213..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$1.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$1.class deleted file mode 100644 index 2dc73fb4..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$10.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$10.class deleted file mode 100644 index e613465f..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$10.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$11.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$11.class deleted file mode 100644 index daf8f4d2..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$11.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$12.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$12.class deleted file mode 100644 index 9802278b..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$12.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$13.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$13.class deleted file mode 100644 index e6e72e28..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$13.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$14.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$14.class deleted file mode 100644 index dd8a47da..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$14.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$2.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$2.class deleted file mode 100644 index 8fd190a7..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$2.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$3.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$3.class deleted file mode 100644 index 522763bc..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$3.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$4.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$4.class deleted file mode 100644 index 353b1012..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$4.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$5.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$5.class deleted file mode 100644 index 737c3614..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$5.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$6.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$6.class deleted file mode 100644 index 8ef7f256..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$6.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$7.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$7.class deleted file mode 100644 index 2ee5053d..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$7.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$8.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$8.class deleted file mode 100644 index fabf0f2d..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$8.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$9.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$9.class deleted file mode 100644 index 5e82ebdd..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors$9.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors.class deleted file mode 100644 index 6c056b54..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLTagProcessors.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/HTMLWorker.class b/target/classes/com/itextpdf/text/html/simpleparser/HTMLWorker.class deleted file mode 100644 index 5318f6c9..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/HTMLWorker.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/ImageProcessor.class b/target/classes/com/itextpdf/text/html/simpleparser/ImageProcessor.class deleted file mode 100644 index 5ff2ba68..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/ImageProcessor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/ImageProvider.class b/target/classes/com/itextpdf/text/html/simpleparser/ImageProvider.class deleted file mode 100644 index 809d451a..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/ImageProvider.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/ImageStore.class b/target/classes/com/itextpdf/text/html/simpleparser/ImageStore.class deleted file mode 100644 index 47117731..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/ImageStore.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/LinkProcessor.class b/target/classes/com/itextpdf/text/html/simpleparser/LinkProcessor.class deleted file mode 100644 index 7780efb1..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/LinkProcessor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/StyleSheet.class b/target/classes/com/itextpdf/text/html/simpleparser/StyleSheet.class deleted file mode 100644 index 1587818b..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/StyleSheet.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/html/simpleparser/TableWrapper.class b/target/classes/com/itextpdf/text/html/simpleparser/TableWrapper.class deleted file mode 100644 index 8e320c49..00000000 Binary files a/target/classes/com/itextpdf/text/html/simpleparser/TableWrapper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/ArrayRandomAccessSource.class b/target/classes/com/itextpdf/text/io/ArrayRandomAccessSource.class deleted file mode 100644 index d790fbd1..00000000 Binary files a/target/classes/com/itextpdf/text/io/ArrayRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/ByteBufferRandomAccessSource$1.class b/target/classes/com/itextpdf/text/io/ByteBufferRandomAccessSource$1.class deleted file mode 100644 index 713ffb68..00000000 Binary files a/target/classes/com/itextpdf/text/io/ByteBufferRandomAccessSource$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/ByteBufferRandomAccessSource.class b/target/classes/com/itextpdf/text/io/ByteBufferRandomAccessSource.class deleted file mode 100644 index d058106f..00000000 Binary files a/target/classes/com/itextpdf/text/io/ByteBufferRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/FileChannelRandomAccessSource.class b/target/classes/com/itextpdf/text/io/FileChannelRandomAccessSource.class deleted file mode 100644 index 8714ac6d..00000000 Binary files a/target/classes/com/itextpdf/text/io/FileChannelRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/GetBufferedRandomAccessSource.class b/target/classes/com/itextpdf/text/io/GetBufferedRandomAccessSource.class deleted file mode 100644 index 80e92cc6..00000000 Binary files a/target/classes/com/itextpdf/text/io/GetBufferedRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/GroupedRandomAccessSource$SourceEntry.class b/target/classes/com/itextpdf/text/io/GroupedRandomAccessSource$SourceEntry.class deleted file mode 100644 index c3ca162a..00000000 Binary files a/target/classes/com/itextpdf/text/io/GroupedRandomAccessSource$SourceEntry.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/GroupedRandomAccessSource.class b/target/classes/com/itextpdf/text/io/GroupedRandomAccessSource.class deleted file mode 100644 index f07a3d6a..00000000 Binary files a/target/classes/com/itextpdf/text/io/GroupedRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/IndependentRandomAccessSource.class b/target/classes/com/itextpdf/text/io/IndependentRandomAccessSource.class deleted file mode 100644 index 7e29f7d5..00000000 Binary files a/target/classes/com/itextpdf/text/io/IndependentRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/MapFailedException.class b/target/classes/com/itextpdf/text/io/MapFailedException.class deleted file mode 100644 index 9e25f575..00000000 Binary files a/target/classes/com/itextpdf/text/io/MapFailedException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/MappedChannelRandomAccessSource.class b/target/classes/com/itextpdf/text/io/MappedChannelRandomAccessSource.class deleted file mode 100644 index 43c8b1a4..00000000 Binary files a/target/classes/com/itextpdf/text/io/MappedChannelRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/PagedChannelRandomAccessSource$MRU.class b/target/classes/com/itextpdf/text/io/PagedChannelRandomAccessSource$MRU.class deleted file mode 100644 index 363096f9..00000000 Binary files a/target/classes/com/itextpdf/text/io/PagedChannelRandomAccessSource$MRU.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/PagedChannelRandomAccessSource.class b/target/classes/com/itextpdf/text/io/PagedChannelRandomAccessSource.class deleted file mode 100644 index 269e958b..00000000 Binary files a/target/classes/com/itextpdf/text/io/PagedChannelRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/RAFRandomAccessSource.class b/target/classes/com/itextpdf/text/io/RAFRandomAccessSource.class deleted file mode 100644 index 37ff3d33..00000000 Binary files a/target/classes/com/itextpdf/text/io/RAFRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/RASInputStream.class b/target/classes/com/itextpdf/text/io/RASInputStream.class deleted file mode 100644 index 54ba8eab..00000000 Binary files a/target/classes/com/itextpdf/text/io/RASInputStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/RandomAccessSource.class b/target/classes/com/itextpdf/text/io/RandomAccessSource.class deleted file mode 100644 index 8949998c..00000000 Binary files a/target/classes/com/itextpdf/text/io/RandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/RandomAccessSourceFactory.class b/target/classes/com/itextpdf/text/io/RandomAccessSourceFactory.class deleted file mode 100644 index a83b6d5e..00000000 Binary files a/target/classes/com/itextpdf/text/io/RandomAccessSourceFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/StreamUtil.class b/target/classes/com/itextpdf/text/io/StreamUtil.class deleted file mode 100644 index 37992648..00000000 Binary files a/target/classes/com/itextpdf/text/io/StreamUtil.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/TempFileCache$ObjectPosition.class b/target/classes/com/itextpdf/text/io/TempFileCache$ObjectPosition.class deleted file mode 100644 index b315a376..00000000 Binary files a/target/classes/com/itextpdf/text/io/TempFileCache$ObjectPosition.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/TempFileCache.class b/target/classes/com/itextpdf/text/io/TempFileCache.class deleted file mode 100644 index 5663238f..00000000 Binary files a/target/classes/com/itextpdf/text/io/TempFileCache.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/io/WindowRandomAccessSource.class b/target/classes/com/itextpdf/text/io/WindowRandomAccessSource.class deleted file mode 100644 index 827941c7..00000000 Binary files a/target/classes/com/itextpdf/text/io/WindowRandomAccessSource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/l10n/error/en.lng b/target/classes/com/itextpdf/text/l10n/error/en.lng deleted file mode 100644 index 4686f118..00000000 --- a/target/classes/com/itextpdf/text/l10n/error/en.lng +++ /dev/null @@ -1,567 +0,0 @@ -# default language English -1.2.does.not.contain.an.usable.cmap={1} {2} does not contain an usable cmap. -1.2.is.not.a.ttf.font.file={1} {2} is not a TTF font file. -1.at.file.pointer.2={1} at file pointer {2} -1.bit.samples.are.not.supported.for.horizontal.differencing.predictor={1}-bit samples are not supported for Horizontal differencing Predictor. -1.cannot.be.embedded.due.to.licensing.restrictions={1} cannot be embedded due to licensing restrictions. -1.component.s.is.not.supported={1} component(s) is not supported -1.corrupted.jfif.marker={1} corrupted JFIF marker. -1.is.an.unknown.graphics.state.dictionary={1} is an unknown graphics state dictionary -1.is.an.unknown.image.format={1} is an unknown Image format. -1.is.not.a.true.type.file={1} is not a true type file. -1.is.not.a.ttf.otf.or.ttc.font.file={1} is not a TTF, OTF or TTC font file. -1.is.not.a.valid.jpeg.file={1} is not a valid JPEG-file. -1.is.not.a.valid.name.for.checkbox.appearance={1} is not a valid name for a checkbox appearance (should be Off or Yes) -1.is.not.a.valid.number.2={1} is not a valid number - {2} -1.is.not.a.valid.page.size.format.2={1} is not a valid page size format: {2} -1.is.not.a.valid.placeable.windows.metafile={1} is not a valid placeable windows metafile. -1.is.not.a.valid.ttc.file={1} is not a valid TTC file. -1.is.not.a.valid.ttf.file={1} is not a valid TTF file. -1.is.not.a.valid.ttf.or.otf.file={1} is not a valid TTF or OTF file. -1.is.not.an.acceptable.value.for.the.field.2={1} is not an acceptable value for the field {2} -1.is.not.an.afm.or.pfm.font.file={1} is not an AFM or PFM font file. -1.method.can.be.only.used.in.mergeFields.mode.please.use.addDocument={1} method can be only used in mergeFields mode, please use addDocument. -1.method.cannot.be.used.in.mergeFields.mode.please.use.addDocument={1} method cannot be used in mergeFields mode, please use addDocument. -1.must.have.8.bits.per.component={1} must have 8 bits per component. -1.near.line.2.column.3={1} near line {2}, column {3} -1.not.found.as.file.or.resource={1} not found as file or resource. -1.not.found.as.resource={1} not found as resource. -1.unsupported.jpeg.marker.2={1}: unsupported JPEG marker: {2} -1.value.of.intent.key.is.not.allowed={1} value of Intent key is not allowed. -1.value.of.ri.key.is.not.allowed={1} value of RI key is not allowed. -a.form.xobject.dictionary.shall.not.contain.ps.key=A form XObject dictionary shall not contain PS key. -a.form.xobject.dictionary.shall.not.contain.opi.key=A form XObject dictionary shall not contain OPI key. -a.group.object.with.an.s.key.with.a.value.of.transparency.shall.not.be.included.in.a.form.xobject=A Group object with an S key with a value of Transparency shall not be included in a form XObject. -a.pattern.can.not.be.used.as.a.template.to.create.an.image=A pattern can not be used as a template to create an image. -a.pdfa.file.may.have.only.one.pdfa.outputintent=A PDF/A conforming file may have only one PDF/A OutputIntent. -a.pdfx.conforming.document.cannot.be.encrypted=A PDFX conforming document cannot be encrypted. -a.signature.image.should.be.present.when.rendering.mode.is.graphic.only=A signature image should be present when rendering mode is graphic only. -a.signature.image.should.be.present.when.rendering.mode.is.graphic.and.description=A signature image should be present when rendering mode is graphic and description. -a.string.1.was.passed.in.state.only.on.off.and.toggle.are.allowed=A string '{1} was passed in state. Only 'ON', 'OFF' and 'Toggle' are allowed. -a.tab.position.may.not.be.lower.than.0.yours.is.1=A tab position may not be lower than 0; yours is {1} -a.table.should.have.at.least.1.column=A table should have at least 1 column. -a.tiling.or.shading.pattern.cannot.be.used.as.a.color.space.in.a.shading.pattern=A tiling or shading pattern cannot be used as a color space in a shading pattern -a.title.is.not.a.layer=A title is not a layer -addcell.cell.has.null.value=addCell - cell has null-value -addcell.error.in.reserve=addCell - error in reserve -addcell.illegal.column.argument=addCell - illegal column argument -addcell.null.argument=addCell - null argument -addcell.only.cells.or.tables.allowed=addCell - only Cells or Tables allowed -addcell.point.has.null.value=addCell - point has null-value -adding.a.cell.at.the.location.1.2.with.a.colspan.of.3.and.a.rowspan.of.4.is.illegal.beyond.boundaries.overlapping=Adding a cell at the location ({1},{2}) with a colspan of {3} and a rowspan of {4} is illegal (beyond boundaries/overlapping). -add.image.exception=Exception adding image with path {1} -afrelationship.value.shall.be.alternative=AFRelationship value shall be Alternative. -ai.not.found.1=AI not found: ({1}) -ai.too.short.1=AI too short: ({1}) -all.colour.channels.in.the.jpeg2000.data.shall.have.the.same.bit-depth=All colour channels in the JPEG2000 data shall have the same bit-depth. -all.fill.bits.preceding.eol.code.must.be.0=All fill bits preceding EOL code must be 0. -all.halftones.shall.have.halftonetype.1.or.5=All halftones in a conforming PDF/A file shall have the value 1 or 5 for the HalftoneType key. -all.the.fonts.must.be.embedded.this.one.isn.t.1=All the fonts must be embedded. This one isn't: {1} -already.attempted.a.read.on.this.jbig2.file=already attempted a read() on this Jbig2 File -alt.entry.should.specify.alternate.description.for.1.element=Alt entry should specify alternate description for {1} element. -an.annotation.dictionary.shall.contain.the.f.key=An annotation dictionary shall contain the F key. -an.annotation.dictionary.shall.not.contain.the.ca.key.with.a.value.other.than.1=An annotation dictionary shall not contain the CA key with a value other than 1.0. -an.appearance.was.requested.without.a.variable.text.field=An appearance was requested without a variable text field. -an.extgstate.dictionary.shall.not.contain.the.tr.key=An ExtGState dictionary shall not contain the TR key. -an.extgstate.dictionary.shall.not.contain.the.htp.key=An ExtGState dictionary shall not contain the HTP key. -an.extgstate.dictionary.shall.not.contain.the.halftonename.key=An ExtGState dictionary shall not contain the HalftoneName key. -an.extgstate.dictionary.shall.contain.the.halftonetype.key.of.value.1.or.5=An ExtGState dictionary shall contain the HalftoneType key of value 1 or 5. -an.extgstate.dictionary.shall.not.contain.the.TR2.key.with.a.value.other.than.default=An ExtGState dictionary shall not contain the TR2 key with a value other than Default. -an.image.dictionary.shall.not.contain.alternates.key=An Image dictionary shall not contain Alternates key. -an.image.dictionary.shall.not.contain.opi.key=An Image dictionary shall not contain OPI key. -an.image.mask.cannot.contain.another.image.mask=An image mask cannot contain another image mask. -an.uncolored.pattern.was.expected=An uncolored pattern was expected. -an.uncolored.tile.pattern.can.not.have.another.pattern.or.shading.as.color=An uncolored tile pattern can not have another pattern or shading as color. -annotation.of.type.1.should.have.contents.key=Annotation of type {1} should have Contents key. -annotation.type.1.not.allowed=Annotation type {1} not allowed. -appearance.dictionary.of.widget.subtype.and.btn.field.type.shall.contain.only.the.n.key.with.dictionary.value=Appearance dictionary of Widget subtype and Btn field type shall contain only the n key with dictionary value -appearance.dictionary.shall.contain.only.the.n.key.with.stream.value=Appearance dictionary shall contain only the N key with stream value. -append.mode.does.not.support.changing.the.encryption.status=Append mode does not support changing the encryption status. -append.mode.requires.a.document.without.errors.even.if.recovery.was.possible=Append mode requires a document without errors even if recovery was possible. -authenticated.attribute.is.missing.the.digest=Authenticated attribute is missing the digest. -b.type.before.end.of.paragraph.at.index.1=B type before end of paragraph at index: {1} -bad.certificate.and.key=Bad certificate and key. -bad.endianness.tag.not.0x4949.or.0x4d4d=Bad endianness tag (not 0x4949 or 0x4d4d). -bad.linebreak.1.at.index.2=bad linebreak: {1} at index: {2} -bad.magic.number.should.be.42=Bad magic number, should be 42. -bad.user.password=Bad user password -badly.formated.directory.string=badly formated directory string -badly.formed.ucc.string.1=Badly formed UCC string: {1} -base64.input.not.properly.padded=Base64 input not properly padded. -bbox.must.be.a.4.element.array=BBox must be a 4 element array. -bits.per.component.must.be.1.2.4.or.8=Bits-per-component must be 1, 2, 4, or 8. -bits.per.sample.1.is.not.supported=Bits per sample {1} is not supported. -blend.mode.1.not.allowed=Blend mode {1} not allowed. -bookmark.end.tag.out.of.place=Bookmark end tag out of place. -both.colors.must.be.of.the.same.type=Both colors must be of the same type. -buffersize.1=bufferSize {1} -can.only.push.back.one.byte=Can only push back one byte -can.t.add.1.to.multicolumntext.with.complex.columns=Can't add {1} to MultiColumnText with complex columns -can.t.decode.pkcs7signeddata.object=can't decode PKCS7SignedData object -can.t.find.page.size.1=Can't find page size {1} -can.t.find.signing.certificate.with.serial.1=Can't find signing certificate with serial {1} -can.t.read.document.structure=Can't read document structure -cannot.change.destination.of.external.link=Cannot change destination of external link -cannot.handle.box.sizes.higher.than.2.32=Cannot handle box sizes higher than 2^32 -cf.not.found.encryption=/CF not found (encryption) -codabar.must.have.at.least.a.start.and.stop.character=Codabar must have at least a start and stop character. -codabar.must.have.one.of.abcd.as.start.stop.character=Codabar must have one of 'ABCD' as start/stop character. -color.value.outside.range.0.255=Color value outside range 0-255. -color.not.found=Color '{1}' not found. -colors.are.not.allowed.in.uncolored.tile.patterns=Colors are not allowed in uncolored tile patterns. -colorspace.calrgb.is.not.allowed=Colorspace CalRGB is not allowed. -colorspace.rgb.is.not.allowed=Colorspace RGB is not allowed. -column.coordinate.of.location.must.be.gt.eq.0.and.lt.nr.of.columns=column coordinate of location must be >= 0 and < nr of columns -columntext.go.with.simulate.eq.eq.false.and.text.eq.eq.null=ColumnText.go with simulate==false and text==null. -components.must.be.1.3.or.4=Components must be 1, 3, or 4. -compression.jpeg.is.only.supported.with.a.single.strip.this.image.has.1.strips=Compression JPEG is only supported with a single strip. This image has {1} strips. -conflict.in.classmap=Conflict in ClassMap {1}. -conflict.in.rolemap=Conflict in RoleMap {1}. -content.can.not.be.added.to.a.pdfimportedpage=Content can not be added to a PdfImportedPage. -content.was.already.written.to.the.output=Content was already written to the output. -corrupted.png.file=Corrupted PNG file. -could.not.find.web.browser=Could not find web browser. -could.not.flatten.file.untagged.annotations.found=Could not flatten file: untagged annotations found! -count.of.referred.to.segments.had.bad.value.in.header.for.segment.1.starting.at.2=count of referred-to segments had bad value in header for segment {1} starting at {2} -creating.page.stamp.not.allowed.for.tagged.reader=Creating PageStamp not allowed for tagged reader. -crypt.filter.is.not.permitted.inline.image=Crypt filter is not permitted for inline images. -defaultcryptfilter.not.found.encryption=/DefaultCryptFilter not found (encryption) -deprecated.setstate.and.noop.actions.are.not.allowed=Deprecated set-state and no-op actions are not allowed. -destination.end.tag.out.of.place=Destination end tag out of place. -destoutputprofile.in.the.pdfa1.outputintent.dictionary.shall.be.rgb=DestOutputProfile in the PDF/A-1 OutputIntent dictionary shall be RGB. -devicecmyk.may.be.used.only.if.the.file.has.a.cmyk.pdfa.outputIntent=DeviceCMYK may be used only if the file has a PDF/A OutputIntent that uses a CMYK colour space. -devicecmyk.shall.only.be.used.if.defaultcmyk.pdfa.or.outputintent=DeviceCMYK shall only be used if a device independent DefaultCMYK colour space has been set or if a DeviceN-based DefaultCMYK colour space has been set when the DeviceCMYK colour space is used or the file has a PDF/A OutputIntent that contains a CMYK destination profile. -devicegray.may.be.used.only.if.the.file.has.a.rgb.or.cmyk.pdfa.outputIntent=DeviceGray may be used only if the file has a PDF/A OutputIntent that uses an RGB or CMYK colour space. -devicegray.shall.only.be.used.if.defaultgray.pdfa.or.outputintent=DeviceGray shall only be used if a device independent DefaultGray colour space has been set when the DeviceGray colour space is used, or if a PDF/A OutputIntent is present. -devicergb.and.devicecmyk.colorspaces.cannot.be.used.both.in.one.file=DeviceRGB and DeviceCMYK colorspaces cannot be used both in one file. -devicergb.may.be.used.only.if.the.file.has.a.rgb.pdfa.outputIntent=DeviceRGB may be used only if the file has a PDF/A OutputIntent that uses an RGB colour space. -devicergb.shall.only.be.used.if.defaultrgb.pdfa.or.outputintent=DeviceRGB shall only be used if a device independent DefaultRGB colour space has been set when the DeviceRGB colour space is used, or if the file has a PDF/A OutputIntent that contains an RGB destination profile. -devicen.color.shall.have.the.same.number.of.colorants.as.the.destination.DeviceN.color.space=DeviceN color shall have the same number of colorants as the destination color space -devicen.component.names.shall.be.different=DeviceN component names shall all be different from one another, except for the name None -dictionary.key.1.is.not.a.name=Dictionary key {1} is not a name. -dictionary.key.is.not.a.name=Dictionary key is not a name. -different.pdf.a.version=Different PDF/A version. -dimensions.of.a.cell.are.attributed.automagically.see.the.faq=Dimensions of a Cell are attributed automagically. See the FAQ. -dimensions.of.a.cell.can.t.be.calculated.see.the.faq=Dimensions of a Cell can't be calculated. See the FAQ. -dimensions.of.a.table.can.t.be.calculated.see.the.faq=Dimensions of a Table can't be calculated. See the FAQ. -directory.number.too.large=Directory number too large. -document.1.has.already.been.added=Document {1} has already been added. -document.already.pre.closed=Document already pre closed. -document.catalog.dictionary.shall.include.a.markinfo.dictionary.whose.entry.marked.shall.have.a.value.of.true=Document catalog dictionary shall include a MarkInfo dictionary whose entry Marked shall have a value of true. -document.catalog.dictionary.should.contain.lang.entry=Document catalog dictionary should contain Lang entry. -document.fields.cannot.be.copied.in.tagged.mode=Document fields cannot be copied in tagged mode. -ef.key.of.file.specification.dictionary.shall.contain.dictionary.with.valid.f.key=EF key of the file specification dictionary for an embedded file shall contain dictionary with valid F key. -element.not.allowed=Element not allowed. -embedded.file.shall.contain.valid.params.key=Embedded file shall contain valid Params key. -embedded.file.shall.contain.params.key.with.valid.moddate.key=Embedded file shall contain Params key with valid ModDate key. -embedded.file.shall.contain.pdf.mime.type=Embedded file shall contain correct pdf mime type. -embedded.files.are.not.permitted=Embedded files are not permitted. -encryption.can.only.be.added.before.opening.the.document=Encryption can only be added before opening the document. -eol.code.word.encountered.in.black.run=EOL code word encountered in Black run. -eol.code.word.encountered.in.white.run=EOL code word encountered in White run. -error.attempting.to.launch.web.browser=Error attempting to launch web browser -error.expected.hex.character.and.not.char.thenextbyte.1=Error: expected hex character and not (char)theNextByte:{1} -error.expected.the.end.of.a.dictionary=Error: expected the end of a dictionary. -error.in.attribute.processing=Error in attribute processing -error.in.base64.code.reading.stream=Error in Base64 code reading stream. -error.parsing.cmap.beginbfchar.expected.cosstring.or.cosname.and.not.1=Error parsing CMap beginbfchar, expected {COSString or COSName} and not {1} -error.reading.objstm=Error reading ObjStm -error.reading.string=Error reading string -error.with.jp.marker=Error with JP Marker -every.annotation.shall.have.at.least.one.appearance.dictionary=Every annotation shall have at least one appearance dictionary -exactly.one.colour.space.specification.shall.have.the.value.0x01.in.the.approx.field=Exactly one colour space specification shall have the value 0x01 in the APPROX field. -expected.ftyp.marker=Expected FTYP Marker -expected.gt.for.tag.lt.1.gt=Expected > for tag: <{1}/> -expected.ihdr.marker=Expected IHDR Marker -expected.colr.marker=Expected COLR Marker -expected.jp.marker=Expected JP Marker -expected.jp2h.marker=Expected JP2H Marker -extra.samples.are.not.supported=Extra samples are not supported. -failed.to.get.tsa.response.from.1=Failed to get TSA response from '{1}' -fdf.header.not.found=FDF header signature not found. -field.flattening.is.not.supported.in.append.mode=Field flattening is not supported in append mode. -field.names.cannot.contain.a.dot=Field names cannot contain a dot. -file.header.flags.bits.2.7.not.0=file header flags bits 2-7 not 0 -file.header.idstring.not.good.at.byte.1=file header idstring not good at byte {1} -file.is.not.a.valid.png=File is not a valid PNG. -file.position.0.cross.reference.entry.in.this.xref.subsection=File position 0 cross-reference entry in this xref subsection -file.specification.dictionary.shall.contain.correct.afrelationship.key=The file specification dictionary for an embedded file shall contain correct AFRelationship key. -file.specification.dictionary.shall.contain.f.uf.and.desc.entries=The file specification dictionary for an embedded file shall contain the F and UF keys and should contain the Desc key. -filter.ccittfaxdecode.is.only.supported.for.images=Filter CCITTFaxDecode is only supported for images -first.scanline.must.be.1d.encoded=First scanline must be 1D encoded. -font.1.with.2.encoding.is.not.a.cjk.font=Font '{1}' with '{2}' encoding is not a CJK font. -font.1.with.2.is.not.recognized=Font '{1}' with '{2}' is not recognized. -font.and.size.must.be.set.before.writing.any.text=Font and size must be set before writing any text -font.size.too.small.1=Font size too small: {1} -fontfactoryimp.cannot.be.null=FontFactoryImp cannot be null. -freetext.flattening.is.not.supported.in.append.mode=FreeText flattening is not supported in append mode. -annotation.flattening.is.not.supported.in.append.mode=Annotation flattening is not supported in append mode. -getcell.at.illegal.index.1.max.is.2=getCell at illegal index :{1} max is {2} -getcell.at.illegal.index.1=getCell at illegal index : {1} -gif.signature.nor.found=Gif signature nor found. -graphics.state.stack.depth.is.greater.than.28=Graphics state stack depth is greater than 28. -greaterthan.not.expected='>' not expected -halftones.shall.not.contains.halftonename=Halftones in a conforming PDF/A-2 file shall not contain a HalftoneName key. -handler.1.already.registered=XObject handler {1} already registered -if.device.rgb.cmyk.gray.used.in.file.that.file.shall.contain.pdfa.outputintent=If an uncalibrated colour space(DeviceRGB/DeviceCMYK/DeviceGray) is used in a file, then that file shall contain a PDF/A OutputIntent. -if.outputintents.array.more.than.one.entry.the.same.indirect.object=If a file's OutputIntents array contains more than one entry, then all entries that contain a DestOutputProfile key shall have as the value of that key the same indirect object. -if.the.document.not.contain.outputintent.transparencygroup.shall.comtain.cs.key=If the document does not contain a PDF/A OutputIntent, then all Page objects that contain transparency shall include the Group key, and the attribute dictionary that forms the value of that Group key shall include a CS entry whose value shall be used as the default blending colour space. -illegal.capacity.1=Illegal Capacity: {1} -illegal.character.in.ascii85decode=Illegal character in ASCII85Decode. -illegal.character.in.asciihexdecode=Illegal character in ASCIIHexDecode. -illegal.length.in.ascii85decode=Illegal length in ASCII85Decode. -illegal.length.value=Illegal Length value. -illegal.load.1=Illegal Load: {1} -illegal.p.value=Illegal P value. -illegal.pages.tree=Illegal pages tree -illegal.paragraph.embedding.level.1=illegal paragraph embedding level: {1} -illegal.r.value=Illegal R value. -illegal.resources.tree=Illegal Resources Tree. -illegal.type.value.at.1.2=illegal type value at {1}: {2} -illegal.v.value=Illegal V value. -illegal.value.for.predictor.in.tiff.file=Illegal value for Predictor in TIFF file. -illegal.ve.value=Illegal VE value. -improperly.padded.base64.input=Improperly padded Base64 input. -in.a.page.label.the.page.numbers.must.be.greater.or.equal.to.1=In a page label the page numbers must be greater or equal to 1. -in.codabar.start.stop.characters.are.only.allowed.at.the.extremes=In codabar, start/stop characters are only allowed at the extremes. -incompatible.pdf.a.conformance.level=Incompatible PDF/A conformance level. -incomplete.palette=incomplete palette -inconsistent.mapping=Inconsistent mapping. -inconsistent.writers.are.you.mixing.two.documents=Inconsistent writers. Are you mixing two documents? -incorrect.segment.type.in.1=Incorrect segment type in {1} -infinite.table.loop=Infinite table loop; row content is larger than the page (for instance because you didn't scale an image). -inline.elements.with.role.null.are.not.allowed=The tagging mode markInlineElementsOnly is used. Inline elements with role 'null' are not allowed. -insertion.of.illegal.element.1=Insertion of illegal Element: {1} -inserttable.point.has.null.value=insertTable - point has null-value -inserttable.table.has.null.value=insertTable - table has null-value -inserttable.wrong.columnposition.1.of.location.max.eq.2=insertTable -- wrong columnposition({1}) of location; max ={2} -insufficient.data=Insufficient data. -insufficient.length=Insufficient length. -internal.inconsistence=Internal inconsistence. -inthashtableiterator=IntHashtableIterator -invalid.additional.action.type.1=Invalid additional action type: {1} -invalid.additional.action.type.1=Invalid additional action type: {1} -invalid.ai.length.1=Invalid AI length: ({1}) -invalid.border.style=Invalid border style. -invalid.character.in.base64.data=Invalid character in Base64 data. -invalid.code.encountered.while.decoding.2d.group.3.compressed.data=Invalid code encountered while decoding 2D group 3 compressed data. -invalid.code.encountered.while.decoding.2d.group.4.compressed.data=Invalid code encountered while decoding 2D group 4 compressed data. -invalid.code.encountered=Invalid code encountered. -invalid.code.type=Invalid code type. -invalid.codeword.size=Invalid codeword size. -invalid.color.type=Invalid color type. -invalid.cross.reference.entry.in.this.xref.subsection=Invalid cross-reference entry in this xref subsection -invalid.end.tag.1=Invalid end tag - {1} -invalid.generation.number=Invalid generation number. -invalid.http.response.1=Invalid HTTP response: {1} -invalid.icc.profile=Invalid ICC profile -invalid.index.1=Invalid index: {1} -invalid.listtype.value=Invalid listType value. -invalid.magic.value.for.bmp.file=Invalid magic value for BMP file. -invalid.named.action=Invalid named action. -invalid.object.number=Invalid object number. -invalid.page.additional.action.type.1=Invalid page additional action type: {1} -invalid.page.number.1=Invalid page number: {1} -invalid.run.direction.1=Invalid run direction: {1} -invalid.status.1=Invalid status: {1} -invalid.tsa.1.response.code.2=Invalid TSA '{1}' response, code {2} -invalid.type.was.passed.in.state.1=Invalid type was passed in state: {1} -invalid.use.of.a.pattern.a.template.was.expected=Invalid use of a pattern. A template was expected. -irregular.columns.are.not.supported.in.composite.mode=Irregular columns are not supported in composite mode. -it.is.not.possible.to.free.reader.in.merge.fields.mode=It is not possible to free reader in mergeFields mode. -java.awt.image.fetch.aborted.or.errored=java.awt.Image fetch aborted or errored -java.awt.image.interrupted.waiting.for.pixels=java.awt.Image Interrupted waiting for pixels! -jpeg2000.enumerated.colour.space.19.(CIEJab).shall.not.be.used=JPEG2000 enumerated colour space 19 (CIEJab) shall not be used. -keyword.encrypt.shall.not.be.used.in.the.trailer.dictionary=Keyword Encrypt shall not be used in the trailer dictionary. -lab.cs.black.point=The BlackPoint entry in Lab color space could be only an array of three numbers [XB YB ZB]. All three of these numbers shall be non-negative. Default value: [0.0 0.0 0.0]. -lab.cs.range=The Range entry in Lab color space could be only an array of four numbers [amin amax bmin bmax]. Default value: [-100 100 -100 100]. -lab.cs.white.point=The WhitePoint array (three numbers [XW YW ZW]) is required in Lab color space. The numbers XW and ZW shall be positive, and YW shall be 1.0. -last.linebreak.must.be.at.1=last linebreak must be at {1} -launch.sound.movie.resetform.importdata.and.javascript.actions.are.not.allowed=Launch, Sound, Movie, ResetForm, ImportData, Hide, SetOCGState, Rendition, Trans, GoTo3DView and JavaScript actions are not allowed. -layers.are.not.allowed=Layers are not allowed. -layout.out.of.bounds=Layout out of bounds. -line.iterator.out.of.bounds=line iterator out of bounds -linear.page.mode.can.only.be.called.with.a.single.parent=Linear page mode can only be called with a single parent. -lzwdecode.filter.is.not.permitted=LZWDecode filter is not permitted. -lzw.flavour.not.supported=LZW flavour not supported. -macrosegmentid.must.be.gt.eq.0=macroSegmentId must be >=0 -macrosegmentid.must.be.lt.macrosemgentcount=macroSegmentId must be < macroSemgentCount -macrosemgentcount.must.be.gt.0=macroSemgentCount must be > 0 -make.copy.of.catalog.dictionary.is.forbidden=Make copy of Catalog dictionary is forbidden. -mapping.code.should.be.1.or.two.bytes.and.not.1=Mapping code should be 1 or two bytes and not {1} -missing.end.tag=Missing end tag -missing.endcharmetrics.in.1=Missing EndCharMetrics in {1} -missing.endfontmetrics.in.1=Missing EndFontMetrics in {1} -missing.endkernpairs.in.1=Missing EndKernPairs in {1} -missing.startcharmetrics.in.1=Missing StartCharMetrics in {1} -missing.tag.s.for.ojpeg.compression=Missing tag(s) for OJPEG compression. -multicolumntext.has.no.columns=MultiColumnText has no columns -name.end.tag.out.of.place=Name end tag out of place. -named.action.type.1.not.allowed=Named action type {1} not allowed. -needappearances.flag.of.the.interactive.form.dictionary.shall.either.not.be.present.or.shall.be.false=NeedAppearances flag of the interactive form dictionary shall either not be present or shall be false. -nested.tags.are.not.allowed=Nested tags are not allowed. -no.compatible.encryption.found=No compatible encryption found -no.error.just.an.old.style.table=No error, just an old style table -no.font.is.defined=No font is defined. -no.glyphs.defined.for.type3.font=No glyphs defined for Type3 font -no.keys.other.than.UR3.and.DocMDP.shall.be.present.in.a.permissions.dictionary=No keys other than UR3 and DocMDP shall be present in a permissions dictionary. -no.structtreeroot.found=No StructTreeRoot found, this probably isn't a tagged PDF document! -no.valid.column.line.found=No valid column line found. -no.valid.encryption.mode=No valid encryption mode -not.a.placeable.windows.metafile=Not a placeable windows metafile -not.a.valid.jpeg2000.file=Not a valid Jpeg2000 file -not.a.valid.pfm.file=Not a valid PFM file. -not.a.valid.pkcs.7.object.not.a.sequence=Not a valid PKCS#7 object - not a sequence -not.a.valid.pkcs.7.object.not.signed.data=Not a valid PKCS#7 object - not signed data -not.all.annotations.could.be.added.to.the.document.the.document.doesn.t.have.enough.pages=Not all annotations could be added to the document (the document doesn't have enough pages). -not.colorized.typed3.fonts.only.accept.mask.images=Not colorized Typed3 fonts only accept mask images. -not.identity.crypt.filter.is.not.permitted=Not Identity Crypt filter is not permitted. -null.outpustream=null OutputStream -number.of.entries.in.this.xref.subsection.not.found=Number of entries in this xref subsection not found -object.number.of.the.first.object.in.this.xref.subsection.not.found=Object number of the first object in this xref subsection not found -ocsp.status.is.revoked=OCSP Status is revoked! -ocsp.status.is.unknown=OCSP Status is unknown! -only.bmp.can.be.wrapped.in.wmf=Only BMP can be wrapped in WMF. -only.bmp.png.wmf.gif.and.jpeg.images.are.supported.by.the.rtf.writer=Only BMP, PNG, WMF, GIF and JPEG images are supported by the RTF Writer -only.javascript.actions.are.allowed=Only JavaScript actions are allowed. -only.jpx.baseline.set.of.features.shall.be.used=Only JPX baseline set of features shall be used. -only.one.of.artbox.or.trimbox.can.exist.in.the.page=Only one of ArtBox or TrimBox can exist in the page. -only.pdfa.documents.can.be.added.in.PdfACopy=Only PDF/A documents can be added in PdfACopy. -only.pdfa.documents.can.be.opened.in.PdfAStamper=Only PDF/A documents can be opened in PdfAStamper. -only.pdfa.1.documents.can.be.opened.in.PdfAStamper=This instance of PdfAStamper is configured to process PDF/A-{1} documents. -only.pdflayer.is.accepted=Only PdfLayer is accepted. -only.rgb.gray.and.cmyk.are.supported.as.alternative.color.spaces=Only RGB, Gray and CMYK are supported as alternative color spaces. -open.actions.by.name.are.not.supported=Open actions by name are not supported. -operator.1.already.registered=Operator {1} already registered -optional.content.configuration.dictionary.shall.contain.name.entry=Optional content configuration dictionary shall contain Name entry. -order.array.shall.contain.references.to.all.ocgs=Order array shall contain references to all OCGs. -outputintent.shall.be.prtr.or.mntr=A PDF/A outputintent profile shall be an output profile (Device Class = “prtr”) or a monitor profile (Device Class = “mntr”). -outputintent.shall.have.colourspace.gray.rgb.or.cmyk=A PDF/A outputintent profile shall have a colour space of either “GRAY”, “RGB”, or “CMYK”. -outputintent.shall.have.gtspdfa1.and.destoutputintent=A PDF/A OutputIntent dictionary shall have GTS_PDFA1 as the value of its S key and a valid ICC profile stream as the value of its DestOutputProfile key. -outputintent.shall.not.be.updated=PDF/A OutputIntent shall not be updated. The original PDF could contain device dependent colors that need the current OutputIntent. -page.1.invalid.for.segment.2.starting.at.3=page {1} invalid for segment {2} starting at {3} -page.attribute.missing=Page attribute missing. -page.dictionary.shall.not.include.aa.entry=The page dictionary shall not include an AA entry. -page.dictionary.shall.not.include.pressteps.entry=The page dictionary shall not include a PresSteps entry. -page.not.found=Page not found. -page.reordering.requires.a.single.parent.in.the.page.tree.call.pdfwriter.setlinearmode.after.open=Page reordering requires a single parent in the page tree. Call PdfWriter.setLinearMode() after open. -page.reordering.requires.an.array.with.the.same.size.as.the.number.of.pages=Page reordering requires an array with the same size as the number of pages. -page.reordering.requires.no.page.repetition.page.1.is.repeated=Page reordering requires no page repetition. Page {1} is repeated. -page.reordering.requires.pages.between.1.and.1.found.2=Page reordering requires pages between 1 and {1}. Found {2}. -partial.form.flattening.is.not.supported.with.xfa.forms=Partial form flattening is not supported with XFA forms. -pdf.array.exceeds.length.set.by.PDFA1.standard=PDF array exceeds length set by the PDF/A1 standard: {1}. Maximum length is 8191. -pdf.array.is.out.of.bounds=PDF array is out of bounds. -pdf.dictionary.is.out.of.bounds=PDF dictionary is out of bounds. -pdf.header.not.found=PDF header signature not found. -pdf.name.is.too.long=PDF name is too long. -pdf.startxref.not.found=PDF startxref not found. -pdf.string.is.too.long=PDF string is too long. -pdfpcells.can.t.have.a.rowspan.gt.1=PdfPCells can't have a rowspan > 1 -pdfreader.not.opened.with.owner.password=PdfReader not opened with owner password -pdfx.conformance.can.only.be.set.before.opening.the.document=PDFX conformance can only be set before opening the document. -pdfx.conformance.cannot.be.set.for.PdfAStamperImp.instance=PDFX conformance cannot be set for PdfAStamperImp instance. -pdfx.conformance.cannot.be.set.for.PdfAWriter.instance=PDFX conformance cannot be set for PdfAWriter instance. -planar.images.are.not.supported=Planar images are not supported. -png.filter.unknown=PNG filter unknown. -postscript.xobjects.are.not.allowed=PostScript XObjects are not allowed. -preclose.must.be.called.first=preClose() must be called first. -premature.end.in.1=Premature end in {1} -premature.end.of.file=Premature end of file. -premature.eof.while.reading.jpg=Premature EOF while reading JPG. -real.number.is.out.of.range=Real number is out of range. -rebuild.failed.1.original.message.2=Rebuild failed: {1}; Original message: {2} -rectanglereadonly.this.rectangle.is.read.only=RectangleReadOnly: this Rectangle is read only. -reference.pointing.to.reference=Reference pointing to reference. -referring.to.widht.height.of.page.we.havent.seen.yet.1=referring to widht/height of page we havent seen yet? {1} -remove.not.supported=remove() not supported. -reserve.incorrect.column.size=reserve - incorrect column/size -resources.do.not.contain.extgstate.entry.unable.to.process.operator.1=Resources do not contain ExtGState entry. Unable to process operator {1} -root.element.is.not.bookmark.1=Root element is not Bookmark: {1} -root.element.is.not.destination=Root element is not Destination. -root.element.is.not.xfdf.1=Root element is not xfdf: {1} -rotation.must.be.a.multiple.of.90=Rotation must be a multiple of 90. -row.coordinate.of.location.must.be.gt.eq.0=row coordinate of location must be >= 0 -scanline.must.begin.with.eol.code.word=Scanline must begin with EOL code word. -separations.patterns.and.shadings.are.not.allowed.in.mk.dictionary=Separations, patterns and shadings are not allowed in MK dictionary. -setelement.position.already.taken=setElement - position already taken -signature.references.dictionary.shall.not.contain.digestlocation.digestmethod.digestvalue=The Signature References dictionary shall not contain the keys DigestLocation, DigestMethod and DigestValue. -start.marker.missing.in.1=Start marker missing in {1} -startxref.is.not.followed.by.a.number=startxref is not followed by a number. -startxref.not.found=startxref not found. -stdcf.not.found.encryption=/StdCF not found (encryption) -stream.could.not.be.compressed.filter.is.not.a.name.or.array=Stream could not be compressed: filter is not a name or array. -stream.object.dictionary.shall.not.contain.the.f.ffilter.or.fdecodeparams.keys=Stream object dictionary shall not contain the F, FFilter or FDecodeParams keys. -structparent.not.found=StructParent not found. -support.only.sha1.hash.algorithm=Support only SHA1 hash algorithm. -support.only.rsa.and.dsa.algorithms=Support only RSA and DSA algorithms. -invalid.structparent=Invalid StructParent. -table.1.does.not.exist.in.2=Table '{1}' does not exist in {2} -tag.1.not.allowed=Tag {1} not allowed. -tagging.must.be.set.before.opening.the.document=Tagging must be set before opening the document. -template.with.tagged.could.not.be.used.more.than.once=Template with tagged content could not be used more than once. -text.annotations.should.set.the.nozoom.and.norotate.flag.bits.of.the.f.key.to.1=Text annotations should set the NoZoom and NoRotate flag bits of the F key to 1. -text.cannot.be.null=Text cannot be null. -the.array.must.contain.string.or.pdfannotation=The array must contain String or PdfAnnotation. -the.artifact.type.1.is.invalid=The artifact type '{1}' is invalid. -the.as.key.shall.not.appear.in.any.optional.content.configuration.dictionary=The AS key shall not appear in any optional content configuration dictionary. -the.bit-depth.of.the.jpeg2000.data.shall.have.a.value.in.the.range.1to38=The bit-depth of the JPEG2000 data shall have a value in the range 1 to 38. -the.byte.array.is.not.a.recognized.imageformat=The byte array is not a recognized imageformat. -the.ccitt.compression.type.must.be.ccittg4.ccittg3.1d.or.ccittg3.2d=The CCITT compression type must be CCITTG4, CCITTG3_1D or CCITTG3_2D -the.char.1.doesn.t.belong.in.this.type3.font=The char {1} doesn't belong in this Type3 font -the.char.1.is.not.defined.in.a.type3.font=The char {1} is not defined in a Type3 font -the.character.1.is.illegal.in.codabar=The character '{1}' is illegal in codabar. -the.character.1.is.illegal.in.code.39.extended=The character '{1}' is illegal in code 39 extended. -the.character.1.is.illegal.in.code.39=The character '{1}' is illegal in code 39. -the.cmap.1.does.not.exist.as.a.resource=The cmap {1} does not exist as a resource. -the.cmap.1.was.not.found=The Cmap {1} was not found. -the.compression.1.is.not.supported=The compression {1} is not supported. -the.document.catalog.dictionary.shall.contain.metadata=The document catalog dictionary of a PDF/A conforming file shall contain the Metadata key -the.document.catalog.dictionary.shall.not.include.an.aa.entry=The document catalog dictionary shall not include an AA entry. -the.document.catalog.dictionary.shall.not.include.alternatepresentation.names.entry=The document catalog dictionary shall not contains an AlternatePresentation entry in the Names entry. -the.document.catalog.dictionary.shall.not.include.a.needrendering.entry=The document catalog dictionary shall not include NeedRendering entry. -the.document.catalog.dictionary.shall.not.include.a.requirements.entry=The document catalog dictionary shall not include Requirements entry. -the.document.catalog.dictionary.shall.not.include.acroform.xfa.entry=The document catalog dictionary shall not contains a XFA entry in the AcroForm entry. -the.document.catalog.dictionary.shall.not.include.embeddedfiles.names.entry=The document catalog dictionary shall not contain an EmbeddedFiles entry in the Names entry. -the.document.does.not.contain.parenttree=The document does not contain ParentTree. -the.document.has.been.closed.you.can.t.add.any.elements=The document has been closed. You can't add any Elements. -the.document.has.no.catalog.object=The document has no catalog object (meaning: it's an invalid PDF). -the.document.has.no.page.root=The document has no page root (meaning: it's an invalid PDF). -the.document.has.no.pages=The document has no pages. -the.document.is.not.open.yet.you.can.only.add.meta.information=The document is not open yet; you can only add Meta information. -the.document.is.not.open=The document is not open. -the.document.is.open.you.can.only.add.elements.with.content=The document is open; you can only add Elements with content. -the.document.must.be.open.to.import.rtf.documents=The document must be open to import RTF documents. -the.document.must.be.open.to.import.rtf.fragments=The document must be open to import RTF fragments. -the.document.was.reused=The document was reused. -the.export.and.the.display.array.must.have.the.same.size=The export and the display array must have the same size. -the.f.keys.print.flag.bit.shall.be.set.to.1.and.its.hidden.invisible.and.noview.flag.bits.shall.be.set.to.0=The F key's Print flag bit shall be set to 1 and its Hidden, Invisible and NoView flag bits shall be set to 0. -the.f.keys.print.flag.bit.shall.be.set.to.1.and.its.hidden.invisible.noview.and.togglenoview.flag.bits.shall.be.set.to.0=The F key's Print flag bit shall be set to 1 and its Hidden, Invisible, NoView and ToggleNoView flag bits shall be set to 0. -the.field.1.already.exists=The field {1} already exists. -the.field.1.does.not.exist=The field {1} does not exist. -the.field.1.is.not.a.signature.field=The field {1} is not a signature field. -the.file.does.not.contain.any.valid.image=The file does not contain any valid image. -the.filter.1.is.not.supported=The filter {1} is not supported. -the.font.index.for.1.must.be.between.0.and.2.it.was.3=The font index for {1} must be between 0 and {2}. It was {3}. -the.font.index.for.1.must.be.positive=The font index for {1} must be positive. -the.image.mask.is.not.a.mask.did.you.do.makemask=The image mask is not a mask. Did you do makeMask()? -the.image.must.have.absolute.positioning=The image must have absolute positioning. -the.key.1.didn.t.reserve.space.in.preclose=The key {1} didn't reserve space in preClose(). -the.key.1.is.too.big.is.2.reserved.3=The key {1} is too big. Is {2}, reserved {3} -the.layer.1.already.has.a.parent=The layer '{1}' already has a parent. -the.matrix.size.must.be.6=The matrix size must be 6. -the.name.1.is.too.long.2.characters=The name '{1}' is too long ({2} characters). -the.new.size.must.be.positive.and.lt.eq.of.the.current.size=The new size must be positive and <= of the current size -the.number.of.booleans.in.this.array.doesn.t.correspond.with.the.number.of.fields=The number of booleans in this array doesn't correspond with the number of fields. -the.number.of.columns.in.pdfptable.constructor.must.be.greater.than.zero=The number of columns in PdfPTable constructor must be greater than zero. -the.number.of.colour.channels.in.the.jpeg2000.data.shall.be.123=The number of colour channels in the JPEG2000 data shall be 1, 2 or 3. -the.original.document.was.reused.read.it.again.from.file=The original document was reused. Read it again from file. -the.page.less.3.units.nor.greater.14400.in.either.direction=The size of any of the page boundaries shall not be less than 3 units in either direction, nor shall it be greater than 14 400 units in either direction. -the.page.number.must.be.gt.eq.1=The page number must be >= 1. -the.page.size.must.be.smaller.than.14400.by.14400.its.1.by.2=The page size must be smaller than 14400 by 14400. It's {1} by {2}. -the.parent.has.already.another.function=The parent has already another function. -the.photometric.1.is.not.supported=The photometric {1} is not supported. -the.resource.cjkencodings.properties.does.not.contain.the.encoding.1=The resource cjkencodings.properties does not contain the encoding {1} -the.smask.key.is.not.allowed.in.extgstate=The SMask key is not allowed in ExtGState. -the.smask.key.is.not.allowed.in.images=The /SMask key is not allowed in images. -the.spot.color.must.be.the.same.only.the.tint.can.vary=The spot color must be the same, only the tint can vary. -the.stack.is.empty=The stack is empty. -the.structure.has.kids=The structure has kids. -the.table.width.must.be.greater.than.zero=The table width must be greater than zero. -the.template.can.not.be.null=The template can not be null. -the.text.is.too.big=The text is too big. -the.text.length.must.be.even=The text length must be even. -the.two.barcodes.must.be.composed.externally=The two barcodes must be composed externally. -the.update.dictionary.has.less.keys.than.required=The update dictionary has less keys than required. -the.url.of.the.image.is.missing=The URL of the image is missing. -the.value.has.to.be.true.of.false.instead.of.1=The value has to be 'true' of 'false', instead of '{1}'. -the.value.of.interpolate.key.shall.not.be.true=The value of Interpolate key shall not be true. -the.value.of.the.meth.entry.in.colr.box.shall.be.123=The value of the METH entry in 'colr' box shall be 1, 2 or 3. -the.width.cannot.be.set=The width cannot be set. -the.widths.array.in.pdfptable.constructor.can.not.be.null=The widths array in PdfPTable constructor can not be null. -the.widths.array.in.pdfptable.constructor.can.not.have.zero.length=The widths array in PdfPTable constructor can not have zero length. -the.writer.in.pdfcontentbyte.is.null=The writer in PdfContentByte is null. -there.are.illegal.characters.for.barcode.128.in.1=There are illegal characters for barcode 128 in '{1}'. -there.are.not.enough.imported.pages.for.copied.fields=There are not enough imported pages for copied fields. Please use addDocument or copy enough pages before. -this.acrofields.instance.is.read.only=This AcroFields instance is read-only. -this.image.can.not.be.an.image.mask=This image can not be an image mask. -this.largeelement.has.already.been.added.to.the.document=This LargeElement has already been added to the Document. -this.page.cannot.be.replaced.new.content.was.already.added=This page cannot be replaced: new content was already added -this.pkcs.7.object.has.multiple.signerinfos.only.one.is.supported.at.this.time=This PKCS#7 object has multiple SignerInfos - only one is supported at this time -tiff.5.0.style.lzw.codes.are.not.supported=TIFF 5.0-style LZW codes are not supported. -tiff.fill.order.tag.must.be.either.1.or.2=TIFF_FILL_ORDER tag must be either 1 or 2. -tiles.are.not.supported=Tiles are not supported. -title.cannot.be.null=Title cannot be null. -token.obj.expected=Token 'obj' expected. -too.many.indirect.objects=Too many indirect objects. -trailer.not.found=trailer not found. -trailer.prev.entry.points.to.its.own.cross.reference.section=Trailer /Prev entry points to its own cross-reference section. -transparency.is.not.allowed.ca.eq.1=Transparency is not allowed: /ca = {1} -transparency.length.must.be.equal.to.2.with.ccitt.images=Transparency length must be equal to 2 with CCITT images -transparency.length.must.be.equal.to.componentes.2=Transparency length must be equal to (componentes * 2) -trying.to.create.a.table.without.rows=Trying to create a table without rows. -tsa.1.failed.to.return.time.stamp.token.2=TSA '{1}' failed to return time stamp token: {2} -two.byte.arrays.are.needed.if.the.type1.font.is.embedded=Two byte arrays are needed if the Type1 font is embedded. -type3.font.used.with.the.wrong.pdfwriter=Type3 font used with the wrong PdfWriter -types.is.null=types is null -unbalanced.begin.end.marked.content.operators=Unbalanced begin/end marked content operators. -unbalanced.begin.end.text.operators=Unbalanced begin/end text operators. -path.construction.operator.inside.text.object=Path construction or drawing operators aren't allowed inside a text object. -unbalanced.layer.operators=Unbalanced layer operators. -unbalanced.marked.content.operators=Unbalanced marked content operators. -unbalanced.save.restore.state.operators=Unbalanced save/restore state operators. -unexpected.end.of.file=Unexpected end of file. -unexpected.eof=Unexpected EOF -unexpected.gt.gt=Unexpected '>>' -unexpected.close.bracket=Unexpected ']' -unknown.color.format.must.be.rgb.or.rrggbb=Unknown color format. Must be #RGB or #RRGGBB -unknown.encryption.type.r.eq.1=Unknown encryption type R = {1} -unknown.encryption.type.v.eq.1=Unknown encryption type V = {1} -unknown.filter.1=Unknown filter: {1} -unknown.hash.algorithm.1=Unknown Hash Algorithm {1} -unknown.image.format={1} is not a recognized imageformat. -unknown.key.algorithm.1=Unknown Key Algorithm {1} -unknown.object.at.k.1=Unknown object at /K {1} -unknown.structure.element.role.1=Unknown structure element role: {1}. -unknown=unknown -unsupported.box.size.eq.eq.0=Unsupported box size == 0 -unsupported.in.this.context.use.pdfstamper.addannotation=Unsupported in this context. Use PdfStamper.addAnnotation() -use.pdfstamper.getundercontent.or.pdfstamper.getovercontent=Use PdfStamper.getUnderContent() or PdfStamper.getOverContent() -use.pdfstamper.setthumbnail=Use PdfStamper.setThumbnail(). -use.setpageaction.pdfname.actiontype.pdfaction.action.int.page=Use setPageAction(PdfName actionType, PdfAction action, int page) -userunit.should.be.a.value.between.1.and.75000=UserUnit should be a value between 1 and 75000. -value.of.name.entry.shall.be.unique.amongst.all.optional.content.configuration.dictionaries=Value of Name entry shall be unique amongst all optional content configuration dictionaries -verification.already.output=Verification already output -verticaltext.go.with.simulate.eq.eq.false.and.text.eq.eq.null=VerticalText.go with simulate==false and text==null. -while.removing.wmf.placeable.header=while removing wmf placeable header -widget.annotation.dictionary.or.field.dictionary.shall.not.include.a.or.aa.entry=Widget annotation dictionary or Field dictionary shall not include an A or AA entry. -writelength.can.only.be.called.after.output.of.the.stream.body=writeLength() can only be called after output of the stream body. -writelength.can.only.be.called.in.a.contructed.pdfstream.inputstream.pdfwriter=writeLength() can only be called in a contructed PdfStream(InputStream,PdfWriter). -wrong.number.of.columns=Wrong number of columns. -xmllocator.cannot.be.null=XmlLocator cannot be null, see XmlSignatureAppearance. -XObject.1.is.not.a.stream=XObject {1} is not a stream. -xref.subsection.not.found=xref subsection not found -xstep.or.ystep.can.not.be.zero=XStep or YStep can not be ZERO. -you.can.only.add.a.writer.to.a.pdfdocument.once=You can only add a writer to a PdfDocument once. -you.can.only.add.cells.to.rows.no.objects.of.type.1=You can only add cells to rows, no objects of type {1} -you.can.only.add.objects.that.implement.the.element.interface=You can only add objects that implement the Element interface. -you.can.t.add.a.1.to.a.section=You can't add a {1} to a Section. -you.can.t.add.an.element.of.type.1.to.a.simplecell=You can't add an element of type {1} to a SimpleCell. -you.can.t.add.cells.to.a.table.directly.add.them.to.a.row.first=You can't add cells to a table directly, add them to a row first. -you.can.t.add.listitems.rows.or.cells.to.a.cell=You can't add listitems, rows or cells to a cell. -you.can.t.add.one.row.to.another.row=You can't add one row to another row. -you.can.t.have.1.pages.on.one.page.minimum.2.maximum.8=You can't have {1} pages on one page (minimum 2; maximum 8). -you.can.t.set.the.full.compression.if.the.document.is.already.open=You can't set the full compression if the document is already open. -you.can.t.set.the.initial.leading.if.the.document.is.already.open=You can't set the initial leading if the document is already open. -you.can.t.split.this.document.at.page.1.there.is.no.such.page=You can't split this document at page {1}; there is no such page. -you.can.t.translate.a.negative.number.into.an.alphabetical.value=You can't translate a negative number into an alphabetical value. -you.have.to.consolidate.the.named.destinations.of.your.reader=You have to consolidate the named destinations of your reader. -you.have.to.define.a.boolean.array.for.this.collection.sort.dictionary=You have to define a boolean array for this collection sort dictionary. -you.have.used.the.wrong.constructor.for.this.fieldpositioningevents.class=You have used the wrong constructor for this FieldPositioningEvents class. -you.must.set.a.value.before.adding.a.prefix=You must set a value before adding a prefix. -you.need.a.single.boolean.for.this.collection.sort.dictionary=You need a single boolean for this collection sort dictionary. -the.decode.parameter.type.1.is.not.supported=The decode parameter type {1} is not supported. -the.color.space.1.is.not.supported=The color space {1} is not supported. -the.color.depth.1.is.not.supported=The color depth {1} is not supported. -N.value.1.is.not.supported=N value {1} is not supported -Decoding.can't.happen.on.this.type.of.stream.(.1.)=Decoding can't happen on this type of stream ({1}) -zugferd.xmp.schema.shall.contain.attachment.name=ZUGFeRD XMP schema shall contain attachment name. diff --git a/target/classes/com/itextpdf/text/l10n/error/nl.lng b/target/classes/com/itextpdf/text/l10n/error/nl.lng deleted file mode 100644 index 45d94387..00000000 --- a/target/classes/com/itextpdf/text/l10n/error/nl.lng +++ /dev/null @@ -1,567 +0,0 @@ -# Nederlandse vertaling van de foutboodschappen -1.2.does.not.contain.an.usable.cmap={1} {2} bevat geen bruikbare cmap. -1.2.is.not.a.ttf.font.file={1} {2} is geen TTF font file. -1.at.file.pointer.2={1} bij file pointer {2} -1.bit.samples.are.not.supported.for.horizontal.differencing.predictor={1}-bit samples worden niet ondersteund voor een horizontaal differencierende Predictor. -1.cannot.be.embedded.due.to.licensing.restrictions={1} kan niet ingebed worden omwille van licentie restricties. -1.component.s.is.not.supported=geen ondersteuning voor {1} component(en) -1.corrupted.jfif.marker={1} is een corrupte JFIF marker. -1.is.an.unknown.graphics.state.dictionary={1} is een onbekende graphics state dictionary -1.is.an.unknown.image.format={1} is een onbekend Image formaat. -1.is.not.a.true.type.file={1} is geen true type file. -1.is.not.a.ttf.otf.or.ttc.font.file={1} is geen TTF, OTF of TTC font file. -1.is.not.a.valid.jpeg.file={1} is geen geldig JPEG bestand. -1.is.not.a.valid.name.for.checkbox.appearance={1} is geen geldige naam voor een checkbox appearance (moet Off of Yes zijn) -1.is.not.a.valid.number.2={1} is geen geldig nummer - {2} -1.is.not.a.valid.page.size.format.2={1} is geen geldig pagina formaat: {2} -1.is.not.a.valid.placeable.windows.metafile={1} is geen geldige plaatsbaar WMF bestand. -1.is.not.a.valid.ttc.file={1} is geen geldige TTC file. -1.is.not.a.valid.ttf.file={1} is geen geldig TTF bestand. -1.is.not.a.valid.ttf.or.otf.file={1} is geen geldige TTF of OTF file. -1.is.not.an.acceptable.value.for.the.field.2={1} is geen geldige waarde voor het veld {2} -1.is.not.an.afm.or.pfm.font.file={1} is geen AFM of PFM font file. -1.method.can.be.only.used.in.mergeFields.mode.please.use.addDocument={1} methode kan alleen gebruikt worden in mergeFields mode, gebruik addDocument. -1.method.cannot.be.used.in.mergeFields.mode.please.use.addDocument={1} method kan niet gebruikt worden in mergeFields mode, gebruikt addDocument. -1.must.have.8.bits.per.component={1} moet 8 bits per component bevatten. -1.near.line.2.column.3={1} in lijn {2}, kolom {3} -1.not.found.as.file.or.resource={1} niet gevonden als bron of bronbestand. -1.not.found.as.resource={1} niet gevonden als een bron(bestand). -1.unsupported.jpeg.marker.2={1}: niet ondersteunde JPEG marker: {2} -1.value.of.intent.key.is.not.allowed={1} waarde van Intent sleutel is niet toegelaten. -1.value.of.ri.key.is.not.allowed={1} waarde van RI sleutel is niet toegelaten. -a.form.xobject.dictionary.shall.not.contain.ps.key=Een form XObject dictionary mag geen PS sleutel bevatten. -a.form.xobject.dictionary.shall.not.contain.opi.key=Een form XObject dictionary mag geen OPI sleutel bevatten. -a.group.object.with.an.s.key.with.a.value.of.transparency.shall.not.be.included.in.a.form.xobject=Een Group object met een S sleutel met een Transparency waarde mag niet in een form XOBject zitten. -a.pattern.can.not.be.used.as.a.template.to.create.an.image=Een patroon kan niet gebruikt worden als template om een afbeelding te maken. -a.pdfa.file.may.have.only.one.pdfa.outputintent=Een PDF/A conform document mag slechts 1 PDF/A OutputIntent bevatten. -a.pdfx.conforming.document.cannot.be.encrypted=Een PDF/X document mag niet versleuteld worden. -a.signature.image.should.be.present.when.rendering.mode.is.graphic.only=Een signature image is vereist als de rendering mode graphic only is. -a.signature.image.should.be.present.when.rendering.mode.is.graphic.and.description=A signature image is vereist als rendering mode graphic and description. -a.string.1.was.passed.in.state.only.on.off.and.toggle.are.allowed=Een string '{1}' werd gebruikt als status. Alleen 'ON', 'OFF' en 'Toggle' zijn toegelaten. -a.tab.position.may.not.be.lower.than.0.yours.is.1=Een tab positie mag niet kleiner zijn dan 0; jouw tab positie is {1} -a.table.should.have.at.least.1.column=Een tabel moet uit ten minste 1 kolom bestaan. -a.tiling.or.shading.pattern.cannot.be.used.as.a.color.space.in.a.shading.pattern=Een tiling of shading pattern kan niet gebruikt worden als een color space in een shading pattern -a.title.is.not.a.layer=Een titel is geen layer -addcell.cell.has.null.value=addCell - cell bevat een null-waarde -addcell.error.in.reserve=addCell - fout in reserve -addcell.illegal.column.argument=addCell - ongeldig kolom argument -addcell.null.argument=addCell - argument null -addcell.only.cells.or.tables.allowed=addCell - alleen cellen en tabellen zijn toegelaten -addcell.point.has.null.value=addCell - point bevat een null-waarde -adding.a.cell.at.the.location.1.2.with.a.colspan.of.3.and.a.rowspan.of.4.is.illegal.beyond.boundaries.overlapping=Een cel toevoegen op positie ({1},{2}) met colspan {3} en rowspan {4} is niet mogelijk (overlapt of gaat buiten bereik). -add.image.exception=Exception bij toevoegen van afbeelding {1} -afrelationship.value.shall.be.alternative=AFRelationship waarde moet Alternative zijn. -ai.not.found.1=AI niet gevonden: ({1}) -ai.too.short.1=AI niet lang genoeg: ({1}) -all.colour.channels.in.the.jpeg2000.data.shall.have.the.same.bit-depth=Alle colour channels in de JPEG2000 data moeten dezelfde bit-depth hebben. -all.fill.bits.preceding.eol.code.must.be.0=Alle fill bits voorafgaand aan EOL code moeten 0 zijn. -all.halftones.shall.have.halftonetype.1.or.5=Alle halftones in een conform PDF/A document moeten waarde 1 of 5 hebben voor de HalftoneType sleutel. -all.the.fonts.must.be.embedded.this.one.isn.t.1=Alle fonts moeten ingebed worden. Deze font is niet ingebed: {1} -already.attempted.a.read.on.this.jbig2.file=read() was al geprobeerd op dit Jbig2 bestand -alt.entry.should.specify.alternate.description.for.1.element=Alt veld moet een alternatieve beschrijving voor {1} element specifi�ren. -an.annotation.dictionary.shall.contain.the.f.key=Een annotation dictionary moet de F sleutel bevatten. -an.annotation.dictionary.shall.not.contain.the.ca.key.with.a.value.other.than.1=Een annotation dictionary mag geen CA sleutel bevatten met een waarde verschillend van 1.0. -an.appearance.was.requested.without.a.variable.text.field=Er werd een appearance gevraagd zonder variabel text field. -an.extgstate.dictionary.shall.not.contain.the.tr.key=Een ExtGState dictionary mag geen TR sleutel bevatten. -an.extgstate.dictionary.shall.not.contain.the.htp.key=Een ExtGState dictionary mag geen HTP sleutel bevatten. -an.extgstate.dictionary.shall.not.contain.the.halftonename.key=Een ExtGState dictionary mag geen HalftoneName sleutel bevatten. -an.extgstate.dictionary.shall.contain.the.halftonetype.key.of.value.1.or.5=Een ExtGState dictionary moet de HalftoneType sleutel met waarde 1 of 5 bevatten. -an.extgstate.dictionary.shall.not.contain.the.TR2.key.with.a.value.other.than.default=Een ExtGState dictionary mag geen TR2 sleutel bevatten met een waarde verschillend van Default. -an.image.dictionary.shall.not.contain.alternates.key=Een Image dictionary mag geen Alternates sleutel bevatten. -an.image.dictionary.shall.not.contain.opi.key=Een Image dictionary mag geen OPI sleutel bevatten. -an.image.mask.cannot.contain.another.image.mask=Een image mask mag geen ander image mask bevatten. -an.uncolored.pattern.was.expected=Er werd een ongekleurd patroon verwacht. -an.uncolored.tile.pattern.can.not.have.another.pattern.or.shading.as.color=Een ongekleurd tile pattern kan geen ander pattern of shading als color gebruiken. -annotation.of.type.1.should.have.contents.key=Annotation van type {1} moet een Contents sleutel hebben. -annotation.type.1.not.allowed=Annotation type {1} niet toegelaten. -appearance.dictionary.of.widget.subtype.and.btn.field.type.shall.contain.only.the.n.key.with.dictionary.value=Appearance dictionary van subtype Widget en field type Btn mag enkel de N sleutel met als waarde een Dictionaty bevatten -appearance.dictionary.shall.contain.only.the.n.key.with.stream.value=Appearance dictionary mag enkel de N sleutel met een stream waarde bevatten. -append.mode.does.not.support.changing.the.encryption.status=Append mode laat geen wijziging toe van de encryptie status. -append.mode.requires.a.document.without.errors.even.if.recovery.was.possible=Append mode vergt een document zonder fouten, zelfs als recovery mogelijk was. -authenticated.attribute.is.missing.the.digest=Er ontbreekt een geauthenticeerd attribuut in de digest. -b.type.before.end.of.paragraph.at.index.1=B type voor het einde van een paragraaf op index: {1} -bad.certificate.and.key=Verkeerd certificaat en sleutel. -bad.endianness.tag.not.0x4949.or.0x4d4d=Verkeerde endianness tag (niet 0x4949 of 0x4d4d). -bad.linebreak.1.at.index.2=slechte lijnafbreking: {1} op index: {2} -bad.magic.number.should.be.42=Verkeerd 'magic number', zou 42 moeten zijn. -bad.user.password=Verkeerd user password -badly.formated.directory.string=Slecht geformateerde directory string -badly.formed.ucc.string.1=Slecht gevormde UCC string: {1} -base64.input.not.properly.padded=Base64 input is niet correct 'gepad'. -bbox.must.be.a.4.element.array=BBox moet een array met 4 elementen zijn. -bits.per.component.must.be.1.2.4.or.8=Bits-per-component moet 1, 2, 4, of 8 zijn. -bits.per.sample.1.is.not.supported=Bits per sample {1} wordt niet ondersteund. -blend.mode.1.not.allowed=Blend mode {1} niet toegelaten. -bookmark.end.tag.out.of.place=Bookmark end tag op verkeerde plaats. -both.colors.must.be.of.the.same.type=Beide kleuren moeten van het zelfde type zijn. -buffersize.1=bufferlengte {1} -can.only.push.back.one.byte=Werkt enkel met ��n byte ineens. -can.t.add.1.to.multicolumntext.with.complex.columns={1} kan niet toegevoegd worden aan een MultiColumnText met complexe kolommen -can.t.decode.pkcs7signeddata.object=Kan het PKCS7SignedData object niet decoderen -can.t.find.page.size.1=Kan de pagina afmetingen niet vinden {1} -can.t.find.signing.certificate.with.serial.1=Kan het signing certificate met serienummer {1} niet vinden -can.t.read.document.structure=Kan de documentstructuur niet lezen -cannot.change.destination.of.external.link=De destination van een external link kan niet gewijzigd worden -cannot.handle.box.sizes.higher.than.2.32=Een box size groter dan 2^32 is niet mogelijk -cf.not.found.encryption=/CF niet gevonden (encryption) -codabar.must.have.at.least.a.start.and.stop.character=Codabar moet ten minste een start en stop karakter bevatten. -codabar.must.have.one.of.abcd.as.start.stop.character=Codabar moet een van 'ABCD' als start/stop karakter hebben. -color.value.outside.range.0.255=Color value buiten bereik 0-255. -color.not.found=Kleur '{1}' niet gevonden. -colors.are.not.allowed.in.uncolored.tile.patterns=Kleuren zijn niet toegelaten in ongekleurde patronen. -colorspace.calrgb.is.not.allowed=Colorspace CalRGB is niet toegelaten. -colorspace.rgb.is.not.allowed=Colorspace RGB is niet toegelaten. -column.coordinate.of.location.must.be.gt.eq.0.and.lt.nr.of.columns=Kolom coordinaat moet groter dan of gelijk zijn aan 0 en kleiner dan het aantal kolommen -columntext.go.with.simulate.eq.eq.false.and.text.eq.eq.null=ColumnText.go met simulate==false en text==null. -components.must.be.1.3.or.4=Componenten moeten 1, 3, of 4 zijn. -compression.jpeg.is.only.supported.with.a.single.strip.this.image.has.1.strips=Compressie JPEG wordt enkel ondersteund voor ��n enkele strip. Jouw JPEG heeft {1} strips. -conflict.in.classmap=Conflict in ClassMap {1}. -conflict.in.rolemap=Conflict in RoleMap {1}. -content.can.not.be.added.to.a.pdfimportedpage=Er kan geen extra content toegevoegd worden aan een PdfImportedPage. -content.was.already.written.to.the.output=Er werd al inhoud naar de output gestuurd. -corrupted.png.file=Corrupt PNG bestand. -could.not.find.web.browser=Kon geen webbrowser vinden. -could.not.flatten.file.untagged.annotations.found=Kan het document niet flattenen: ongetagde annotations gevonden! -count.of.referred.to.segments.had.bad.value.in.header.for.segment.1.starting.at.2=Een aantal referred-to segmenten heeft een ongeldige waarde in de header voor segment {1} beginnend bij {2} -creating.page.stamp.not.allowed.for.tagged.reader=PageStamp is niet toegelaten voor tagged reader. -crypt.filter.is.not.permitted.inline.image=Crypt filter is niet toegelaten voor inline images. -defaultcryptfilter.not.found.encryption=/DefaultCryptFilter niet gevonden (encryption) -deprecated.setstate.and.noop.actions.are.not.allowed=Deprecated set-state en no-op actions zijn niet toegelaten. -destination.end.tag.out.of.place=Bestemming end tag op verkeerde plaats. -destoutputprofile.in.the.pdfa1.outputintent.dictionary.shall.be.rgb=DestOutputProfile in de PDF/A-1 OutputIntent dictionary moet RGB zijn. -devicecmyk.may.be.used.only.if.the.file.has.a.cmyk.pdfa.outputIntent=DeviceCMYK mag enkel gebruikt worden als het document een PDF/A OutputIntent heeft die een CMYK colour space gebruikt. -devicecmyk.shall.only.be.used.if.defaultcmyk.pdfa.or.outputintent=DeviceCMYK mag enkel gebruikt worden als een device-onafhankelijke DefaultCMYK colour space ingesteld is, of als een DeviceN-gebaseerde DefaultCMYK colour space ingesteld is wanneer de DeviceCMYK colour space gebruikt wordt of het document een PDF/A OutputIntent heeft dat een CMYK destination profiel bevat. -devicegray.may.be.used.only.if.the.file.has.a.rgb.or.cmyk.pdfa.outputIntent=DeviceGray mag enkel gebruikt worden als het document een PDF/A OutputIntent heeft die een RGB of CMYK colour space gebruikt. -devicegray.shall.only.be.used.if.defaultgray.pdfa.or.outputintent=DeviceGray mag enkel gebruikt worden als een device-onafhankelijke DefaultGray colour space ingesteld is wanneer de DeviceGray colour space gebruikt wordt, of als een PDF/A OutputIntent aanwezig is. -devicergb.and.devicecmyk.colorspaces.cannot.be.used.both.in.one.file=DeviceRGB en DeviceCMYK colorspaces mogen niet samen in 1 file gebruikt worden. -devicergb.may.be.used.only.if.the.file.has.a.rgb.pdfa.outputIntent=DeviceRGB mag enkel gebruikt worden als het document een PDF/A OutputIntent heeft die een RGB colour space gebruikt. -devicergb.shall.only.be.used.if.defaultrgb.pdfa.or.outputintent=DeviceRGB mag enkel gebruikt worden als een device-onafhankelijke DefaultRGB colour space ingesteld is wanneer de DeviceRGB colour space gebruikt wordt, of als het document een PDF/A OutputIntent heeft die een RGB destination profiel bevat. -devicen.color.shall.have.the.same.number.of.colorants.as.the.destination.DeviceN.color.space=DeviceN kleur moet hetzelfde aantal colorants hebben als de destination color space -devicen.component.names.shall.be.different=DeviceN componentnamen moeten onderling allemaal verschillend zijn, op de naam None na -dictionary.key.1.is.not.a.name=De sleutel van de Dictionary {1} is geen naam. -dictionary.key.is.not.a.name=De sleutel voor de Dictionary is geen naam. -different.pdf.a.version=Verschillende PDF/A versie. -dimensions.of.a.cell.are.attributed.automagically.see.the.faq=De afmetingen van een Cell worden automatisch toegekend. Zie de FAQ. -dimensions.of.a.cell.can.t.be.calculated.see.the.faq=De afmetingen van een Cell kunnen niet berekend worden. Zie de FAQ. -dimensions.of.a.table.can.t.be.calculated.see.the.faq=Dimensies van een Table object kunnen niet berekend worden. Zie de FAQ. -directory.number.too.large=Directory nummer te groot. -document.1.has.already.been.added=Het Document {1} is als gesloten (preclosed). -document.already.pre.closed=Het Document is als gesloten (preclosed). -document.catalog.dictionary.shall.include.a.markinfo.dictionary.whose.entry.marked.shall.have.a.value.of.true=Document catalog dictionary moet een MarkInfo dictionary bevatten waarvan het Marked veld de waarde true moet hebben. -document.catalog.dictionary.should.contain.lang.entry=Document catalog dictionary mag geen Lang veld bevatten. -document.fields.cannot.be.copied.in.tagged.mode=Document fields kunnen niet gekopieerd worden in tagged mode. -ef.key.of.file.specification.dictionary.shall.contain.dictionary.with.valid.f.key=De EF sleutel van de file specification dictionary voor een embedded file moet een dictionary bevatten met een geldige F sleutel. -element.not.allowed=Element niet toegelaten. -embedded.file.shall.contain.valid.params.key=Een embedded file moet een geldige Params sleutel hebben. -embedded.file.shall.contain.params.key.with.valid.moddate.key=Een embedded file moet een Params sleutel hebben met een geldige ModDate sleutel. -embedded.file.shall.contain.pdf.mime.type=Een embedded file moet een correct pdf mime type hebben. -embedded.files.are.not.permitted=Embedded files zijn niet toegelaten. -encryption.can.only.be.added.before.opening.the.document=Encryptie kan enkel bepaald worden voor het document geopend wordt. -eol.code.word.encountered.in.black.run=EOL code woord gevonden in Black run. -eol.code.word.encountered.in.white.run=EOL code woord gevonden in White run. -error.attempting.to.launch.web.browser=Fout bij het opstarten van de webbrowser. -error.expected.hex.character.and.not.char.thenextbyte.1=Fout: hexademicaal karakter verwacht in plaats van (char)theNextByte:{1} -error.expected.the.end.of.a.dictionary=Fout: einde van een dictionary verwacht. -error.in.attribute.processing=Fout bij verwerking attribuut -error.in.base64.code.reading.stream=Fout in de Base64 code reading stream. -error.parsing.cmap.beginbfchar.expected.cosstring.or.cosname.and.not.1=Fout bij het parsen van CMap beginbfchar, {COSString or COSName} verwacht in plaats van {1} -error.reading.objstm=Fout tijdens het lezen van ObjStm -error.reading.string=Fout bij het lezen van een string -error.with.jp.marker=Foute JP Marker -every.annotation.shall.have.at.least.one.appearance.dictionary=Elke annotation moet ten minste 1 appearance dictionary hebben -exactly.one.colour.space.specification.shall.have.the.value.0x01.in.the.approx.field=Exact 1 colour space specificatie moet de waarde 0x01 in het APPROX veld hebben. -expected.ftyp.marker=FTYP Marker verwacht -expected.gt.for.tag.lt.1.gt=Karakter > verwacht voor tag: <{1}/> -expected.ihdr.marker=IHDR Marker verwacht -expected.colr.marker=COLR Marker verwacht -expected.jp.marker=JP Marker verwacht -expected.jp2h.marker=JP2H Marker verwacht -extra.samples.are.not.supported=Extra samples worden niet ondersteund. -failed.to.get.tsa.response.from.1=Slaagde er niet in een TSA antwoord te krijgen van '{1}' -fdf.header.not.found=FDF header niet gevonden. -field.flattening.is.not.supported.in.append.mode=Field flattening is niet ondersteund in append mode. -field.names.cannot.contain.a.dot=De naam van een veld mag geen punt bevatten. -file.header.flags.bits.2.7.not.0=file header vlaggen bits 2 tot 7 zijn niet 0 -file.header.idstring.not.good.at.byte.1=file header idstring is niet correct op byte {1} -file.is.not.a.valid.png=Het bestand is geen geldige PNG afbeelding. -file.position.0.cross.reference.entry.in.this.xref.subsection=Bestands positie 0 voor cross-reference entry in deze xref subsectie -file.specification.dictionary.shall.contain.correct.afrelationship.key=De file specification dictionary voor een embedded file moet een correct AFRelationship sleutel bevatten. -file.specification.dictionary.shall.contain.f.uf.and.desc.entries=De file specification dictionary voor een embedded file moet de F en UF sleutels bevatten en zou de Desc sleuten moeten bevatten. -filter.ccittfaxdecode.is.only.supported.for.images=Filter CCITTFaxDecode is enkel ondersteund voor foto's -first.scanline.must.be.1d.encoded=Eerste scanline moet 1D geencodeerd zijn. -font.1.with.2.encoding.is.not.a.cjk.font=Font '{1}' met encoding '{2}' is geen CJK font. -font.1.with.2.is.not.recognized=Font '{1}' met '{2}' werd niet herkend. -font.and.size.must.be.set.before.writing.any.text=Font en size moeten bepaald zijn vooraleer je tekst schrijft. -font.size.too.small.1=Font size te klein: {1} -fontfactoryimp.cannot.be.null=FontFactoryImp kan niet null zijn. -freetext.flattening.is.not.supported.in.append.mode=FreeText flattening is niet ondersteund in append mode. -annotation.flattening.is.not.supported.in.append.mode=Het flattenen van annotations is niet ondersteund in append mode. -getcell.at.illegal.index.1.max.is.2=getCell op ongeldige index:{1} maximum: {2} -getcell.at.illegal.index.1=getCell op ongeldige index : {1} -gif.signature.nor.found=Gif signature niet gevonden. -graphics.state.stack.depth.is.greater.than.28=Graphics state stackdiepte is groter dan 28. -greaterthan.not.expected='>' op een onverwachte plaats -halftones.shall.not.contains.halftonename=Halftones in een conform PDF/A-2 document mogen geen HalftoneName sleutel bevatten. -handler.1.already.registered=XObject handler {1} reeds geregistreerd -if.device.rgb.cmyk.gray.used.in.file.that.file.shall.contain.pdfa.outputintent=Als een ongecalibreerde colour space(DeviceRGB/DeviceCMYK/DeviceGray) gebruikt wordt in een document, dan moet dat document een PDF/A OutputIntent bevatten. -if.outputintents.array.more.than.one.entry.the.same.indirect.object=Als de OutputIntents array van een document meer dan 1 entry bevat, dan moeten alle entries die een DestOutputProfile sleutel bevatten hetzelfde indirect object hebben als waarde voor die sleutel. -if.the.document.not.contain.outputintent.transparencygroup.shall.comtain.cs.key=Als het document geen PDF/A OutputIntent bevat, dan moeten alle Page objecten die transparantie bevatten de Group sleuten bevatten, en de attribute dictionary die de waarde vormt van die Group key moet een CS entry bevatten waarvan de waarde zal gebruikt worden als de default blending colour space. -illegal.capacity.1=Ongeldige capaciteit: {1} -illegal.character.in.ascii85decode=Ongeldig karakter in ASCII85Decode. -illegal.character.in.asciihexdecode=Ongeldig karakter in ASCIIHexDecode. -illegal.length.in.ascii85decode=Ongeldige lengte in ASCII85Decode. -illegal.length.value=Ongeldige waarde voor de lengte. -illegal.load.1=Ongeldige load: {1} -illegal.p.value=Ongeldige waarde voor P. -illegal.pages.tree=Ongeldige pages tree -illegal.paragraph.embedding.level.1=ongeldig embedding niveau paragraaf: {1} -illegal.r.value=Ongeldige waarde voor R. -illegal.resources.tree=Ongeldige Resources Tree. -illegal.type.value.at.1.2=ongeldige waarde voor type op {1}: {2} -illegal.v.value=Ongeldige waarde voor V. -illegal.value.for.predictor.in.tiff.file=Ongeldige waarde voor Predictor in TIFF file. -illegal.ve.value=Ongeldige VE waarde. -improperly.padded.base64.input=Ongeldig 'gepadde' Base64 input. -in.a.page.label.the.page.numbers.must.be.greater.or.equal.to.1=In een page label moeten de pagina nummers groter dan of gelijk aan 1 zijn. -in.codabar.start.stop.characters.are.only.allowed.at.the.extremes=In codabar worden start/stop karakters enkel toegelaten bij begin en einde van de string. -incompatible.pdf.a.conformance.level=Incompatibele PDF/A conformance level. -incomplete.palette=onvolledig palet -inconsistent.mapping=Inconsistente mapping. -inconsistent.writers.are.you.mixing.two.documents=Inconsistente writers. Ben je twee documenten aan het verhaspelen? -incorrect.segment.type.in.1=Foutief segment type in {1} -infinite.table.loop=Oneindige tabel lus; rij inhoud is groter dan de pagina (bijvoorbeeld omdat een foto niet geschaald is.). -inline.elements.with.role.null.are.not.allowed=De tagging mode markInlineElementsOnly wordt gebruikt. Inline elementen met rol 'null' zijn niet toegelaten. -insertion.of.illegal.element.1=Invoeging van een ongeldig Element: {1} -inserttable.point.has.null.value=insertTable - punt bevat een null-waarde -inserttable.table.has.null.value=insertTable - tabel bevat een null-waarde -inserttable.wrong.columnposition.1.of.location.max.eq.2=insertTable -- verkeerde komom positie ({1}); maximum ={2} -insufficient.data=Involdoende data. -insufficient.length=Onvoldoende lengte. -internal.inconsistence=Interne inconsistentie. -inthashtableiterator=IntHashtableIterator -invalid.additional.action.type.1=Ongeldig 'additional action' type: {1} -invalid.additional.action.type.1=Ongeldig 'additional action' type: {1} -invalid.ai.length.1=Ongeldige AI lengte: ({1}) -invalid.border.style=Ongeldige border style. -invalid.character.in.base64.data=Ongeldig karakter in de Base64 data. -invalid.code.encountered.while.decoding.2d.group.3.compressed.data=Ongeldige code gevonden tijdens het decoderen van 2D group 3 gecomprimeerde data. -invalid.code.encountered.while.decoding.2d.group.4.compressed.data=Ongeldige code gevonden tijdens het decoderen van 2D group 4 gecomprimeerde data. -invalid.code.encountered=Ongeldige code gevonden. -invalid.code.type=Ongeldig code type. -invalid.codeword.size=Ongeldige codeword lengte. -invalid.color.type=Ongeldig kleurtype. -invalid.cross.reference.entry.in.this.xref.subsection=Ongeldige cross-reference entry in deze xref subsectie -invalid.end.tag.1=Ongeldige end tag - {1} -invalid.generation.number=Ongeldig generation nummer. -invalid.http.response.1=Ongeldig HTTP antwoord: {1} -invalid.icc.profile=Ongeldig ICC profiel. -invalid.index.1=Ongeldige index: {1} -invalid.listtype.value=Ongeldige waarde voor listType. -invalid.magic.value.for.bmp.file=Ongeldige 'magic value' voor een BMP bestand. -invalid.named.action=Ongeldige named action. -invalid.object.number=Ongeldig object nummer. -invalid.page.additional.action.type.1=Ongeldig 'page additional action' type: {1} -invalid.page.number.1=Ongeldig pagina nummer: {1} -invalid.run.direction.1=Ongeldige run direction: {1} -invalid.status.1=Ongeldige status: {1} -invalid.tsa.1.response.code.2=Ongeldig TSA '{1}' antwoord, code {2} -invalid.type.was.passed.in.state.1=Ongeldig type gebruikt als state: {1} -invalid.use.of.a.pattern.a.template.was.expected=Ongeldig gebruik van een patroon. Er werd een template verwacht. -irregular.columns.are.not.supported.in.composite.mode=Onregelmatige kolommen zijn niet toegelaten in composite mode. -it.is.not.possible.to.free.reader.in.merge.fields.mode=freeReader is niet mogelijk in mergeFields mode. -java.awt.image.fetch.aborted.or.errored=Ophalen van java.awt.Image afgebroken of misgelopen. -java.awt.image.interrupted.waiting.for.pixels=java.awt.Image onderbroken; aan het wachten op pixels! -jpeg2000.enumerated.colour.space.19.(CIEJab).shall.not.be.used=JPEG2000 enumerated colour space 19 (CIEJab) mag niet gebruikt worden. -keyword.encrypt.shall.not.be.used.in.the.trailer.dictionary=Keyword Encrypt mag niet gebruikt worden in de trailer dictionary. -lab.cs.black.point=De BlackPoint entry in Lab color space mag enkel een array zijn van drie getallen [XB YB ZB]. Al deze getallen moeten niet-negatief zijn. Standaardwaarde: [0.0 0.0 0.0]. -lab.cs.range=De Range entry in Lab color space mag enkel een array zijn van vier getallen [amin amax bmin bmax]. Standaardwaarde: [-100 100 -100 100]. -lab.cs.white.point=De WhitePoint array (drie getallen [XW YW ZW]) is verplicht in Lab color space. De getallen XW en ZW moeten positief zijn, en YW moet 1.0 zijn. -last.linebreak.must.be.at.1=laatste lijnafbreking moet op {1} -launch.sound.movie.resetform.importdata.and.javascript.actions.are.not.allowed=Launch, Sound, Movie, ResetForm, ImportData, Hide, SetOCGState, Rendition, Trans, GoTo3DView en JavaScript actions zijn niet toegelaten. -layers.are.not.allowed=Layers zijn niet toegelaten. -layout.out.of.bounds=Layout buiten het grensbereik. -line.iterator.out.of.bounds=lijn iterator buiten het grensbereik. -linear.page.mode.can.only.be.called.with.a.single.parent=Linear page mode kan enkel gebruikt worden met een enkele parent. -lzwdecode.filter.is.not.permitted=LZWDecode filter is niet toegelaten. -lzw.flavour.not.supported=LZW variant niet ondersteund. -macrosegmentid.must.be.gt.eq.0=macroSegmentId moet groter zijn dan 0 -macrosegmentid.must.be.lt.macrosemgentcount=macroSegmentId moet kleiner zijn dan macroSemgentCount -macrosemgentcount.must.be.gt.0=macroSemgentCount moet groter zijn dan 0 -make.copy.of.catalog.dictionary.is.forbidden=Make copy of Catalog dictionary is forbidden. -mapping.code.should.be.1.or.two.bytes.and.not.1=Mapping code moet uit 1 of 2 bytes bestaan, en niet uit {1} -missing.end.tag=Ontbrekende end tag -missing.endcharmetrics.in.1=Ontbrekende EndCharMetrics in {1} -missing.endfontmetrics.in.1=Ontbrekende EndFontMetrics in {1} -missing.endkernpairs.in.1=Ontbrekende EndKernPairs in {1} -missing.startcharmetrics.in.1=Ontbrekende StartCharMetrics in {1} -missing.tag.s.for.ojpeg.compression=Ontbrekende tag(s) voor OJPEG compressie. -multicolumntext.has.no.columns=MultiColumnText heeft geen kolommen -name.end.tag.out.of.place=Naam end tag op verkeerde plaats. -named.action.type.1.not.allowed=Named action type {1} niet toegelaten. -needappearances.flag.of.the.interactive.form.dictionary.shall.either.not.be.present.or.shall.be.false=NeedAppearances vlag van de interactive form dictionary moet ofwel weggelaten worden, ofwel false zijn. -nested.tags.are.not.allowed=Geneste tags zijn niet toegelaten. -no.compatible.encryption.found=Geen compatibele encryptie gevonden -no.error.just.an.old.style.table=Geen fout, enkel een tabel 'oude stijl' -no.font.is.defined=Er is geen enkele font gedefinieerd. -no.glyphs.defined.for.type3.font=Geen glyphs gedefinieerd voor Type3 font -no.keys.other.than.UR3.and.DocMDP.shall.be.present.in.a.permissions.dictionary=Een permissions dictionary mag geen sleutels bevatten, behalve UR3 en DocMDP. -no.structtreeroot.found=Geen StructTreeRoot gevonden, dit is waarschijnlijk geen tagged PDF document! -no.valid.column.line.found=Geen geldige kolomlijn gevonden. -no.valid.encryption.mode=Geen geldige encryption mode -not.a.placeable.windows.metafile=Geen placeable windows metafile -not.a.valid.jpeg2000.file=Geen geldig Jpeg2000 bestand -not.a.valid.pfm.file=Geen geldig PFM bestand. -not.a.valid.pkcs.7.object.not.a.sequence=Geen geldig PKCS#7 object - geen sequentie -not.a.valid.pkcs.7.object.not.signed.data=Geen geldig PKCS#7 object - niet gesigneerde data -not.all.annotations.could.be.added.to.the.document.the.document.doesn.t.have.enough.pages=Niet alle annotaties konden toegevoegd worden (het document had niet genoeg pagina's). -not.colorized.typed3.fonts.only.accept.mask.images=Kleurloze Type 3 fonts accepteren enkel mask images. -not.identity.crypt.filter.is.not.permitted=Geen Identity Crypt filter is niet toegelaten. -null.outpustream=OutputStream null -number.of.entries.in.this.xref.subsection.not.found=Het aantal entries in deze xref subsectie niet gevonden -object.number.of.the.first.object.in.this.xref.subsection.not.found=Object number van het eerste object in deze xref subsectie niet gevonden -ocsp.status.is.revoked=OCSP status is revoked! -ocsp.status.is.unknown=OCSP Status is onbekend! -only.bmp.can.be.wrapped.in.wmf=Alleen een BMP kan in een WMF gewrapt worden. -only.bmp.png.wmf.gif.and.jpeg.images.are.supported.by.the.rtf.writer=Alleen BMP, PNG, WMF, GIF en JPEG afbeeldingen worden ondersteund door RtfWriter2 -only.javascript.actions.are.allowed=Alleen JavaScript acties zijn toegelaten. -only.jpx.baseline.set.of.features.shall.be.used=Alleen de JPX basis set van features mag gebruikt worden. -only.one.of.artbox.or.trimbox.can.exist.in.the.page=Alleen een enkele ArtBox of TrimBox kan bestaan voor een zelfde pagina. -only.pdfa.documents.can.be.added.in.PdfACopy=Enkel PDF/A documenten kunnen toegevoegd worden aan PdfACopy. -only.pdfa.documents.can.be.opened.in.PdfAStamper=Enkel PDF/A documenten kunnen geopend worden met PdfAStamper. -only.pdfa.1.documents.can.be.opened.in.PdfAStamper=Deze instantie van PdfAStamper is geconfigureerd om PDF/A-{1} documenten te verwerken. -only.pdflayer.is.accepted=Alleen PdfLayer is toegelaten. -only.rgb.gray.and.cmyk.are.supported.as.alternative.color.spaces=Alleen RGB, Gray en CMYK worden ondersteund als alternatieve color spaces. -open.actions.by.name.are.not.supported=Open actions by name worden niet ondersteund. -operator.1.already.registered=Operator {1} was al geregistreerd -optional.content.configuration.dictionary.shall.contain.name.entry=Optional content configuratie dictionary moet een Name veld bevatten. -order.array.shall.contain.references.to.all.ocgs=Order array moet referenties naar alle OCGs bevatten. -outputintent.shall.be.prtr.or.mntr=Een PDF/A outputintent profiel moet een output profiel (Device Class = "prtr") of een monitor profiel (Device Class = "mntr") zijn. -outputintent.shall.have.colourspace.gray.rgb.or.cmyk=Een PDF/A outputintent profiel moet een van de colour space "GRAY", "RGB" of "CMYK" hebben. -outputintent.shall.have.gtspdfa1.and.destoutputintent=Een PDF/A OutputIntent dictionary moet GTS_PDFA1 als waarde van zijn S sleutel hebben en een geldige ICC profiel stream als waarde van zijn DestOutputProfile sleutel. -outputintent.shall.not.be.updated=PDF/A OutputIntent mag niet ge�pdatet worden. De original PDF kan device-afhankelijke kleuren bevatten die de huidige OutputIntent nodig hebben. -page.1.invalid.for.segment.2.starting.at.3=page {1} ongeldig voor segment {2} beginnend bij {3} -page.attribute.missing=Ontbrekend pagina attribuut. -page.dictionary.shall.not.include.aa.entry=De page dictionary mag geen AA entry bevatten. -page.dictionary.shall.not.include.pressteps.entry=The page dictionary shall not include a PresSteps entry -page.not.found=Pagina niet gevonden. -page.reordering.requires.a.single.parent.in.the.page.tree.call.pdfwriter.setlinearmode.after.open=Pagina herschikking heeft een enkele parent nodig in de page tree. Gebruik PdfWriter.setLinearMode() na het openen van het document. -page.reordering.requires.an.array.with.the.same.size.as.the.number.of.pages=Pagina herschikking heeft een array nodig met een zelfde aantal elementen als het aantal pagina's. -page.reordering.requires.no.page.repetition.page.1.is.repeated=Pagina herschikking laat geen herhaling van pagina's toe. Pagina {1} werd herhaald. -page.reordering.requires.pages.between.1.and.1.found.2=Pagina herschikking gaat voor pagina's tussen 1 en {1}. Jij vraagt naar pagina {2}. -partial.form.flattening.is.not.supported.with.xfa.forms=Gedeeltelijke form flattening is niet ondersteund voor XFA formulieren. -pdf.array.exceeds.length.set.by.PDFA1.standard=PDF array is groter dan toegelaten door de PDF/A-1 standaard: {1}. Maximumlengte is 8191 -pdf.array.is.out.of.bounds=PDF array buiten het grensbereik. -pdf.dictionary.is.out.of.bounds=PDF dictionary buiten het grensbereik. -pdf.header.not.found=PDF header niet gevonden. -pdf.name.is.too.long=PDF name is te lang. -pdf.startxref.not.found=PDF startxref niet gevonden. -pdf.string.is.too.long=PDF string is te lang. -pdfpcells.can.t.have.a.rowspan.gt.1=PdfPCells kunnen geen rowspan groter dan 1 hebben -pdfreader.not.opened.with.owner.password=PdfReader werd niet geopend met het 'owner password' -pdfx.conformance.can.only.be.set.before.opening.the.document=PDFX conformantie kan enkel bepaald worden voor het document geopend wordt. -pdfx.conformance.cannot.be.set.for.PdfAStamperImp.instance=PDFX conformiteit kan niet ingesteld worden voor een PdfAStamperImp instantie. -pdfx.conformance.cannot.be.set.for.PdfAWriter.instance=PDFX conformiteit kan niet ingesteld worden voor een PdfAWriter instantie. -planar.images.are.not.supported=Planar images worden niet ondersteund. -png.filter.unknown=onbekende PNG filter. -postscript.xobjects.are.not.allowed=PostScript XObjects zijn niet toegelaten. -preclose.must.be.called.first=preClose() moet eerst gebeuren. -premature.end.in.1=Vroegtijdig einde van het bestand in {1} -premature.end.of.file=Vroegtijdig einde van het bestand. -premature.eof.while.reading.jpg=Vroegtijdige EOF tijdens het lezen van het JPG bestand. -real.number.is.out.of.range=Re�el getal ligt buiten het bereik. -rebuild.failed.1.original.message.2=Rebuild ging fout: {1}; Oorspronkelijke foutboodschap: {2} -rectanglereadonly.this.rectangle.is.read.only=RectangleReadOnly: dit Rectangle object is alleen-lezen. -reference.pointing.to.reference=Referentie die naar een referentie verwijst. -referring.to.widht.height.of.page.we.havent.seen.yet.1=verwijzing naar een breedte/hoogte van een pagina die we nog niet gezien hebben? {1} -remove.not.supported=remove() niet ondersteund. -reserve.incorrect.column.size=reserve - ongeldige kolom/grootte -resources.do.not.contain.extgstate.entry.unable.to.process.operator.1=De resources bevatten geen ExtGState entry. Het is onmogelijk om de operator {1} te verwerken -root.element.is.not.bookmark.1=Het root element is geen Bookmark: {1} -root.element.is.not.destination=Het root element is geen bestemming. -root.element.is.not.xfdf.1=Het root element is geen xfdf: {1} -rotation.must.be.a.multiple.of.90=De rotatie moet een veelvoud van 90 zijn. -row.coordinate.of.location.must.be.gt.eq.0=rij coordinaat moet groter dan of gelijk aan 0 zijn -scanline.must.begin.with.eol.code.word=Scanline moet beginnen met het EOL code woord. -separations.patterns.and.shadings.are.not.allowed.in.mk.dictionary=Separations, patterns en shadings zijn niet toegelaten in de MK dictionary. -setelement.position.already.taken=setElement - positie al in gebruik -signature.references.dictionary.shall.not.contain.digestlocation.digestmethod.digestvalue=De Signature References dictionary mag de sleutels DigestLocation, DigestMethod and DigestValue niet bevatten. -start.marker.missing.in.1=Start marker ontbreekt in {1} -startxref.is.not.followed.by.a.number=startxref wordt niet gevolgd door een nummer. -startxref.not.found=startxref niet gevonden. -stdcf.not.found.encryption=/StdCF niet gevonden (encryption) -stream.could.not.be.compressed.filter.is.not.a.name.or.array=Stream kon niet gecomprimeerd worden: de filter is geen naam of array. -stream.object.dictionary.shall.not.contain.the.f.ffilter.or.fdecodeparams.keys=Stream object dictionary mag geen F, FFilter of FDecodeParams sleutels bevatten. -structparent.not.found=StructParent niet gevonden. -support.only.sha1.hash.algorithm=Enkel ondersteuning voor SHA1 hash algoritme. -support.only.rsa.and.dsa.algorithms=Enkel ondersteuning voor RSA en DSA algoritmes. -invalid.structparent=Ongeldige StructParent. -table.1.does.not.exist.in.2=Tabel '{1}' bestaat niet in {2} -tag.1.not.allowed=Tag {1} niet toegelaten. -tagging.must.be.set.before.opening.the.document=Tagging moet bepaald worden voor het document geopend is. -template.with.tagged.could.not.be.used.more.than.once=Template met tagged content kan niet meermaals gebruikt worden. -text.annotations.should.set.the.nozoom.and.norotate.flag.bits.of.the.f.key.to.1=Text annotations moeten de NoZoom en NoRotate vlaggen van de F sleutel op 1 zetten. -text.cannot.be.null=Text mag niet null zijn. -the.array.must.contain.string.or.pdfannotation=De array moet een String of een PdfAnnotation bevatten. -the.artifact.type.1.is.invalid=Artifact type '{1}' is ongeldig. -the.as.key.shall.not.appear.in.any.optional.content.configuration.dictionary=De AS sleutel mag niet voorkomen in een optional content configuratie dictionary. -the.bit-depth.of.the.jpeg2000.data.shall.have.a.value.in.the.range.1to38=De bit-depth van de JPEG2000 data moet een waarde tussen 1 en 38 hebben. -the.byte.array.is.not.a.recognized.imageformat=De byte array bevat geen gekend afbeeldingsformaat. -the.ccitt.compression.type.must.be.ccittg4.ccittg3.1d.or.ccittg3.2d=Het CCITT compressie type moet CCITTG4, CCITTG3_1D of CCITTG3_2D zijn -the.char.1.doesn.t.belong.in.this.type3.font=Het karakter {1} hoort niet thuis in deze Type3 font -the.char.1.is.not.defined.in.a.type3.font=Het karakter {1} is niet gedefinieerd in de Type3 font -the.character.1.is.illegal.in.codabar=Het karakter '{1}' is ongeldig in codabar. -the.character.1.is.illegal.in.code.39.extended=Het karakter '{1}' is ongeldig in code 39 extended. -the.character.1.is.illegal.in.code.39=Het karakter '{1}' is ongeldig in code 39. -the.cmap.1.does.not.exist.as.a.resource=De cmap {1} bestaat niet als bron. -the.cmap.1.was.not.found=De Cmap {1} werd niet gevonden. -the.compression.1.is.not.supported=Compressie {1} wordt niet ondersteund. -the.document.catalog.dictionary.shall.contain.metadata=De document catalog dictionary van een PDF/A conform document moet de Metadata sleutel bevatten. -the.document.catalog.dictionary.shall.not.include.an.aa.entry=De document catalog dictionary mag geen AA veld bevatten. -the.document.catalog.dictionary.shall.not.include.alternatepresentation.names.entry=De document catalog dictionary mag geen AlternatePresentation entry bevatten in de Names entry. -the.document.catalog.dictionary.shall.not.include.a.needrendering.entry=De document catalog dictionary mag geen NeedRendering entry bevatten. -the.document.catalog.dictionary.shall.not.include.a.requirements.entry=De document catalog dictionary mag geen Requirements entry bevatten. -the.document.catalog.dictionary.shall.not.include.acroform.xfa.entry=De document catalog dictionary mag geen XFA entry bvatten in de AcroForm entry. -the.document.catalog.dictionary.shall.not.include.embeddedfiles.names.entry=De document catalog dictionary mag geen EmbeddedFiles entry bevatten in de Names entry. -the.document.does.not.contain.parenttree=Het document bevat geen ParentTree. -the.document.has.been.closed.you.can.t.add.any.elements=Het document is gesloten. Je kan geen elementen meer toevoegen. -the.document.has.no.catalog.object=Het document heeft geen catalog object (dit betekent: het is een ongeldige PDF). -the.document.has.no.page.root=Het document heeft geen page root (dit betekent: het is een ongeldige PDF). -the.document.has.no.pages=Het document heeft geen pagina's. -the.document.is.not.open.yet.you.can.only.add.meta.information=Het document is nog niet open; je kan enkel metagegevens toevoegen. -the.document.is.not.open=Het document is niet open. -the.document.is.open.you.can.only.add.elements.with.content=Het document is open; je kan enkel Element objecten met inhoud plaatsen. -the.document.must.be.open.to.import.rtf.documents=Het document moet geopend zijn om RTF documenten te kunnen importeren. -the.document.must.be.open.to.import.rtf.fragments=Het document moet geopend zijn om RTF fragmenten te kunnen importeren. -the.document.was.reused=Het document werd herbruikt. -the.export.and.the.display.array.must.have.the.same.size=De export en display array moeten uit een zelfde aantal elementen bestaan. -the.f.keys.print.flag.bit.shall.be.set.to.1.and.its.hidden.invisible.and.noview.flag.bits.shall.be.set.to.0=De Print vlag van de F sleutel moet op 1 gezet worden en de Hidden, Invisible en NoView vlaggen moeten op 0 gezet worden. -the.f.keys.print.flag.bit.shall.be.set.to.1.and.its.hidden.invisible.noview.and.togglenoview.flag.bits.shall.be.set.to.0=De Print vlag van de F sleutel moet op 1 gezet worden en de Hidden, Invisible, NoView en ToggleNoView vlaggen moeten op 0 gezet worden. -the.field.1.already.exists=Het veld {1} bestaat al. -the.field.1.does.not.exist=Het veld {1} bestaat niet. -the.field.1.is.not.a.signature.field=Het veld {1} is geen signature veld. -the.file.does.not.contain.any.valid.image=Het bestand bevat geen geldige afbeelding. -the.filter.1.is.not.supported=De filter {1} wordt niet ondersteund. -the.font.index.for.1.must.be.between.0.and.2.it.was.3=De font index voor {1} moet tussen 0 en {2} liggen. Het was {3}. -the.font.index.for.1.must.be.positive=De font index voor {1} moet positief zijn. -the.image.mask.is.not.a.mask.did.you.do.makemask=De image mask is geen mask. Heb je makeMask() gebruikt? -the.image.must.have.absolute.positioning=Het image object moet een absolute positie hebben. -the.key.1.didn.t.reserve.space.in.preclose=De sleutel {1} reserveerde geen plaats in preClose(). -the.key.1.is.too.big.is.2.reserved.3=De sleutel {1} is te lang. Hij is {2}, terwijl er maar {3} gereserveerd werd -the.layer.1.already.has.a.parent=De layer '{1}' heeft al een parent. -the.matrix.size.must.be.6=De matrix moet uit 6 elementen bestaan. -the.name.1.is.too.long.2.characters=De naam '{1}' is te lang ({2} karakters). -the.new.size.must.be.positive.and.lt.eq.of.the.current.size=De nieuwe waarde moet positief zijn en kleiner dan of gelijk aan de huidige waarde -the.number.of.booleans.in.this.array.doesn.t.correspond.with.the.number.of.fields=Het aantal booleans in deze array stemt niet overeen met het aantal velden. -the.number.of.columns.in.pdfptable.constructor.must.be.greater.than.zero=Het aantal kolommen in de PdfPTable constructor moet groter zijn dan nul. -the.number.of.colour.channels.in.the.jpeg2000.data.shall.be.123=Het aantal colour channels in de JPEG2000 data moet 1, 2 of 3 zijn. -the.original.document.was.reused.read.it.again.from.file=Het originele document werd herbruikt. Lees het opnieuw in van het bestand. -the.page.less.3.units.nor.greater.14400.in.either.direction=De grootte van elke page boundary mag niet kleiner zijn dan 3 eenheden in elke richting en mag niet groter zijn dan 14400 eenheden in elke richting. -the.page.number.must.be.gt.eq.1=Het paginanummer moet groter dan of gelijk zijn aan 1. -the.page.size.must.be.smaller.than.14400.by.14400.its.1.by.2=De pagina grote moet kleiner zijn dan 14400 bij 14400. Het is {1} bij {2}. -the.parent.has.already.another.function=De parent heeft al een andere functie. -the.photometric.1.is.not.supported=De photometric {1} wordt niet ondersteund. -the.resource.cjkencodings.properties.does.not.contain.the.encoding.1=Het bronbestand cjkencodings.properties bevat de encoding {1} niet -the.smask.key.is.not.allowed.in.extgstate=De SMask sleutel is niet toegelaten in ExtGState. -the.smask.key.is.not.allowed.in.images=De /SMask key is niet toegelaten in afbeeldingen. -the.spot.color.must.be.the.same.only.the.tint.can.vary=De spot color moet het zelfde zijn, alleen de tint mag varieren. -the.stack.is.empty=De stack is leeg. -the.structure.has.kids=De structuur heeft substructuren (kids). -the.table.width.must.be.greater.than.zero=De breedte van de tabel moet groter zijn dan nul. -the.template.can.not.be.null=De template mag niet null zijn. -the.text.is.too.big=De tekst is te lang. -the.text.length.must.be.even=de lengte van de tekst mag niet oneven zijn. -the.two.barcodes.must.be.composed.externally=De twee barcodes moet extern samengesteld worden. -the.update.dictionary.has.less.keys.than.required=De update dictionary heeft minder sleutels dan noodzakelijk is. -the.url.of.the.image.is.missing=De URL van de afbeelding ontbreekt. -the.value.has.to.be.true.of.false.instead.of.1=De waarde moet 'true' of 'false' zijn, in plaats van '{1}'. -the.value.of.interpolate.key.shall.not.be.true=De waarde van de Interpolate sleutel mag niet true zijn. -the.value.of.the.meth.entry.in.colr.box.shall.be.123=De waarde van het METH veld in 'colr' box moet 1, 2 of 3 zijn. -the.width.cannot.be.set=De breedte kan niet gedefinieerd worden. -the.widths.array.in.pdfptable.constructor.can.not.be.null=De array met de breedtes in de PdfPTable constructor kan niet null zijn. -the.widths.array.in.pdfptable.constructor.can.not.have.zero.length=De array met de breedtes in de PdfPTable constructor moet minstens een element hebben. -the.writer.in.pdfcontentbyte.is.null=De writer in PdfContentByte is null. -there.are.illegal.characters.for.barcode.128.in.1=Er zitten ongeldige karakters voor barcode 128 in '{1}'. -there.are.not.enough.imported.pages.for.copied.fields=Er zijn niet genoeg imported pages voor de gekopieerde fields. Gebruik addDocument of kopieer genoeg pagina's. -this.acrofields.instance.is.read.only=Deze instantie van AcroFields is read only. -this.image.can.not.be.an.image.mask=Deze afbeelding kan geen image mask zijn. -this.largeelement.has.already.been.added.to.the.document=Dit LargeElement object werd al toegevoegd aan het Document. -this.page.cannot.be.replaced.new.content.was.already.added=Deze pagina kan niet vervangen worden: nieuwe inhoud werd al toegevoegd -this.pkcs.7.object.has.multiple.signerinfos.only.one.is.supported.at.this.time=Dit PKCS#7 object heeft meerdere SignerInfos - slechts een enkel is toegelaten -tiff.5.0.style.lzw.codes.are.not.supported=TIFF 5.0-achtige LZW codes worden niet ondersteund. -tiff.fill.order.tag.must.be.either.1.or.2=TIFF_FILL_ORDER tag moet ofwel 1, ofwel 2 zijn. -tiles.are.not.supported=Tiles worden niet ondersteund. -title.cannot.be.null=De titel kan niet null zijn. -token.obj.expected=Token 'obj' verwacht. -too.many.indirect.objects=Teveel indirect objects. -trailer.not.found=trailer niet gevonden. -trailer.prev.entry.points.to.its.own.cross.reference.section=Trailer /Prev veld verwijst naar zijn eigen cross-reference sectie. -transparency.is.not.allowed.ca.eq.1=Transparentie is niet toegelaten: /ca = {1} -transparency.length.must.be.equal.to.2.with.ccitt.images=De transparency lengte moet gelijk zijn aan 2 voor CCITT afbeeldingen. -transparency.length.must.be.equal.to.componentes.2=De transparentie lengte moet gelijk zijn aan (components * 2) -trying.to.create.a.table.without.rows=Je probeert een tabel zonder rijen te maken. -tsa.1.failed.to.return.time.stamp.token.2=TSA '{1}' slaagde er niet in een time stamp token terug te geven: {2} -two.byte.arrays.are.needed.if.the.type1.font.is.embedded=Er zijn twee byte arrays nodig als de Type1 font ingebed wordt. -type3.font.used.with.the.wrong.pdfwriter=Type3 font gebruikt met het verkeerde PdfWriter object -types.is.null=types is null -unbalanced.begin.end.marked.content.operators=Ongebalanceerde begin/einde operatoren voor marked content. -unbalanced.begin.end.text.operators=Ongebalanceerde begin/einde operatoren voor tekst. -path.construction.operator.inside.text.object=Pad constructie of drawing operators aren't allowed inside a text object. -unbalanced.layer.operators=Ongebalanceerde operatoren voor layers. -unbalanced.marked.content.operators=Ongebalanceerde marked content operatoren. -unbalanced.save.restore.state.operators=Ongebalanceerde save/restore state operatoren. -unexpected.end.of.file=Onverwacht einde van het bestand. -unexpected.eof=Onverwachte EOF -unexpected.gt.gt=Onverwachte '>>' -unexpected.close.bracket=Onverwachter ']' -unknown.color.format.must.be.rgb.or.rrggbb=Onbekend formaat voor kleur. Moet #RGB of #RRGGBB zijn -unknown.encryption.type.r.eq.1=Onbekend encryptie type R = {1} -unknown.encryption.type.v.eq.1=Onbekend encryptie type V = {1} -unknown.filter.1=Onbekende filter: {1} -unknown.hash.algorithm.1=Onbekend Hash Algoritme {1} -unknown.image.format={1} is geen erkend afbeeldingsformaat. -unknown.key.algorithm.1=Onbekend Key Algoritme {1} -unknown.object.at.k.1=Onbekend object voor /K {1} -unknown.structure.element.role.1=Onbekende structure element role: {1}. -unknown=onbekend -unsupported.box.size.eq.eq.0=Ongeldige box size == 0 -unsupported.in.this.context.use.pdfstamper.addannotation=Niet ondersteund in deze context. Gebruik PdfStamper.addAnnotation() -use.pdfstamper.getundercontent.or.pdfstamper.getovercontent=Gebruik PdfStamper.getUnderContent() of PdfStamper.getOverContent() -use.pdfstamper.setthumbnail=Gebruik PdfStamper.setThumbnail(). -use.setpageaction.pdfname.actiontype.pdfaction.action.int.page=Gebruik setPageAction(PdfName actionType, PdfAction action, int page) -userunit.should.be.a.value.between.1.and.75000=UserUnit moet een waarde zijn tussen 1 en 75000. -value.of.name.entry.shall.be.unique.amongst.all.optional.content.configuration.dictionaries=De waarde van het Name veld moet uniek zijn over alle optional content configuratie dictionaries -verification.already.output=Verificatie reeds weggeschreven. -verticaltext.go.with.simulate.eq.eq.false.and.text.eq.eq.null=VerticalText.go met simulate==false en text==null. -while.removing.wmf.placeable.header=tijdens het verwijderen van een wmf positioneerbare header -widget.annotation.dictionary.or.field.dictionary.shall.not.include.a.or.aa.entry=Widget annotation dictionary of Field dictionary mogen geen A of AA veld bevatten. -writelength.can.only.be.called.after.output.of.the.stream.body=writeLength() kan alleen opgeroepen worden na output van de stream body. -writelength.can.only.be.called.in.a.contructed.pdfstream.inputstream.pdfwriter=writeLength() kan alleen opgeroepen worden in een aldus aangemaakte stream: PdfStream(InputStream,PdfWriter). -wrong.number.of.columns=Verkeerd aantal kolommen. -xmllocator.cannot.be.null=XmlLocator mag niet null zijn, zie XmlSignatureAppearance. -XObject.1.is.not.a.stream=XObject {1} is geen stream. -xref.subsection.not.found=xref subsectie niet gevonden -xstep.or.ystep.can.not.be.zero=XStep of YStep kan niet nul zijn. -you.can.only.add.a.writer.to.a.pdfdocument.once=Je kan een writer slecht een enkele keer toevoegen aan een PdfDocument. -you.can.only.add.cells.to.rows.no.objects.of.type.1=Je kan enkel cellen toevoegen aan rijen, geen objecten van type {1} -you.can.only.add.objects.that.implement.the.element.interface=Enkel objecten die de Element interface implementeren kunnen toegevoegd worden. -you.can.t.add.a.1.to.a.section=Je kan geen {1} toevoegen aan een Section. -you.can.t.add.an.element.of.type.1.to.a.simplecell=Je kan geen element van type {1} toevoegen aan een SimpleCell. -you.can.t.add.cells.to.a.table.directly.add.them.to.a.row.first=Je kan geen cellen toevoegen aan een tabel, zonder ze eerst aan een rij toe te voegen. -you.can.t.add.listitems.rows.or.cells.to.a.cell=Je kan geen lijst items, rijen of cellen toevoegen aan een cell. -you.can.t.add.one.row.to.another.row=Je kan rijen niet aan rijen toevoegen. -you.can.t.have.1.pages.on.one.page.minimum.2.maximum.8=Je kan geen {1} pagina's op ��n blad plaatsen (minimum 2; maximum 8). -you.can.t.set.the.full.compression.if.the.document.is.already.open=Je mag geen full compression invoeren als het document al open is. -you.can.t.set.the.initial.leading.if.the.document.is.already.open=Je kan geen initial leading bepalen als het document al open is. -you.can.t.split.this.document.at.page.1.there.is.no.such.page=Je kan dit document niet splitsen op pagina {1}; Die pagina bestaat niet. -you.can.t.translate.a.negative.number.into.an.alphabetical.value=Je kan een negatieve waarde niet omzetten naar een alfabetische waarde. -you.have.to.consolidate.the.named.destinations.of.your.reader=Je moet de named destinations van je reader object consolideren. -you.have.to.define.a.boolean.array.for.this.collection.sort.dictionary=Je moet een boolean array bepalen voor deze collection sort dictionary. -you.have.used.the.wrong.constructor.for.this.fieldpositioningevents.class=Je gebruikte de verkeerde constructor van de FieldPositioningEvents class. -you.must.set.a.value.before.adding.a.prefix=Je moet een waarde toevoegen vooraleer je een prefix toevoegt. -you.need.a.single.boolean.for.this.collection.sort.dictionary=Je hebt een enkele boolean nodig voor deze collection sort dictionary. -the.decode.parameter.type.1.is.not.supported=De decodeer parameter type {1} is niet ondersteund. -the.color.space.1.is.not.supported=De color space {1} is niet ondersteund. -the.color.depth.1.is.not.supported=De kleurdiepte {1} is niet ondersteund. -N.value.1.is.not.supported=N waarde {1} is niet ondersteund -Decoding.can't.happen.on.this.type.of.stream.(.1.)=Decoderen kan niet gebeuren op dit type stream({1}) -zugferd.xmp.schema.shall.contain.attachment.name=ZUGFeRD XMP schema moet attachmentnaam bevatten. diff --git a/target/classes/com/itextpdf/text/l10n/error/pt.lng b/target/classes/com/itextpdf/text/l10n/error/pt.lng deleted file mode 100644 index 1e6b3cf6..00000000 --- a/target/classes/com/itextpdf/text/l10n/error/pt.lng +++ /dev/null @@ -1,7 +0,0 @@ -# Portuguese - Portugal -1.at.file.pointer.2={1} na posição de ficheiro {2} -error.reading.string=Erro na leitura de string. -fdf.header.not.found=Início de FDF não encontrado. -greaterthan.not.expected='>' inesperado -pdf.header.not.found=Início de PDF não encontrado. -pdf.startxref.not.found=startxref de PDF não encontrado. diff --git a/target/classes/com/itextpdf/text/log/Counter.class b/target/classes/com/itextpdf/text/log/Counter.class deleted file mode 100644 index 3e9c3b78..00000000 Binary files a/target/classes/com/itextpdf/text/log/Counter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/CounterFactory.class b/target/classes/com/itextpdf/text/log/CounterFactory.class deleted file mode 100644 index 1121baa5..00000000 Binary files a/target/classes/com/itextpdf/text/log/CounterFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/DefaultCounter.class b/target/classes/com/itextpdf/text/log/DefaultCounter.class deleted file mode 100644 index 55842dcd..00000000 Binary files a/target/classes/com/itextpdf/text/log/DefaultCounter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/Level.class b/target/classes/com/itextpdf/text/log/Level.class deleted file mode 100644 index 7630a368..00000000 Binary files a/target/classes/com/itextpdf/text/log/Level.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/Logger.class b/target/classes/com/itextpdf/text/log/Logger.class deleted file mode 100644 index 55a068d0..00000000 Binary files a/target/classes/com/itextpdf/text/log/Logger.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/LoggerFactory.class b/target/classes/com/itextpdf/text/log/LoggerFactory.class deleted file mode 100644 index 8ff61cee..00000000 Binary files a/target/classes/com/itextpdf/text/log/LoggerFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/NoOpCounter.class b/target/classes/com/itextpdf/text/log/NoOpCounter.class deleted file mode 100644 index c9f0a354..00000000 Binary files a/target/classes/com/itextpdf/text/log/NoOpCounter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/NoOpLogger.class b/target/classes/com/itextpdf/text/log/NoOpLogger.class deleted file mode 100644 index b279a4f0..00000000 Binary files a/target/classes/com/itextpdf/text/log/NoOpLogger.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/SysoCounter.class b/target/classes/com/itextpdf/text/log/SysoCounter.class deleted file mode 100644 index 81c7b0cf..00000000 Binary files a/target/classes/com/itextpdf/text/log/SysoCounter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/log/SysoLogger.class b/target/classes/com/itextpdf/text/log/SysoLogger.class deleted file mode 100644 index 7412e311..00000000 Binary files a/target/classes/com/itextpdf/text/log/SysoLogger.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/AcroFields$1.class b/target/classes/com/itextpdf/text/pdf/AcroFields$1.class deleted file mode 100644 index 7f214f8d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/AcroFields$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/AcroFields$FieldPosition.class b/target/classes/com/itextpdf/text/pdf/AcroFields$FieldPosition.class deleted file mode 100644 index f1bb0228..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/AcroFields$FieldPosition.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/AcroFields$InstHit.class b/target/classes/com/itextpdf/text/pdf/AcroFields$InstHit.class deleted file mode 100644 index 97240ba8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/AcroFields$InstHit.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/AcroFields$Item.class b/target/classes/com/itextpdf/text/pdf/AcroFields$Item.class deleted file mode 100644 index d3feb632..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/AcroFields$Item.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/AcroFields$SorterComparator.class b/target/classes/com/itextpdf/text/pdf/AcroFields$SorterComparator.class deleted file mode 100644 index dda60240..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/AcroFields$SorterComparator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/AcroFields.class b/target/classes/com/itextpdf/text/pdf/AcroFields.class deleted file mode 100644 index 3b5ba359..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/AcroFields.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ArrayBasedStringTokenizer.class b/target/classes/com/itextpdf/text/pdf/ArrayBasedStringTokenizer.class deleted file mode 100644 index cb698bfb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ArrayBasedStringTokenizer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BadPdfFormatException.class b/target/classes/com/itextpdf/text/pdf/BadPdfFormatException.class deleted file mode 100644 index 9f1e377e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BadPdfFormatException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Barcode.class b/target/classes/com/itextpdf/text/pdf/Barcode.class deleted file mode 100644 index 84c7d0a6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Barcode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Barcode128$1.class b/target/classes/com/itextpdf/text/pdf/Barcode128$1.class deleted file mode 100644 index 73e7a376..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Barcode128$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Barcode128$Barcode128CodeSet.class b/target/classes/com/itextpdf/text/pdf/Barcode128$Barcode128CodeSet.class deleted file mode 100644 index 0c903541..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Barcode128$Barcode128CodeSet.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Barcode128.class b/target/classes/com/itextpdf/text/pdf/Barcode128.class deleted file mode 100644 index 28868a88..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Barcode128.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Barcode39.class b/target/classes/com/itextpdf/text/pdf/Barcode39.class deleted file mode 100644 index d1109f9b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Barcode39.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeCodabar.class b/target/classes/com/itextpdf/text/pdf/BarcodeCodabar.class deleted file mode 100644 index 545913f9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeCodabar.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$DmParams.class b/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$DmParams.class deleted file mode 100644 index 777f772e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$DmParams.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$Placement.class b/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$Placement.class deleted file mode 100644 index a849ca65..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$Placement.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$ReedSolomon.class b/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$ReedSolomon.class deleted file mode 100644 index 95140113..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix$ReedSolomon.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix.class b/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix.class deleted file mode 100644 index 31145e9f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeDatamatrix.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeEAN.class b/target/classes/com/itextpdf/text/pdf/BarcodeEAN.class deleted file mode 100644 index 98d19c77..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeEAN.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeEANSUPP.class b/target/classes/com/itextpdf/text/pdf/BarcodeEANSUPP.class deleted file mode 100644 index f3402506..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeEANSUPP.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeInter25.class b/target/classes/com/itextpdf/text/pdf/BarcodeInter25.class deleted file mode 100644 index 9344e84a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeInter25.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodePDF417$Segment.class b/target/classes/com/itextpdf/text/pdf/BarcodePDF417$Segment.class deleted file mode 100644 index 91f6583a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodePDF417$Segment.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodePDF417$SegmentList.class b/target/classes/com/itextpdf/text/pdf/BarcodePDF417$SegmentList.class deleted file mode 100644 index 467f9654..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodePDF417$SegmentList.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodePDF417.class b/target/classes/com/itextpdf/text/pdf/BarcodePDF417.class deleted file mode 100644 index 0c3b5b32..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodePDF417.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodePostnet.class b/target/classes/com/itextpdf/text/pdf/BarcodePostnet.class deleted file mode 100644 index ef7e5f4b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodePostnet.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BarcodeQRCode.class b/target/classes/com/itextpdf/text/pdf/BarcodeQRCode.class deleted file mode 100644 index ea2acd98..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BarcodeQRCode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BaseField.class b/target/classes/com/itextpdf/text/pdf/BaseField.class deleted file mode 100644 index 238878ab..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BaseField.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BaseFont$StreamFont.class b/target/classes/com/itextpdf/text/pdf/BaseFont$StreamFont.class deleted file mode 100644 index b26aef2c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BaseFont$StreamFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BaseFont.class b/target/classes/com/itextpdf/text/pdf/BaseFont.class deleted file mode 100644 index c521eca7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BaseFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BidiLine.class b/target/classes/com/itextpdf/text/pdf/BidiLine.class deleted file mode 100644 index 9d9a0b05..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BidiLine.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/BidiOrder.class b/target/classes/com/itextpdf/text/pdf/BidiOrder.class deleted file mode 100644 index 53d21495..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/BidiOrder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ByteBuffer.class b/target/classes/com/itextpdf/text/pdf/ByteBuffer.class deleted file mode 100644 index bc4eef38..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ByteBuffer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$DictNumberItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$DictNumberItem.class deleted file mode 100644 index d03d662e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$DictNumberItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$DictOffsetItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$DictOffsetItem.class deleted file mode 100644 index a267fd2e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$DictOffsetItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$Font.class b/target/classes/com/itextpdf/text/pdf/CFFFont$Font.class deleted file mode 100644 index a70f82b0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$Font.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$IndexBaseItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$IndexBaseItem.class deleted file mode 100644 index 5b7269ba..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$IndexBaseItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$IndexMarkerItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$IndexMarkerItem.class deleted file mode 100644 index 587f3555..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$IndexMarkerItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$IndexOffsetItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$IndexOffsetItem.class deleted file mode 100644 index 83ce67bc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$IndexOffsetItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$Item.class b/target/classes/com/itextpdf/text/pdf/CFFFont$Item.class deleted file mode 100644 index 9df9d5a4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$Item.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$MarkerItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$MarkerItem.class deleted file mode 100644 index a9c140b1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$MarkerItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$OffsetItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$OffsetItem.class deleted file mode 100644 index 142cc050..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$OffsetItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$RangeItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$RangeItem.class deleted file mode 100644 index 4352163d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$RangeItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$StringItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$StringItem.class deleted file mode 100644 index 9685dc97..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$StringItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$SubrMarkerItem.class b/target/classes/com/itextpdf/text/pdf/CFFFont$SubrMarkerItem.class deleted file mode 100644 index fa67dc0c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$SubrMarkerItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt16Item.class b/target/classes/com/itextpdf/text/pdf/CFFFont$UInt16Item.class deleted file mode 100644 index 7f653aed..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt16Item.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt24Item.class b/target/classes/com/itextpdf/text/pdf/CFFFont$UInt24Item.class deleted file mode 100644 index 4250f5e7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt24Item.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt32Item.class b/target/classes/com/itextpdf/text/pdf/CFFFont$UInt32Item.class deleted file mode 100644 index f143a7e0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt32Item.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt8Item.class b/target/classes/com/itextpdf/text/pdf/CFFFont$UInt8Item.class deleted file mode 100644 index 6a7594a9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont$UInt8Item.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFont.class b/target/classes/com/itextpdf/text/pdf/CFFFont.class deleted file mode 100644 index 1a645e92..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CFFFontSubset.class b/target/classes/com/itextpdf/text/pdf/CFFFontSubset.class deleted file mode 100644 index 6743203e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CFFFontSubset.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CJKFont.class b/target/classes/com/itextpdf/text/pdf/CJKFont.class deleted file mode 100644 index 443e9f90..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CJKFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CMYKColor.class b/target/classes/com/itextpdf/text/pdf/CMYKColor.class deleted file mode 100644 index 0b1a9db0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CMYKColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/CMapAwareDocumentFont.class b/target/classes/com/itextpdf/text/pdf/CMapAwareDocumentFont.class deleted file mode 100644 index 14613869..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/CMapAwareDocumentFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ColorDetails.class b/target/classes/com/itextpdf/text/pdf/ColorDetails.class deleted file mode 100644 index 66ea5552..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ColorDetails.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ColumnText.class b/target/classes/com/itextpdf/text/pdf/ColumnText.class deleted file mode 100644 index a5bd4843..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ColumnText.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/DefaultSplitCharacter.class b/target/classes/com/itextpdf/text/pdf/DefaultSplitCharacter.class deleted file mode 100644 index 6e7cbb0e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/DefaultSplitCharacter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/DeviceNColor.class b/target/classes/com/itextpdf/text/pdf/DeviceNColor.class deleted file mode 100644 index cfb486f0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/DeviceNColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/DocumentFont.class b/target/classes/com/itextpdf/text/pdf/DocumentFont.class deleted file mode 100644 index 760abea4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/DocumentFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/EnumerateTTC.class b/target/classes/com/itextpdf/text/pdf/EnumerateTTC.class deleted file mode 100644 index 9844a7c8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/EnumerateTTC.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ExtendedColor.class b/target/classes/com/itextpdf/text/pdf/ExtendedColor.class deleted file mode 100644 index 07d56e7e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ExtendedColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ExtraEncoding.class b/target/classes/com/itextpdf/text/pdf/ExtraEncoding.class deleted file mode 100644 index b55fcb11..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ExtraEncoding.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FdfReader.class b/target/classes/com/itextpdf/text/pdf/FdfReader.class deleted file mode 100644 index f2dafb1f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FdfReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FdfWriter$Wrt.class b/target/classes/com/itextpdf/text/pdf/FdfWriter$Wrt.class deleted file mode 100644 index 97ece257..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FdfWriter$Wrt.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FdfWriter.class b/target/classes/com/itextpdf/text/pdf/FdfWriter.class deleted file mode 100644 index 0a6abef5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FdfWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$1.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$1.class deleted file mode 100644 index 26d844a6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$FilterHandler.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$FilterHandler.class deleted file mode 100644 index c83e842d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$FilterHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_ASCII85DECODE.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_ASCII85DECODE.class deleted file mode 100644 index 54e49b5d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_ASCII85DECODE.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_ASCIIHEXDECODE.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_ASCIIHEXDECODE.class deleted file mode 100644 index 763374e7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_ASCIIHEXDECODE.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_CCITTFAXDECODE.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_CCITTFAXDECODE.class deleted file mode 100644 index 0215ab54..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_CCITTFAXDECODE.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_DoNothing.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_DoNothing.class deleted file mode 100644 index 5d9c393e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_DoNothing.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_FLATEDECODE.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_FLATEDECODE.class deleted file mode 100644 index e3f175c1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_FLATEDECODE.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_LZWDECODE.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_LZWDECODE.class deleted file mode 100644 index 3293901d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_LZWDECODE.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_RUNLENGTHDECODE.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_RUNLENGTHDECODE.class deleted file mode 100644 index 0644238f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers$Filter_RUNLENGTHDECODE.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FilterHandlers.class b/target/classes/com/itextpdf/text/pdf/FilterHandlers.class deleted file mode 100644 index db09fe3f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FilterHandlers.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FloatLayout.class b/target/classes/com/itextpdf/text/pdf/FloatLayout.class deleted file mode 100644 index 764cafb0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FloatLayout.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FontDetails$1.class b/target/classes/com/itextpdf/text/pdf/FontDetails$1.class deleted file mode 100644 index 34a45de4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FontDetails$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FontDetails.class b/target/classes/com/itextpdf/text/pdf/FontDetails.class deleted file mode 100644 index e86886ae..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FontDetails.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/FontSelector.class b/target/classes/com/itextpdf/text/pdf/FontSelector.class deleted file mode 100644 index 217527e7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/FontSelector.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Glyph.class b/target/classes/com/itextpdf/text/pdf/Glyph.class deleted file mode 100644 index fc616874..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Glyph.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/GlyphList.class b/target/classes/com/itextpdf/text/pdf/GlyphList.class deleted file mode 100644 index dfbf64d3..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/GlyphList.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/GrayColor.class b/target/classes/com/itextpdf/text/pdf/GrayColor.class deleted file mode 100644 index 25cda950..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/GrayColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/HyphenationAuto.class b/target/classes/com/itextpdf/text/pdf/HyphenationAuto.class deleted file mode 100644 index d305272d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/HyphenationAuto.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/HyphenationEvent.class b/target/classes/com/itextpdf/text/pdf/HyphenationEvent.class deleted file mode 100644 index 812d4db1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/HyphenationEvent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ICC_Profile.class b/target/classes/com/itextpdf/text/pdf/ICC_Profile.class deleted file mode 100644 index c11a887a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ICC_Profile.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ICachedColorSpace.class b/target/classes/com/itextpdf/text/pdf/ICachedColorSpace.class deleted file mode 100644 index eb1cae0d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ICachedColorSpace.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/IPdfSpecialColorSpace.class b/target/classes/com/itextpdf/text/pdf/IPdfSpecialColorSpace.class deleted file mode 100644 index 0615604d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/IPdfSpecialColorSpace.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/IntHashtable$Entry.class b/target/classes/com/itextpdf/text/pdf/IntHashtable$Entry.class deleted file mode 100644 index 452a07ed..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/IntHashtable$Entry.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/IntHashtable$IntHashtableIterator.class b/target/classes/com/itextpdf/text/pdf/IntHashtable$IntHashtableIterator.class deleted file mode 100644 index bdf56e52..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/IntHashtable$IntHashtableIterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/IntHashtable.class b/target/classes/com/itextpdf/text/pdf/IntHashtable.class deleted file mode 100644 index bc97cdff..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/IntHashtable.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/LZWDecoder.class b/target/classes/com/itextpdf/text/pdf/LZWDecoder.class deleted file mode 100644 index af05328f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/LZWDecoder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/LabColor.class b/target/classes/com/itextpdf/text/pdf/LabColor.class deleted file mode 100644 index b5b0a180..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/LabColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/LongHashtable$Entry.class b/target/classes/com/itextpdf/text/pdf/LongHashtable$Entry.class deleted file mode 100644 index a6fccfd4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/LongHashtable$Entry.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/LongHashtable$LongHashtableIterator.class b/target/classes/com/itextpdf/text/pdf/LongHashtable$LongHashtableIterator.class deleted file mode 100644 index 5ffcf70e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/LongHashtable$LongHashtableIterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/LongHashtable.class b/target/classes/com/itextpdf/text/pdf/LongHashtable.class deleted file mode 100644 index d80f92f7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/LongHashtable.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/MappedRandomAccessFile$1.class b/target/classes/com/itextpdf/text/pdf/MappedRandomAccessFile$1.class deleted file mode 100644 index 7323b399..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/MappedRandomAccessFile$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/MappedRandomAccessFile.class b/target/classes/com/itextpdf/text/pdf/MappedRandomAccessFile.class deleted file mode 100644 index c225bd11..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/MappedRandomAccessFile.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/NumberArray.class b/target/classes/com/itextpdf/text/pdf/NumberArray.class deleted file mode 100644 index 0e469143..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/NumberArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/OutputStreamCounter.class b/target/classes/com/itextpdf/text/pdf/OutputStreamCounter.class deleted file mode 100644 index 77fa06d6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/OutputStreamCounter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/OutputStreamEncryption.class b/target/classes/com/itextpdf/text/pdf/OutputStreamEncryption.class deleted file mode 100644 index d2dc6327..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/OutputStreamEncryption.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PRAcroForm$FieldInformation.class b/target/classes/com/itextpdf/text/pdf/PRAcroForm$FieldInformation.class deleted file mode 100644 index 23a89e18..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PRAcroForm$FieldInformation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PRAcroForm.class b/target/classes/com/itextpdf/text/pdf/PRAcroForm.class deleted file mode 100644 index 42ad95dd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PRAcroForm.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PRIndirectReference.class b/target/classes/com/itextpdf/text/pdf/PRIndirectReference.class deleted file mode 100644 index 73b23c56..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PRIndirectReference.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PRStream.class b/target/classes/com/itextpdf/text/pdf/PRStream.class deleted file mode 100644 index b7fa3b32..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PRStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PRTokeniser$TokenType.class b/target/classes/com/itextpdf/text/pdf/PRTokeniser$TokenType.class deleted file mode 100644 index 9c7d9674..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PRTokeniser$TokenType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PRTokeniser.class b/target/classes/com/itextpdf/text/pdf/PRTokeniser.class deleted file mode 100644 index 368b8c43..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PRTokeniser.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PageResources.class b/target/classes/com/itextpdf/text/pdf/PageResources.class deleted file mode 100644 index 884d3187..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PageResources.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PatternColor.class b/target/classes/com/itextpdf/text/pdf/PatternColor.class deleted file mode 100644 index 41528581..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PatternColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfAcroForm.class b/target/classes/com/itextpdf/text/pdf/PdfAcroForm.class deleted file mode 100644 index b2fb9450..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfAcroForm.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfAction.class b/target/classes/com/itextpdf/text/pdf/PdfAction.class deleted file mode 100644 index af44ed13..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfAction.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfAnnotation$PdfImportedLink.class b/target/classes/com/itextpdf/text/pdf/PdfAnnotation$PdfImportedLink.class deleted file mode 100644 index 2bab424e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfAnnotation$PdfImportedLink.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfAnnotation.class b/target/classes/com/itextpdf/text/pdf/PdfAnnotation.class deleted file mode 100644 index 5aab7d1e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfAnnotation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfAppearance.class b/target/classes/com/itextpdf/text/pdf/PdfAppearance.class deleted file mode 100644 index 74ad30cb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfAppearance.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfArray.class b/target/classes/com/itextpdf/text/pdf/PdfArray.class deleted file mode 100644 index 7a7704e9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfArtifact$1.class b/target/classes/com/itextpdf/text/pdf/PdfArtifact$1.class deleted file mode 100644 index 021fd3ed..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfArtifact$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfArtifact$ArtifactType.class b/target/classes/com/itextpdf/text/pdf/PdfArtifact$ArtifactType.class deleted file mode 100644 index 0413603c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfArtifact$ArtifactType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfArtifact.class b/target/classes/com/itextpdf/text/pdf/PdfArtifact.class deleted file mode 100644 index f506ce35..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfArtifact.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfBody.class b/target/classes/com/itextpdf/text/pdf/PdfBody.class deleted file mode 100644 index 65d41719..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfBody.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfBoolean.class b/target/classes/com/itextpdf/text/pdf/PdfBoolean.class deleted file mode 100644 index 49fcd234..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfBoolean.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfBorderArray.class b/target/classes/com/itextpdf/text/pdf/PdfBorderArray.class deleted file mode 100644 index 0f0dea2b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfBorderArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfBorderDictionary.class b/target/classes/com/itextpdf/text/pdf/PdfBorderDictionary.class deleted file mode 100644 index cdec3b3d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfBorderDictionary.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfChunk.class b/target/classes/com/itextpdf/text/pdf/PdfChunk.class deleted file mode 100644 index c4a70fa7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfChunk.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfColor.class b/target/classes/com/itextpdf/text/pdf/PdfColor.class deleted file mode 100644 index 7c7942b2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfConcatenate.class b/target/classes/com/itextpdf/text/pdf/PdfConcatenate.class deleted file mode 100644 index 3de66d4a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfConcatenate.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfContentByte$GraphicState.class b/target/classes/com/itextpdf/text/pdf/PdfContentByte$GraphicState.class deleted file mode 100644 index 86c5aff1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfContentByte$GraphicState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfContentByte$UncoloredPattern.class b/target/classes/com/itextpdf/text/pdf/PdfContentByte$UncoloredPattern.class deleted file mode 100644 index 348602f1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfContentByte$UncoloredPattern.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfContentByte.class b/target/classes/com/itextpdf/text/pdf/PdfContentByte.class deleted file mode 100644 index 4c7071fc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfContentByte.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfContentParser$1.class b/target/classes/com/itextpdf/text/pdf/PdfContentParser$1.class deleted file mode 100644 index 4f0f9e21..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfContentParser$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfContentParser.class b/target/classes/com/itextpdf/text/pdf/PdfContentParser.class deleted file mode 100644 index 8d0d06d8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfContentParser.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfContents.class b/target/classes/com/itextpdf/text/pdf/PdfContents.class deleted file mode 100644 index d04515fc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfContents.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopy$ImportedPage.class b/target/classes/com/itextpdf/text/pdf/PdfCopy$ImportedPage.class deleted file mode 100644 index 2f0de396..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopy$ImportedPage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopy$IndirectReferences.class b/target/classes/com/itextpdf/text/pdf/PdfCopy$IndirectReferences.class deleted file mode 100644 index beb37a4c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopy$IndirectReferences.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopy$PageStamp.class b/target/classes/com/itextpdf/text/pdf/PdfCopy$PageStamp.class deleted file mode 100644 index f5943a2f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopy$PageStamp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopy$StampContent.class b/target/classes/com/itextpdf/text/pdf/PdfCopy$StampContent.class deleted file mode 100644 index 25b536fb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopy$StampContent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopy.class b/target/classes/com/itextpdf/text/pdf/PdfCopy.class deleted file mode 100644 index 5c730bbe..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopy.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopyFields.class b/target/classes/com/itextpdf/text/pdf/PdfCopyFields.class deleted file mode 100644 index b42a2e9d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopyFields.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopyFieldsImp.class b/target/classes/com/itextpdf/text/pdf/PdfCopyFieldsImp.class deleted file mode 100644 index a499f183..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopyFieldsImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopyForms.class b/target/classes/com/itextpdf/text/pdf/PdfCopyForms.class deleted file mode 100644 index 2d7adab8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopyForms.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfCopyFormsImp.class b/target/classes/com/itextpdf/text/pdf/PdfCopyFormsImp.class deleted file mode 100644 index 7925a5d1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfCopyFormsImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDashPattern.class b/target/classes/com/itextpdf/text/pdf/PdfDashPattern.class deleted file mode 100644 index 1c2eeaaa..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDashPattern.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDate.class b/target/classes/com/itextpdf/text/pdf/PdfDate.class deleted file mode 100644 index 7bac10a9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDate.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDestination.class b/target/classes/com/itextpdf/text/pdf/PdfDestination.class deleted file mode 100644 index f8262b96..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDestination.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDeveloperExtension.class b/target/classes/com/itextpdf/text/pdf/PdfDeveloperExtension.class deleted file mode 100644 index 674c6a2e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDeveloperExtension.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDeviceNColor.class b/target/classes/com/itextpdf/text/pdf/PdfDeviceNColor.class deleted file mode 100644 index e116b9f6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDeviceNColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDictionary.class b/target/classes/com/itextpdf/text/pdf/PdfDictionary.class deleted file mode 100644 index 5e1827bb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDictionary.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDiv$BorderTopStyle.class b/target/classes/com/itextpdf/text/pdf/PdfDiv$BorderTopStyle.class deleted file mode 100644 index 24978884..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDiv$BorderTopStyle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDiv$DisplayType.class b/target/classes/com/itextpdf/text/pdf/PdfDiv$DisplayType.class deleted file mode 100644 index e3974ccf..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDiv$DisplayType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDiv$FloatType.class b/target/classes/com/itextpdf/text/pdf/PdfDiv$FloatType.class deleted file mode 100644 index 96b89edc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDiv$FloatType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDiv$PositionType.class b/target/classes/com/itextpdf/text/pdf/PdfDiv$PositionType.class deleted file mode 100644 index 1eb1051f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDiv$PositionType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDiv.class b/target/classes/com/itextpdf/text/pdf/PdfDiv.class deleted file mode 100644 index de875e0a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDiv.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDocument$Destination.class b/target/classes/com/itextpdf/text/pdf/PdfDocument$Destination.class deleted file mode 100644 index 23544127..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDocument$Destination.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDocument$Indentation.class b/target/classes/com/itextpdf/text/pdf/PdfDocument$Indentation.class deleted file mode 100644 index 60ed016a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDocument$Indentation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDocument$PdfCatalog.class b/target/classes/com/itextpdf/text/pdf/PdfDocument$PdfCatalog.class deleted file mode 100644 index 4e435ad2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDocument$PdfCatalog.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDocument$PdfInfo.class b/target/classes/com/itextpdf/text/pdf/PdfDocument$PdfInfo.class deleted file mode 100644 index c410dab1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDocument$PdfInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfDocument.class b/target/classes/com/itextpdf/text/pdf/PdfDocument.class deleted file mode 100644 index 7b83250f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfDocument.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEFStream.class b/target/classes/com/itextpdf/text/pdf/PdfEFStream.class deleted file mode 100644 index c18b7b6c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEFStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncodings$1.class b/target/classes/com/itextpdf/text/pdf/PdfEncodings$1.class deleted file mode 100644 index cc3e8d9e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncodings$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncodings$Cp437Conversion.class b/target/classes/com/itextpdf/text/pdf/PdfEncodings$Cp437Conversion.class deleted file mode 100644 index 638eb207..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncodings$Cp437Conversion.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncodings$SymbolConversion.class b/target/classes/com/itextpdf/text/pdf/PdfEncodings$SymbolConversion.class deleted file mode 100644 index db872bc2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncodings$SymbolConversion.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncodings$SymbolTTConversion.class b/target/classes/com/itextpdf/text/pdf/PdfEncodings$SymbolTTConversion.class deleted file mode 100644 index abdf134d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncodings$SymbolTTConversion.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncodings$WingdingsConversion.class b/target/classes/com/itextpdf/text/pdf/PdfEncodings$WingdingsConversion.class deleted file mode 100644 index 25d83d33..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncodings$WingdingsConversion.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncodings.class b/target/classes/com/itextpdf/text/pdf/PdfEncodings.class deleted file mode 100644 index 2384fd21..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncodings.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncryption.class b/target/classes/com/itextpdf/text/pdf/PdfEncryption.class deleted file mode 100644 index 375c8241..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncryption.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfEncryptor.class b/target/classes/com/itextpdf/text/pdf/PdfEncryptor.class deleted file mode 100644 index 34268c8b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfEncryptor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfException.class b/target/classes/com/itextpdf/text/pdf/PdfException.class deleted file mode 100644 index 753c41e9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfFileSpecification.class b/target/classes/com/itextpdf/text/pdf/PdfFileSpecification.class deleted file mode 100644 index 5e93a292..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfFileSpecification.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfFont.class b/target/classes/com/itextpdf/text/pdf/PdfFont.class deleted file mode 100644 index e1a47399..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfFormField.class b/target/classes/com/itextpdf/text/pdf/PdfFormField.class deleted file mode 100644 index d4374e07..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfFormField.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfFormXObject.class b/target/classes/com/itextpdf/text/pdf/PdfFormXObject.class deleted file mode 100644 index 9b7f70b5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfFormXObject.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfFunction.class b/target/classes/com/itextpdf/text/pdf/PdfFunction.class deleted file mode 100644 index bb371dfd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfFunction.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfGState.class b/target/classes/com/itextpdf/text/pdf/PdfGState.class deleted file mode 100644 index 50dbd9cb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfGState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfICCBased.class b/target/classes/com/itextpdf/text/pdf/PdfICCBased.class deleted file mode 100644 index e6d18330..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfICCBased.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfImage.class b/target/classes/com/itextpdf/text/pdf/PdfImage.class deleted file mode 100644 index d52a827a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfImage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfImportedPage.class b/target/classes/com/itextpdf/text/pdf/PdfImportedPage.class deleted file mode 100644 index 5257d826..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfImportedPage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfIndirectObject.class b/target/classes/com/itextpdf/text/pdf/PdfIndirectObject.class deleted file mode 100644 index e8282d5e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfIndirectObject.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfIndirectReference.class b/target/classes/com/itextpdf/text/pdf/PdfIndirectReference.class deleted file mode 100644 index fb883423..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfIndirectReference.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfIsoConformanceException.class b/target/classes/com/itextpdf/text/pdf/PdfIsoConformanceException.class deleted file mode 100644 index bb284d0d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfIsoConformanceException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfLabColor.class b/target/classes/com/itextpdf/text/pdf/PdfLabColor.class deleted file mode 100644 index fe85525f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfLabColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfLayer.class b/target/classes/com/itextpdf/text/pdf/PdfLayer.class deleted file mode 100644 index f570c959..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfLayer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfLayerMembership.class b/target/classes/com/itextpdf/text/pdf/PdfLayerMembership.class deleted file mode 100644 index 00300a85..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfLayerMembership.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfLine.class b/target/classes/com/itextpdf/text/pdf/PdfLine.class deleted file mode 100644 index 8b2a3a10..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfLine.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfLister.class b/target/classes/com/itextpdf/text/pdf/PdfLister.class deleted file mode 100644 index da224c4c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfLister.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfLiteral.class b/target/classes/com/itextpdf/text/pdf/PdfLiteral.class deleted file mode 100644 index 71f4eb76..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfLiteral.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfMediaClipData.class b/target/classes/com/itextpdf/text/pdf/PdfMediaClipData.class deleted file mode 100644 index f784a055..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfMediaClipData.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfName.class b/target/classes/com/itextpdf/text/pdf/PdfName.class deleted file mode 100644 index e8509f18..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfName.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfNameTree.class b/target/classes/com/itextpdf/text/pdf/PdfNameTree.class deleted file mode 100644 index 4c867cfc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfNameTree.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfNull.class b/target/classes/com/itextpdf/text/pdf/PdfNull.class deleted file mode 100644 index 9afcf857..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfNull.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfNumber.class b/target/classes/com/itextpdf/text/pdf/PdfNumber.class deleted file mode 100644 index 57b3d03d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfNumber.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfNumberTree.class b/target/classes/com/itextpdf/text/pdf/PdfNumberTree.class deleted file mode 100644 index 43e907f0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfNumberTree.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfOCG.class b/target/classes/com/itextpdf/text/pdf/PdfOCG.class deleted file mode 100644 index ea306ecf..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfOCG.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfOCProperties.class b/target/classes/com/itextpdf/text/pdf/PdfOCProperties.class deleted file mode 100644 index 2ab1250c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfOCProperties.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfObject.class b/target/classes/com/itextpdf/text/pdf/PdfObject.class deleted file mode 100644 index ce893c3f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfObject.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfOutline.class b/target/classes/com/itextpdf/text/pdf/PdfOutline.class deleted file mode 100644 index 9051f59b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfOutline.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPCell.class b/target/classes/com/itextpdf/text/pdf/PdfPCell.class deleted file mode 100644 index f8667cc1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPCell.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPCellEvent.class b/target/classes/com/itextpdf/text/pdf/PdfPCellEvent.class deleted file mode 100644 index bbbfc8f0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPCellEvent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPHeaderCell.class b/target/classes/com/itextpdf/text/pdf/PdfPHeaderCell.class deleted file mode 100644 index d5c9254b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPHeaderCell.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPRow.class b/target/classes/com/itextpdf/text/pdf/PdfPRow.class deleted file mode 100644 index 28046683..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPRow.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPSXObject.class b/target/classes/com/itextpdf/text/pdf/PdfPSXObject.class deleted file mode 100644 index 59996793..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPSXObject.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTable$ColumnMeasurementState.class b/target/classes/com/itextpdf/text/pdf/PdfPTable$ColumnMeasurementState.class deleted file mode 100644 index a700eeb9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTable$ColumnMeasurementState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTable$FittingRows.class b/target/classes/com/itextpdf/text/pdf/PdfPTable$FittingRows.class deleted file mode 100644 index 7ad2c088..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTable$FittingRows.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTable.class b/target/classes/com/itextpdf/text/pdf/PdfPTable.class deleted file mode 100644 index 0582d238..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTable.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTableBody.class b/target/classes/com/itextpdf/text/pdf/PdfPTableBody.class deleted file mode 100644 index cc4f2097..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTableBody.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTableEvent.class b/target/classes/com/itextpdf/text/pdf/PdfPTableEvent.class deleted file mode 100644 index 43acdbfc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTableEvent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTableEventAfterSplit.class b/target/classes/com/itextpdf/text/pdf/PdfPTableEventAfterSplit.class deleted file mode 100644 index e6b3d81d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTableEventAfterSplit.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTableEventSplit.class b/target/classes/com/itextpdf/text/pdf/PdfPTableEventSplit.class deleted file mode 100644 index 09a455cd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTableEventSplit.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTableFooter.class b/target/classes/com/itextpdf/text/pdf/PdfPTableFooter.class deleted file mode 100644 index adb8eaf1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTableFooter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPTableHeader.class b/target/classes/com/itextpdf/text/pdf/PdfPTableHeader.class deleted file mode 100644 index 2a2c5eeb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPTableHeader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPage.class b/target/classes/com/itextpdf/text/pdf/PdfPage.class deleted file mode 100644 index b801555a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPageElement.class b/target/classes/com/itextpdf/text/pdf/PdfPageElement.class deleted file mode 100644 index 53a50719..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPageElement.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPageEvent.class b/target/classes/com/itextpdf/text/pdf/PdfPageEvent.class deleted file mode 100644 index a4536bd9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPageEvent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPageEventHelper.class b/target/classes/com/itextpdf/text/pdf/PdfPageEventHelper.class deleted file mode 100644 index ab355636..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPageEventHelper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPageLabels$PdfPageLabelFormat.class b/target/classes/com/itextpdf/text/pdf/PdfPageLabels$PdfPageLabelFormat.class deleted file mode 100644 index ddd4f9fa..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPageLabels$PdfPageLabelFormat.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPageLabels.class b/target/classes/com/itextpdf/text/pdf/PdfPageLabels.class deleted file mode 100644 index 902542c6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPageLabels.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPages.class b/target/classes/com/itextpdf/text/pdf/PdfPages.class deleted file mode 100644 index 1b18528b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPages.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPattern.class b/target/classes/com/itextpdf/text/pdf/PdfPattern.class deleted file mode 100644 index 7d127430..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPattern.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPatternPainter.class b/target/classes/com/itextpdf/text/pdf/PdfPatternPainter.class deleted file mode 100644 index 969bc447..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPatternPainter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPublicKeyRecipient.class b/target/classes/com/itextpdf/text/pdf/PdfPublicKeyRecipient.class deleted file mode 100644 index c0a4b22f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPublicKeyRecipient.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfPublicKeySecurityHandler.class b/target/classes/com/itextpdf/text/pdf/PdfPublicKeySecurityHandler.class deleted file mode 100644 index aa7c572a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfPublicKeySecurityHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfReader$1.class b/target/classes/com/itextpdf/text/pdf/PdfReader$1.class deleted file mode 100644 index 8e4286b5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfReader$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfReader$PageRefs.class b/target/classes/com/itextpdf/text/pdf/PdfReader$PageRefs.class deleted file mode 100644 index 88579f56..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfReader$PageRefs.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfReader.class b/target/classes/com/itextpdf/text/pdf/PdfReader.class deleted file mode 100644 index 5d983099..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfReaderInstance.class b/target/classes/com/itextpdf/text/pdf/PdfReaderInstance.class deleted file mode 100644 index ad641276..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfReaderInstance.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfRectangle.class b/target/classes/com/itextpdf/text/pdf/PdfRectangle.class deleted file mode 100644 index 41756c15..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfRectangle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfRendition.class b/target/classes/com/itextpdf/text/pdf/PdfRendition.class deleted file mode 100644 index 83f0e403..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfRendition.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfResources.class b/target/classes/com/itextpdf/text/pdf/PdfResources.class deleted file mode 100644 index 19f1fe23..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfResources.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfShading.class b/target/classes/com/itextpdf/text/pdf/PdfShading.class deleted file mode 100644 index a4bd5d42..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfShading.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfShadingPattern.class b/target/classes/com/itextpdf/text/pdf/PdfShadingPattern.class deleted file mode 100644 index 76faed1f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfShadingPattern.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary$LockAction.class b/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary$LockAction.class deleted file mode 100644 index 533ed9e9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary$LockAction.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary$LockPermissions.class b/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary$LockPermissions.class deleted file mode 100644 index ca91e8ef..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary$LockPermissions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary.class b/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary.class deleted file mode 100644 index f3b64408..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSigLockDictionary.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSignature.class b/target/classes/com/itextpdf/text/pdf/PdfSignature.class deleted file mode 100644 index f987c408..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSignature.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$1.class b/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$1.class deleted file mode 100644 index cbad81c0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$RenderingMode.class b/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$RenderingMode.class deleted file mode 100644 index 910615d0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$RenderingMode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$SignatureEvent.class b/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$SignatureEvent.class deleted file mode 100644 index f9a6a44a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance$SignatureEvent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance.class b/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance.class deleted file mode 100644 index 912a6a13..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSignatureAppearance.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSmartCopy$ByteStore.class b/target/classes/com/itextpdf/text/pdf/PdfSmartCopy$ByteStore.class deleted file mode 100644 index 9ab502fa..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSmartCopy$ByteStore.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSmartCopy.class b/target/classes/com/itextpdf/text/pdf/PdfSmartCopy.class deleted file mode 100644 index 0c7301d1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSmartCopy.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfSpotColor.class b/target/classes/com/itextpdf/text/pdf/PdfSpotColor.class deleted file mode 100644 index 2127a023..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfSpotColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStamper.class b/target/classes/com/itextpdf/text/pdf/PdfStamper.class deleted file mode 100644 index 15391a0d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStamper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStamperImp$PageStamp.class b/target/classes/com/itextpdf/text/pdf/PdfStamperImp$PageStamp.class deleted file mode 100644 index 8764c037..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStamperImp$PageStamp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStamperImp.class b/target/classes/com/itextpdf/text/pdf/PdfStamperImp.class deleted file mode 100644 index 7d934886..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStamperImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStream.class b/target/classes/com/itextpdf/text/pdf/PdfStream.class deleted file mode 100644 index 5627c272..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfString.class b/target/classes/com/itextpdf/text/pdf/PdfString.class deleted file mode 100644 index a7d72b6e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfString.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStructTreeController$1.class b/target/classes/com/itextpdf/text/pdf/PdfStructTreeController$1.class deleted file mode 100644 index bdc5b643..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStructTreeController$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStructTreeController$returnType.class b/target/classes/com/itextpdf/text/pdf/PdfStructTreeController$returnType.class deleted file mode 100644 index 1edcfdf1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStructTreeController$returnType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStructTreeController.class b/target/classes/com/itextpdf/text/pdf/PdfStructTreeController.class deleted file mode 100644 index 1ef18d25..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStructTreeController.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStructureElement.class b/target/classes/com/itextpdf/text/pdf/PdfStructureElement.class deleted file mode 100644 index 21ae1809..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStructureElement.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfStructureTreeRoot.class b/target/classes/com/itextpdf/text/pdf/PdfStructureTreeRoot.class deleted file mode 100644 index 6aec52d1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfStructureTreeRoot.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfTemplate.class b/target/classes/com/itextpdf/text/pdf/PdfTemplate.class deleted file mode 100644 index 5d6dd01a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfTemplate.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfTextArray.class b/target/classes/com/itextpdf/text/pdf/PdfTextArray.class deleted file mode 100644 index c270971c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfTextArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfTransition.class b/target/classes/com/itextpdf/text/pdf/PdfTransition.class deleted file mode 100644 index 7bd4bc05..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfTransition.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfTransparencyGroup.class b/target/classes/com/itextpdf/text/pdf/PdfTransparencyGroup.class deleted file mode 100644 index 4fbca417..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfTransparencyGroup.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfVisibilityExpression.class b/target/classes/com/itextpdf/text/pdf/PdfVisibilityExpression.class deleted file mode 100644 index 1741a594..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfVisibilityExpression.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfBody$PdfCrossReference.class b/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfBody$PdfCrossReference.class deleted file mode 100644 index 695f7f6e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfBody$PdfCrossReference.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfBody.class b/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfBody.class deleted file mode 100644 index 29882e8c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfBody.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfTrailer.class b/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfTrailer.class deleted file mode 100644 index 3a72e6b6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfWriter$PdfTrailer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfWriter.class b/target/classes/com/itextpdf/text/pdf/PdfWriter.class deleted file mode 100644 index 22568065..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PdfXConformanceException.class b/target/classes/com/itextpdf/text/pdf/PdfXConformanceException.class deleted file mode 100644 index a5a35d59..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PdfXConformanceException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Pfm2afm.class b/target/classes/com/itextpdf/text/pdf/Pfm2afm.class deleted file mode 100644 index 3b4822d0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Pfm2afm.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/PushbuttonField.class b/target/classes/com/itextpdf/text/pdf/PushbuttonField.class deleted file mode 100644 index 61b8ffd6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/PushbuttonField.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/RadioCheckField.class b/target/classes/com/itextpdf/text/pdf/RadioCheckField.class deleted file mode 100644 index 664fb6df..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/RadioCheckField.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/RandomAccessFileOrArray.class b/target/classes/com/itextpdf/text/pdf/RandomAccessFileOrArray.class deleted file mode 100644 index 7f9f5f3c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/RandomAccessFileOrArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/RefKey.class b/target/classes/com/itextpdf/text/pdf/RefKey.class deleted file mode 100644 index 52d902dd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/RefKey.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/SequenceList.class b/target/classes/com/itextpdf/text/pdf/SequenceList.class deleted file mode 100644 index afe0a555..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/SequenceList.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/ShadingColor.class b/target/classes/com/itextpdf/text/pdf/ShadingColor.class deleted file mode 100644 index 378c16b7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/ShadingColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/SimpleBookmark.class b/target/classes/com/itextpdf/text/pdf/SimpleBookmark.class deleted file mode 100644 index c5e6432f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/SimpleBookmark.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/SimpleNamedDestination.class b/target/classes/com/itextpdf/text/pdf/SimpleNamedDestination.class deleted file mode 100644 index 94427003..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/SimpleNamedDestination.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/SpotColor.class b/target/classes/com/itextpdf/text/pdf/SpotColor.class deleted file mode 100644 index 8c536b5c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/SpotColor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/StampContent.class b/target/classes/com/itextpdf/text/pdf/StampContent.class deleted file mode 100644 index 0aa478d6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/StampContent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/StandardDecryption.class b/target/classes/com/itextpdf/text/pdf/StandardDecryption.class deleted file mode 100644 index 61b78af7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/StandardDecryption.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/StringUtils.class b/target/classes/com/itextpdf/text/pdf/StringUtils.class deleted file mode 100644 index dd402c08..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/StringUtils.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TextField.class b/target/classes/com/itextpdf/text/pdf/TextField.class deleted file mode 100644 index 739d376f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TextField.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TrueTypeFont$FontHeader.class b/target/classes/com/itextpdf/text/pdf/TrueTypeFont$FontHeader.class deleted file mode 100644 index 4a6c413d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TrueTypeFont$FontHeader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TrueTypeFont$HorizontalHeader.class b/target/classes/com/itextpdf/text/pdf/TrueTypeFont$HorizontalHeader.class deleted file mode 100644 index c903e7a7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TrueTypeFont$HorizontalHeader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TrueTypeFont$WindowsMetrics.class b/target/classes/com/itextpdf/text/pdf/TrueTypeFont$WindowsMetrics.class deleted file mode 100644 index cb3b43e5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TrueTypeFont$WindowsMetrics.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TrueTypeFont.class b/target/classes/com/itextpdf/text/pdf/TrueTypeFont.class deleted file mode 100644 index f64bcfdc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TrueTypeFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TrueTypeFontSubSet.class b/target/classes/com/itextpdf/text/pdf/TrueTypeFontSubSet.class deleted file mode 100644 index a2fcc47c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TrueTypeFontSubSet.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TrueTypeFontUnicode.class b/target/classes/com/itextpdf/text/pdf/TrueTypeFontUnicode.class deleted file mode 100644 index 21bbd35c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TrueTypeFontUnicode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/TtfUnicodeWriter.class b/target/classes/com/itextpdf/text/pdf/TtfUnicodeWriter.class deleted file mode 100644 index 1bec2aa6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/TtfUnicodeWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Type1Font.class b/target/classes/com/itextpdf/text/pdf/Type1Font.class deleted file mode 100644 index 9b4f2147..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Type1Font.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Type3Font.class b/target/classes/com/itextpdf/text/pdf/Type3Font.class deleted file mode 100644 index 8d82fea4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Type3Font.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/Type3Glyph.class b/target/classes/com/itextpdf/text/pdf/Type3Glyph.class deleted file mode 100644 index 9cfbfe2c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/Type3Glyph.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/VerticalText.class b/target/classes/com/itextpdf/text/pdf/VerticalText.class deleted file mode 100644 index 03929a2d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/VerticalText.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaForm$AcroFieldsSearch.class b/target/classes/com/itextpdf/text/pdf/XfaForm$AcroFieldsSearch.class deleted file mode 100644 index b12cc73d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaForm$AcroFieldsSearch.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaForm$InverseStore.class b/target/classes/com/itextpdf/text/pdf/XfaForm$InverseStore.class deleted file mode 100644 index 99fa416f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaForm$InverseStore.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaForm$Stack2.class b/target/classes/com/itextpdf/text/pdf/XfaForm$Stack2.class deleted file mode 100644 index 5618984d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaForm$Stack2.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2Som.class b/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2Som.class deleted file mode 100644 index 94cb9575..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2Som.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2SomDatasets.class b/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2SomDatasets.class deleted file mode 100644 index a9397fed..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2SomDatasets.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2SomTemplate.class b/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2SomTemplate.class deleted file mode 100644 index 28657071..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaForm$Xml2SomTemplate.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaForm.class b/target/classes/com/itextpdf/text/pdf/XfaForm.class deleted file mode 100644 index d7f56241..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaForm.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaXmlLocator.class b/target/classes/com/itextpdf/text/pdf/XfaXmlLocator.class deleted file mode 100644 index 84c63cab..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaXmlLocator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor$1.class b/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor$1.class deleted file mode 100644 index b1b536fd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor$XdpPackage.class b/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor$XdpPackage.class deleted file mode 100644 index 54c1d36c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor$XdpPackage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor.class b/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor.class deleted file mode 100644 index b33af567..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfaXpathConstructor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XfdfReader.class b/target/classes/com/itextpdf/text/pdf/XfdfReader.class deleted file mode 100644 index 14b13480..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XfdfReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/XmlSignatureAppearance.class b/target/classes/com/itextpdf/text/pdf/XmlSignatureAppearance.class deleted file mode 100644 index 24ab4502..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/XmlSignatureAppearance.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/Base64$InputStream.class b/target/classes/com/itextpdf/text/pdf/codec/Base64$InputStream.class deleted file mode 100644 index db52436a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/Base64$InputStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/Base64$OutputStream.class b/target/classes/com/itextpdf/text/pdf/codec/Base64$OutputStream.class deleted file mode 100644 index 2d377102..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/Base64$OutputStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/Base64.class b/target/classes/com/itextpdf/text/pdf/codec/Base64.class deleted file mode 100644 index f8025b26..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/Base64.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/BitFile.class b/target/classes/com/itextpdf/text/pdf/codec/BitFile.class deleted file mode 100644 index 55282c15..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/BitFile.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/BmpImage.class b/target/classes/com/itextpdf/text/pdf/codec/BmpImage.class deleted file mode 100644 index 17e7931e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/BmpImage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/CCITTG4Encoder.class b/target/classes/com/itextpdf/text/pdf/codec/CCITTG4Encoder.class deleted file mode 100644 index 42a06ab7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/CCITTG4Encoder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/GifImage$GifFrame.class b/target/classes/com/itextpdf/text/pdf/codec/GifImage$GifFrame.class deleted file mode 100644 index 4216c4b6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/GifImage$GifFrame.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/GifImage.class b/target/classes/com/itextpdf/text/pdf/codec/GifImage.class deleted file mode 100644 index 955fc117..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/GifImage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/JBIG2Image.class b/target/classes/com/itextpdf/text/pdf/codec/JBIG2Image.class deleted file mode 100644 index 1caf530f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/JBIG2Image.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader$JBIG2Page.class b/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader$JBIG2Page.class deleted file mode 100644 index f0cec0f6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader$JBIG2Page.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader$JBIG2Segment.class b/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader$JBIG2Segment.class deleted file mode 100644 index 6d469c40..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader$JBIG2Segment.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader.class b/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader.class deleted file mode 100644 index ae98690a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/JBIG2SegmentReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/LZWCompressor.class b/target/classes/com/itextpdf/text/pdf/codec/LZWCompressor.class deleted file mode 100644 index da816978..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/LZWCompressor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/LZWStringTable.class b/target/classes/com/itextpdf/text/pdf/codec/LZWStringTable.class deleted file mode 100644 index 71f7a215..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/LZWStringTable.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/PngImage$NewByteArrayOutputStream.class b/target/classes/com/itextpdf/text/pdf/codec/PngImage$NewByteArrayOutputStream.class deleted file mode 100644 index 09849071..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/PngImage$NewByteArrayOutputStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/PngImage.class b/target/classes/com/itextpdf/text/pdf/codec/PngImage.class deleted file mode 100644 index de069e70..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/PngImage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/PngWriter.class b/target/classes/com/itextpdf/text/pdf/codec/PngWriter.class deleted file mode 100644 index ff7c615c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/PngWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TIFFConstants.class b/target/classes/com/itextpdf/text/pdf/codec/TIFFConstants.class deleted file mode 100644 index 1c80bc65..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TIFFConstants.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TIFFDirectory.class b/target/classes/com/itextpdf/text/pdf/codec/TIFFDirectory.class deleted file mode 100644 index b390385b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TIFFDirectory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TIFFFaxDecoder.class b/target/classes/com/itextpdf/text/pdf/codec/TIFFFaxDecoder.class deleted file mode 100644 index 5c43d79b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TIFFFaxDecoder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TIFFFaxDecompressor.class b/target/classes/com/itextpdf/text/pdf/codec/TIFFFaxDecompressor.class deleted file mode 100644 index 5804625b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TIFFFaxDecompressor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TIFFField.class b/target/classes/com/itextpdf/text/pdf/codec/TIFFField.class deleted file mode 100644 index 072a9a4b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TIFFField.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TIFFLZWDecoder.class b/target/classes/com/itextpdf/text/pdf/codec/TIFFLZWDecoder.class deleted file mode 100644 index 2f573d60..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TIFFLZWDecoder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffImage.class b/target/classes/com/itextpdf/text/pdf/codec/TiffImage.class deleted file mode 100644 index b4303af7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffImage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldAscii.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldAscii.class deleted file mode 100644 index 8b60eb43..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldAscii.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldBase.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldBase.class deleted file mode 100644 index 83757d99..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldBase.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldByte.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldByte.class deleted file mode 100644 index 2d2adca4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldByte.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldImage.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldImage.class deleted file mode 100644 index 41054321..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldImage.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldLong.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldLong.class deleted file mode 100644 index 9f995f22..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldLong.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldRational.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldRational.class deleted file mode 100644 index 59b052f3..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldRational.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldShort.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldShort.class deleted file mode 100644 index b5ae5862..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldShort.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldUndefined.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldUndefined.class deleted file mode 100644 index 8a0fb9c1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter$FieldUndefined.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter.class b/target/classes/com/itextpdf/text/pdf/codec/TiffWriter.class deleted file mode 100644 index 2a993762..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/TiffWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/InputMeta.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/InputMeta.class deleted file mode 100644 index 981bce9b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/InputMeta.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaBrush.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaBrush.class deleted file mode 100644 index feea2fda..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaBrush.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaDo.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaDo.class deleted file mode 100644 index 2b7ca70b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaDo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaFont.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaFont.class deleted file mode 100644 index 6e3b42c5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaObject.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaObject.class deleted file mode 100644 index 61d7241f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaObject.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaPen.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaPen.class deleted file mode 100644 index d0654faf..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaPen.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaState.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaState.class deleted file mode 100644 index b2c5f217..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/MetaState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/codec/wmf/Point.class b/target/classes/com/itextpdf/text/pdf/codec/wmf/Point.class deleted file mode 100644 index 67bc2d7b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/codec/wmf/Point.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/collection/PdfCollection.class b/target/classes/com/itextpdf/text/pdf/collection/PdfCollection.class deleted file mode 100644 index 216b2225..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/collection/PdfCollection.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionField.class b/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionField.class deleted file mode 100644 index b23a88f1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionField.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionItem.class b/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionItem.class deleted file mode 100644 index 06d1c2ba..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionItem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionSchema.class b/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionSchema.class deleted file mode 100644 index 5732377a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionSchema.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionSort.class b/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionSort.class deleted file mode 100644 index 129c2a02..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/collection/PdfCollectionSort.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/collection/PdfTargetDictionary.class b/target/classes/com/itextpdf/text/pdf/collection/PdfTargetDictionary.class deleted file mode 100644 index 01004851..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/collection/PdfTargetDictionary.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/crypto/AESCipher.class b/target/classes/com/itextpdf/text/pdf/crypto/AESCipher.class deleted file mode 100644 index 8064bc97..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/crypto/AESCipher.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/crypto/AESCipherCBCnoPad.class b/target/classes/com/itextpdf/text/pdf/crypto/AESCipherCBCnoPad.class deleted file mode 100644 index 51afacda..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/crypto/AESCipherCBCnoPad.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/crypto/ARCFOUREncryption.class b/target/classes/com/itextpdf/text/pdf/crypto/ARCFOUREncryption.class deleted file mode 100644 index e296a317..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/crypto/ARCFOUREncryption.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/crypto/IVGenerator.class b/target/classes/com/itextpdf/text/pdf/crypto/IVGenerator.class deleted file mode 100644 index 7c5f08c8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/crypto/IVGenerator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/draw/DottedLineSeparator.class b/target/classes/com/itextpdf/text/pdf/draw/DottedLineSeparator.class deleted file mode 100644 index 8238ba1f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/draw/DottedLineSeparator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/draw/DrawInterface.class b/target/classes/com/itextpdf/text/pdf/draw/DrawInterface.class deleted file mode 100644 index 16d53009..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/draw/DrawInterface.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/draw/LineSeparator.class b/target/classes/com/itextpdf/text/pdf/draw/LineSeparator.class deleted file mode 100644 index 5c45a179..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/draw/LineSeparator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/draw/VerticalPositionMark.class b/target/classes/com/itextpdf/text/pdf/draw/VerticalPositionMark.class deleted file mode 100644 index c89f26a2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/draw/VerticalPositionMark.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/events/FieldPositioningEvents.class b/target/classes/com/itextpdf/text/pdf/events/FieldPositioningEvents.class deleted file mode 100644 index f6e47c8f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/events/FieldPositioningEvents.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/events/IndexEvents$1.class b/target/classes/com/itextpdf/text/pdf/events/IndexEvents$1.class deleted file mode 100644 index b18d78ed..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/events/IndexEvents$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/events/IndexEvents$Entry.class b/target/classes/com/itextpdf/text/pdf/events/IndexEvents$Entry.class deleted file mode 100644 index 7b24846e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/events/IndexEvents$Entry.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/events/IndexEvents.class b/target/classes/com/itextpdf/text/pdf/events/IndexEvents.class deleted file mode 100644 index a5485843..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/events/IndexEvents.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/events/PdfPCellEventForwarder.class b/target/classes/com/itextpdf/text/pdf/events/PdfPCellEventForwarder.class deleted file mode 100644 index 203606d8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/events/PdfPCellEventForwarder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/events/PdfPTableEventForwarder.class b/target/classes/com/itextpdf/text/pdf/events/PdfPTableEventForwarder.class deleted file mode 100644 index 4eda8efe..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/events/PdfPTableEventForwarder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/events/PdfPageEventForwarder.class b/target/classes/com/itextpdf/text/pdf/events/PdfPageEventForwarder.class deleted file mode 100644 index 8f76e134..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/events/PdfPageEventForwarder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Courier-Bold.afm b/target/classes/com/itextpdf/text/pdf/fonts/Courier-Bold.afm deleted file mode 100644 index eb80542b..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Courier-Bold.afm +++ /dev/null @@ -1,342 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Mon Jun 23 16:28:00 1997 -Comment UniqueID 43048 -Comment VMusage 41139 52164 -FontName Courier-Bold -FullName Courier Bold -FamilyName Courier -Weight Bold -ItalicAngle 0 -IsFixedPitch true -CharacterSet ExtendedRoman -FontBBox -113 -250 749 801 -UnderlinePosition -100 -UnderlineThickness 50 -Version 003.000 -Notice Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -EncodingScheme AdobeStandardEncoding -CapHeight 562 -XHeight 439 -Ascender 629 -Descender -157 -StdHW 84 -StdVW 106 -StartCharMetrics 315 -C 32 ; WX 600 ; N space ; B 0 0 0 0 ; -C 33 ; WX 600 ; N exclam ; B 202 -15 398 572 ; -C 34 ; WX 600 ; N quotedbl ; B 135 277 465 562 ; -C 35 ; WX 600 ; N numbersign ; B 56 -45 544 651 ; -C 36 ; WX 600 ; N dollar ; B 82 -126 519 666 ; -C 37 ; WX 600 ; N percent ; B 5 -15 595 616 ; -C 38 ; WX 600 ; N ampersand ; B 36 -15 546 543 ; -C 39 ; WX 600 ; N quoteright ; B 171 277 423 562 ; -C 40 ; WX 600 ; N parenleft ; B 219 -102 461 616 ; -C 41 ; WX 600 ; N parenright ; B 139 -102 381 616 ; -C 42 ; WX 600 ; N asterisk ; B 91 219 509 601 ; -C 43 ; WX 600 ; N plus ; B 71 39 529 478 ; -C 44 ; WX 600 ; N comma ; B 123 -111 393 174 ; -C 45 ; WX 600 ; N hyphen ; B 100 203 500 313 ; -C 46 ; WX 600 ; N period ; B 192 -15 408 171 ; -C 47 ; WX 600 ; N slash ; B 98 -77 502 626 ; -C 48 ; WX 600 ; N zero ; B 87 -15 513 616 ; -C 49 ; WX 600 ; N one ; B 81 0 539 616 ; -C 50 ; WX 600 ; N two ; B 61 0 499 616 ; -C 51 ; WX 600 ; N three ; B 63 -15 501 616 ; -C 52 ; WX 600 ; N four ; B 53 0 507 616 ; -C 53 ; WX 600 ; N five ; B 70 -15 521 601 ; -C 54 ; WX 600 ; N six ; B 90 -15 521 616 ; -C 55 ; WX 600 ; N seven ; B 55 0 494 601 ; -C 56 ; WX 600 ; N eight ; B 83 -15 517 616 ; -C 57 ; WX 600 ; N nine ; B 79 -15 510 616 ; -C 58 ; WX 600 ; N colon ; B 191 -15 407 425 ; -C 59 ; WX 600 ; N semicolon ; B 123 -111 408 425 ; -C 60 ; WX 600 ; N less ; B 66 15 523 501 ; -C 61 ; WX 600 ; N equal ; B 71 118 529 398 ; -C 62 ; WX 600 ; N greater ; B 77 15 534 501 ; -C 63 ; WX 600 ; N question ; B 98 -14 501 580 ; -C 64 ; WX 600 ; N at ; B 16 -15 584 616 ; -C 65 ; WX 600 ; N A ; B -9 0 609 562 ; -C 66 ; WX 600 ; N B ; B 30 0 573 562 ; -C 67 ; WX 600 ; N C ; B 22 -18 560 580 ; -C 68 ; WX 600 ; N D ; B 30 0 594 562 ; -C 69 ; WX 600 ; N E ; B 25 0 560 562 ; -C 70 ; WX 600 ; N F ; B 39 0 570 562 ; -C 71 ; WX 600 ; N G ; B 22 -18 594 580 ; -C 72 ; WX 600 ; N H ; B 20 0 580 562 ; -C 73 ; WX 600 ; N I ; B 77 0 523 562 ; -C 74 ; WX 600 ; N J ; B 37 -18 601 562 ; -C 75 ; WX 600 ; N K ; B 21 0 599 562 ; -C 76 ; WX 600 ; N L ; B 39 0 578 562 ; -C 77 ; WX 600 ; N M ; B -2 0 602 562 ; -C 78 ; WX 600 ; N N ; B 8 -12 610 562 ; -C 79 ; WX 600 ; N O ; B 22 -18 578 580 ; -C 80 ; WX 600 ; N P ; B 48 0 559 562 ; -C 81 ; WX 600 ; N Q ; B 32 -138 578 580 ; -C 82 ; WX 600 ; N R ; B 24 0 599 562 ; -C 83 ; WX 600 ; N S ; B 47 -22 553 582 ; -C 84 ; WX 600 ; N T ; B 21 0 579 562 ; -C 85 ; WX 600 ; N U ; B 4 -18 596 562 ; -C 86 ; WX 600 ; N V ; B -13 0 613 562 ; -C 87 ; WX 600 ; N W ; B -18 0 618 562 ; -C 88 ; WX 600 ; N X ; B 12 0 588 562 ; -C 89 ; WX 600 ; N Y ; B 12 0 589 562 ; -C 90 ; WX 600 ; N Z ; B 62 0 539 562 ; -C 91 ; WX 600 ; N bracketleft ; B 245 -102 475 616 ; -C 92 ; WX 600 ; N backslash ; B 99 -77 503 626 ; -C 93 ; WX 600 ; N bracketright ; B 125 -102 355 616 ; -C 94 ; WX 600 ; N asciicircum ; B 108 250 492 616 ; -C 95 ; WX 600 ; N underscore ; B 0 -125 600 -75 ; -C 96 ; WX 600 ; N quoteleft ; B 178 277 428 562 ; -C 97 ; WX 600 ; N a ; B 35 -15 570 454 ; -C 98 ; WX 600 ; N b ; B 0 -15 584 626 ; -C 99 ; WX 600 ; N c ; B 40 -15 545 459 ; -C 100 ; WX 600 ; N d ; B 20 -15 591 626 ; -C 101 ; WX 600 ; N e ; B 40 -15 563 454 ; -C 102 ; WX 600 ; N f ; B 83 0 547 626 ; L i fi ; L l fl ; -C 103 ; WX 600 ; N g ; B 30 -146 580 454 ; -C 104 ; WX 600 ; N h ; B 5 0 592 626 ; -C 105 ; WX 600 ; N i ; B 77 0 523 658 ; -C 106 ; WX 600 ; N j ; B 63 -146 440 658 ; -C 107 ; WX 600 ; N k ; B 20 0 585 626 ; -C 108 ; WX 600 ; N l ; B 77 0 523 626 ; -C 109 ; WX 600 ; N m ; B -22 0 626 454 ; -C 110 ; WX 600 ; N n ; B 18 0 592 454 ; -C 111 ; WX 600 ; N o ; B 30 -15 570 454 ; -C 112 ; WX 600 ; N p ; B -1 -142 570 454 ; -C 113 ; WX 600 ; N q ; B 20 -142 591 454 ; -C 114 ; WX 600 ; N r ; B 47 0 580 454 ; -C 115 ; WX 600 ; N s ; B 68 -17 535 459 ; -C 116 ; WX 600 ; N t ; B 47 -15 532 562 ; -C 117 ; WX 600 ; N u ; B -1 -15 569 439 ; -C 118 ; WX 600 ; N v ; B -1 0 601 439 ; -C 119 ; WX 600 ; N w ; B -18 0 618 439 ; -C 120 ; WX 600 ; N x ; B 6 0 594 439 ; -C 121 ; WX 600 ; N y ; B -4 -142 601 439 ; -C 122 ; WX 600 ; N z ; B 81 0 520 439 ; -C 123 ; WX 600 ; N braceleft ; B 160 -102 464 616 ; -C 124 ; WX 600 ; N bar ; B 255 -250 345 750 ; -C 125 ; WX 600 ; N braceright ; B 136 -102 440 616 ; -C 126 ; WX 600 ; N asciitilde ; B 71 153 530 356 ; -C 161 ; WX 600 ; N exclamdown ; B 202 -146 398 449 ; -C 162 ; WX 600 ; N cent ; B 66 -49 518 614 ; -C 163 ; WX 600 ; N sterling ; B 72 -28 558 611 ; -C 164 ; WX 600 ; N fraction ; B 25 -60 576 661 ; -C 165 ; WX 600 ; N yen ; B 10 0 590 562 ; -C 166 ; WX 600 ; N florin ; B -30 -131 572 616 ; -C 167 ; WX 600 ; N section ; B 83 -70 517 580 ; -C 168 ; WX 600 ; N currency ; B 54 49 546 517 ; -C 169 ; WX 600 ; N quotesingle ; B 227 277 373 562 ; -C 170 ; WX 600 ; N quotedblleft ; B 71 277 535 562 ; -C 171 ; WX 600 ; N guillemotleft ; B 8 70 553 446 ; -C 172 ; WX 600 ; N guilsinglleft ; B 141 70 459 446 ; -C 173 ; WX 600 ; N guilsinglright ; B 141 70 459 446 ; -C 174 ; WX 600 ; N fi ; B 12 0 593 626 ; -C 175 ; WX 600 ; N fl ; B 12 0 593 626 ; -C 177 ; WX 600 ; N endash ; B 65 203 535 313 ; -C 178 ; WX 600 ; N dagger ; B 106 -70 494 580 ; -C 179 ; WX 600 ; N daggerdbl ; B 106 -70 494 580 ; -C 180 ; WX 600 ; N periodcentered ; B 196 165 404 351 ; -C 182 ; WX 600 ; N paragraph ; B 6 -70 576 580 ; -C 183 ; WX 600 ; N bullet ; B 140 132 460 430 ; -C 184 ; WX 600 ; N quotesinglbase ; B 175 -142 427 143 ; -C 185 ; WX 600 ; N quotedblbase ; B 65 -142 529 143 ; -C 186 ; WX 600 ; N quotedblright ; B 61 277 525 562 ; -C 187 ; WX 600 ; N guillemotright ; B 47 70 592 446 ; -C 188 ; WX 600 ; N ellipsis ; B 26 -15 574 116 ; -C 189 ; WX 600 ; N perthousand ; B -113 -15 713 616 ; -C 191 ; WX 600 ; N questiondown ; B 99 -146 502 449 ; -C 193 ; WX 600 ; N grave ; B 132 508 395 661 ; -C 194 ; WX 600 ; N acute ; B 205 508 468 661 ; -C 195 ; WX 600 ; N circumflex ; B 103 483 497 657 ; -C 196 ; WX 600 ; N tilde ; B 89 493 512 636 ; -C 197 ; WX 600 ; N macron ; B 88 505 512 585 ; -C 198 ; WX 600 ; N breve ; B 83 468 517 631 ; -C 199 ; WX 600 ; N dotaccent ; B 230 498 370 638 ; -C 200 ; WX 600 ; N dieresis ; B 128 498 472 638 ; -C 202 ; WX 600 ; N ring ; B 198 481 402 678 ; -C 203 ; WX 600 ; N cedilla ; B 205 -206 387 0 ; -C 205 ; WX 600 ; N hungarumlaut ; B 68 488 588 661 ; -C 206 ; WX 600 ; N ogonek ; B 169 -199 400 0 ; -C 207 ; WX 600 ; N caron ; B 103 493 497 667 ; -C 208 ; WX 600 ; N emdash ; B -10 203 610 313 ; -C 225 ; WX 600 ; N AE ; B -29 0 602 562 ; -C 227 ; WX 600 ; N ordfeminine ; B 147 196 453 580 ; -C 232 ; WX 600 ; N Lslash ; B 39 0 578 562 ; -C 233 ; WX 600 ; N Oslash ; B 22 -22 578 584 ; -C 234 ; WX 600 ; N OE ; B -25 0 595 562 ; -C 235 ; WX 600 ; N ordmasculine ; B 147 196 453 580 ; -C 241 ; WX 600 ; N ae ; B -4 -15 601 454 ; -C 245 ; WX 600 ; N dotlessi ; B 77 0 523 439 ; -C 248 ; WX 600 ; N lslash ; B 77 0 523 626 ; -C 249 ; WX 600 ; N oslash ; B 30 -24 570 463 ; -C 250 ; WX 600 ; N oe ; B -18 -15 611 454 ; -C 251 ; WX 600 ; N germandbls ; B 22 -15 596 626 ; -C -1 ; WX 600 ; N Idieresis ; B 77 0 523 761 ; -C -1 ; WX 600 ; N eacute ; B 40 -15 563 661 ; -C -1 ; WX 600 ; N abreve ; B 35 -15 570 661 ; -C -1 ; WX 600 ; N uhungarumlaut ; B -1 -15 628 661 ; -C -1 ; WX 600 ; N ecaron ; B 40 -15 563 667 ; -C -1 ; WX 600 ; N Ydieresis ; B 12 0 589 761 ; -C -1 ; WX 600 ; N divide ; B 71 16 529 500 ; -C -1 ; WX 600 ; N Yacute ; B 12 0 589 784 ; -C -1 ; WX 600 ; N Acircumflex ; B -9 0 609 780 ; -C -1 ; WX 600 ; N aacute ; B 35 -15 570 661 ; -C -1 ; WX 600 ; N Ucircumflex ; B 4 -18 596 780 ; -C -1 ; WX 600 ; N yacute ; B -4 -142 601 661 ; -C -1 ; WX 600 ; N scommaaccent ; B 68 -250 535 459 ; -C -1 ; WX 600 ; N ecircumflex ; B 40 -15 563 657 ; -C -1 ; WX 600 ; N Uring ; B 4 -18 596 801 ; -C -1 ; WX 600 ; N Udieresis ; B 4 -18 596 761 ; -C -1 ; WX 600 ; N aogonek ; B 35 -199 586 454 ; -C -1 ; WX 600 ; N Uacute ; B 4 -18 596 784 ; -C -1 ; WX 600 ; N uogonek ; B -1 -199 585 439 ; -C -1 ; WX 600 ; N Edieresis ; B 25 0 560 761 ; -C -1 ; WX 600 ; N Dcroat ; B 30 0 594 562 ; -C -1 ; WX 600 ; N commaaccent ; B 205 -250 397 -57 ; -C -1 ; WX 600 ; N copyright ; B 0 -18 600 580 ; -C -1 ; WX 600 ; N Emacron ; B 25 0 560 708 ; -C -1 ; WX 600 ; N ccaron ; B 40 -15 545 667 ; -C -1 ; WX 600 ; N aring ; B 35 -15 570 678 ; -C -1 ; WX 600 ; N Ncommaaccent ; B 8 -250 610 562 ; -C -1 ; WX 600 ; N lacute ; B 77 0 523 801 ; -C -1 ; WX 600 ; N agrave ; B 35 -15 570 661 ; -C -1 ; WX 600 ; N Tcommaaccent ; B 21 -250 579 562 ; -C -1 ; WX 600 ; N Cacute ; B 22 -18 560 784 ; -C -1 ; WX 600 ; N atilde ; B 35 -15 570 636 ; -C -1 ; WX 600 ; N Edotaccent ; B 25 0 560 761 ; -C -1 ; WX 600 ; N scaron ; B 68 -17 535 667 ; -C -1 ; WX 600 ; N scedilla ; B 68 -206 535 459 ; -C -1 ; WX 600 ; N iacute ; B 77 0 523 661 ; -C -1 ; WX 600 ; N lozenge ; B 66 0 534 740 ; -C -1 ; WX 600 ; N Rcaron ; B 24 0 599 790 ; -C -1 ; WX 600 ; N Gcommaaccent ; B 22 -250 594 580 ; -C -1 ; WX 600 ; N ucircumflex ; B -1 -15 569 657 ; -C -1 ; WX 600 ; N acircumflex ; B 35 -15 570 657 ; -C -1 ; WX 600 ; N Amacron ; B -9 0 609 708 ; -C -1 ; WX 600 ; N rcaron ; B 47 0 580 667 ; -C -1 ; WX 600 ; N ccedilla ; B 40 -206 545 459 ; -C -1 ; WX 600 ; N Zdotaccent ; B 62 0 539 761 ; -C -1 ; WX 600 ; N Thorn ; B 48 0 557 562 ; -C -1 ; WX 600 ; N Omacron ; B 22 -18 578 708 ; -C -1 ; WX 600 ; N Racute ; B 24 0 599 784 ; -C -1 ; WX 600 ; N Sacute ; B 47 -22 553 784 ; -C -1 ; WX 600 ; N dcaron ; B 20 -15 727 626 ; -C -1 ; WX 600 ; N Umacron ; B 4 -18 596 708 ; -C -1 ; WX 600 ; N uring ; B -1 -15 569 678 ; -C -1 ; WX 600 ; N threesuperior ; B 138 222 433 616 ; -C -1 ; WX 600 ; N Ograve ; B 22 -18 578 784 ; -C -1 ; WX 600 ; N Agrave ; B -9 0 609 784 ; -C -1 ; WX 600 ; N Abreve ; B -9 0 609 784 ; -C -1 ; WX 600 ; N multiply ; B 81 39 520 478 ; -C -1 ; WX 600 ; N uacute ; B -1 -15 569 661 ; -C -1 ; WX 600 ; N Tcaron ; B 21 0 579 790 ; -C -1 ; WX 600 ; N partialdiff ; B 63 -38 537 728 ; -C -1 ; WX 600 ; N ydieresis ; B -4 -142 601 638 ; -C -1 ; WX 600 ; N Nacute ; B 8 -12 610 784 ; -C -1 ; WX 600 ; N icircumflex ; B 73 0 523 657 ; -C -1 ; WX 600 ; N Ecircumflex ; B 25 0 560 780 ; -C -1 ; WX 600 ; N adieresis ; B 35 -15 570 638 ; -C -1 ; WX 600 ; N edieresis ; B 40 -15 563 638 ; -C -1 ; WX 600 ; N cacute ; B 40 -15 545 661 ; -C -1 ; WX 600 ; N nacute ; B 18 0 592 661 ; -C -1 ; WX 600 ; N umacron ; B -1 -15 569 585 ; -C -1 ; WX 600 ; N Ncaron ; B 8 -12 610 790 ; -C -1 ; WX 600 ; N Iacute ; B 77 0 523 784 ; -C -1 ; WX 600 ; N plusminus ; B 71 24 529 515 ; -C -1 ; WX 600 ; N brokenbar ; B 255 -175 345 675 ; -C -1 ; WX 600 ; N registered ; B 0 -18 600 580 ; -C -1 ; WX 600 ; N Gbreve ; B 22 -18 594 784 ; -C -1 ; WX 600 ; N Idotaccent ; B 77 0 523 761 ; -C -1 ; WX 600 ; N summation ; B 15 -10 586 706 ; -C -1 ; WX 600 ; N Egrave ; B 25 0 560 784 ; -C -1 ; WX 600 ; N racute ; B 47 0 580 661 ; -C -1 ; WX 600 ; N omacron ; B 30 -15 570 585 ; -C -1 ; WX 600 ; N Zacute ; B 62 0 539 784 ; -C -1 ; WX 600 ; N Zcaron ; B 62 0 539 790 ; -C -1 ; WX 600 ; N greaterequal ; B 26 0 523 696 ; -C -1 ; WX 600 ; N Eth ; B 30 0 594 562 ; -C -1 ; WX 600 ; N Ccedilla ; B 22 -206 560 580 ; -C -1 ; WX 600 ; N lcommaaccent ; B 77 -250 523 626 ; -C -1 ; WX 600 ; N tcaron ; B 47 -15 532 703 ; -C -1 ; WX 600 ; N eogonek ; B 40 -199 563 454 ; -C -1 ; WX 600 ; N Uogonek ; B 4 -199 596 562 ; -C -1 ; WX 600 ; N Aacute ; B -9 0 609 784 ; -C -1 ; WX 600 ; N Adieresis ; B -9 0 609 761 ; -C -1 ; WX 600 ; N egrave ; B 40 -15 563 661 ; -C -1 ; WX 600 ; N zacute ; B 81 0 520 661 ; -C -1 ; WX 600 ; N iogonek ; B 77 -199 523 658 ; -C -1 ; WX 600 ; N Oacute ; B 22 -18 578 784 ; -C -1 ; WX 600 ; N oacute ; B 30 -15 570 661 ; -C -1 ; WX 600 ; N amacron ; B 35 -15 570 585 ; -C -1 ; WX 600 ; N sacute ; B 68 -17 535 661 ; -C -1 ; WX 600 ; N idieresis ; B 77 0 523 618 ; -C -1 ; WX 600 ; N Ocircumflex ; B 22 -18 578 780 ; -C -1 ; WX 600 ; N Ugrave ; B 4 -18 596 784 ; -C -1 ; WX 600 ; N Delta ; B 6 0 594 688 ; -C -1 ; WX 600 ; N thorn ; B -14 -142 570 626 ; -C -1 ; WX 600 ; N twosuperior ; B 143 230 436 616 ; -C -1 ; WX 600 ; N Odieresis ; B 22 -18 578 761 ; -C -1 ; WX 600 ; N mu ; B -1 -142 569 439 ; -C -1 ; WX 600 ; N igrave ; B 77 0 523 661 ; -C -1 ; WX 600 ; N ohungarumlaut ; B 30 -15 668 661 ; -C -1 ; WX 600 ; N Eogonek ; B 25 -199 576 562 ; -C -1 ; WX 600 ; N dcroat ; B 20 -15 591 626 ; -C -1 ; WX 600 ; N threequarters ; B -47 -60 648 661 ; -C -1 ; WX 600 ; N Scedilla ; B 47 -206 553 582 ; -C -1 ; WX 600 ; N lcaron ; B 77 0 597 626 ; -C -1 ; WX 600 ; N Kcommaaccent ; B 21 -250 599 562 ; -C -1 ; WX 600 ; N Lacute ; B 39 0 578 784 ; -C -1 ; WX 600 ; N trademark ; B -9 230 749 562 ; -C -1 ; WX 600 ; N edotaccent ; B 40 -15 563 638 ; -C -1 ; WX 600 ; N Igrave ; B 77 0 523 784 ; -C -1 ; WX 600 ; N Imacron ; B 77 0 523 708 ; -C -1 ; WX 600 ; N Lcaron ; B 39 0 637 562 ; -C -1 ; WX 600 ; N onehalf ; B -47 -60 648 661 ; -C -1 ; WX 600 ; N lessequal ; B 26 0 523 696 ; -C -1 ; WX 600 ; N ocircumflex ; B 30 -15 570 657 ; -C -1 ; WX 600 ; N ntilde ; B 18 0 592 636 ; -C -1 ; WX 600 ; N Uhungarumlaut ; B 4 -18 638 784 ; -C -1 ; WX 600 ; N Eacute ; B 25 0 560 784 ; -C -1 ; WX 600 ; N emacron ; B 40 -15 563 585 ; -C -1 ; WX 600 ; N gbreve ; B 30 -146 580 661 ; -C -1 ; WX 600 ; N onequarter ; B -56 -60 656 661 ; -C -1 ; WX 600 ; N Scaron ; B 47 -22 553 790 ; -C -1 ; WX 600 ; N Scommaaccent ; B 47 -250 553 582 ; -C -1 ; WX 600 ; N Ohungarumlaut ; B 22 -18 628 784 ; -C -1 ; WX 600 ; N degree ; B 86 243 474 616 ; -C -1 ; WX 600 ; N ograve ; B 30 -15 570 661 ; -C -1 ; WX 600 ; N Ccaron ; B 22 -18 560 790 ; -C -1 ; WX 600 ; N ugrave ; B -1 -15 569 661 ; -C -1 ; WX 600 ; N radical ; B -19 -104 473 778 ; -C -1 ; WX 600 ; N Dcaron ; B 30 0 594 790 ; -C -1 ; WX 600 ; N rcommaaccent ; B 47 -250 580 454 ; -C -1 ; WX 600 ; N Ntilde ; B 8 -12 610 759 ; -C -1 ; WX 600 ; N otilde ; B 30 -15 570 636 ; -C -1 ; WX 600 ; N Rcommaaccent ; B 24 -250 599 562 ; -C -1 ; WX 600 ; N Lcommaaccent ; B 39 -250 578 562 ; -C -1 ; WX 600 ; N Atilde ; B -9 0 609 759 ; -C -1 ; WX 600 ; N Aogonek ; B -9 -199 625 562 ; -C -1 ; WX 600 ; N Aring ; B -9 0 609 801 ; -C -1 ; WX 600 ; N Otilde ; B 22 -18 578 759 ; -C -1 ; WX 600 ; N zdotaccent ; B 81 0 520 638 ; -C -1 ; WX 600 ; N Ecaron ; B 25 0 560 790 ; -C -1 ; WX 600 ; N Iogonek ; B 77 -199 523 562 ; -C -1 ; WX 600 ; N kcommaaccent ; B 20 -250 585 626 ; -C -1 ; WX 600 ; N minus ; B 71 203 529 313 ; -C -1 ; WX 600 ; N Icircumflex ; B 77 0 523 780 ; -C -1 ; WX 600 ; N ncaron ; B 18 0 592 667 ; -C -1 ; WX 600 ; N tcommaaccent ; B 47 -250 532 562 ; -C -1 ; WX 600 ; N logicalnot ; B 71 103 529 413 ; -C -1 ; WX 600 ; N odieresis ; B 30 -15 570 638 ; -C -1 ; WX 600 ; N udieresis ; B -1 -15 569 638 ; -C -1 ; WX 600 ; N notequal ; B 12 -47 537 563 ; -C -1 ; WX 600 ; N gcommaaccent ; B 30 -146 580 714 ; -C -1 ; WX 600 ; N eth ; B 58 -27 543 626 ; -C -1 ; WX 600 ; N zcaron ; B 81 0 520 667 ; -C -1 ; WX 600 ; N ncommaaccent ; B 18 -250 592 454 ; -C -1 ; WX 600 ; N onesuperior ; B 153 230 447 616 ; -C -1 ; WX 600 ; N imacron ; B 77 0 523 585 ; -C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Courier-BoldOblique.afm b/target/classes/com/itextpdf/text/pdf/fonts/Courier-BoldOblique.afm deleted file mode 100644 index 29d3b8b1..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Courier-BoldOblique.afm +++ /dev/null @@ -1,342 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Mon Jun 23 16:28:46 1997 -Comment UniqueID 43049 -Comment VMusage 17529 79244 -FontName Courier-BoldOblique -FullName Courier Bold Oblique -FamilyName Courier -Weight Bold -ItalicAngle -12 -IsFixedPitch true -CharacterSet ExtendedRoman -FontBBox -57 -250 869 801 -UnderlinePosition -100 -UnderlineThickness 50 -Version 003.000 -Notice Copyright (c) 1989, 1990, 1991, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -EncodingScheme AdobeStandardEncoding -CapHeight 562 -XHeight 439 -Ascender 629 -Descender -157 -StdHW 84 -StdVW 106 -StartCharMetrics 315 -C 32 ; WX 600 ; N space ; B 0 0 0 0 ; -C 33 ; WX 600 ; N exclam ; B 215 -15 495 572 ; -C 34 ; WX 600 ; N quotedbl ; B 211 277 585 562 ; -C 35 ; WX 600 ; N numbersign ; B 88 -45 641 651 ; -C 36 ; WX 600 ; N dollar ; B 87 -126 630 666 ; -C 37 ; WX 600 ; N percent ; B 101 -15 625 616 ; -C 38 ; WX 600 ; N ampersand ; B 61 -15 595 543 ; -C 39 ; WX 600 ; N quoteright ; B 229 277 543 562 ; -C 40 ; WX 600 ; N parenleft ; B 265 -102 592 616 ; -C 41 ; WX 600 ; N parenright ; B 117 -102 444 616 ; -C 42 ; WX 600 ; N asterisk ; B 179 219 598 601 ; -C 43 ; WX 600 ; N plus ; B 114 39 596 478 ; -C 44 ; WX 600 ; N comma ; B 99 -111 430 174 ; -C 45 ; WX 600 ; N hyphen ; B 143 203 567 313 ; -C 46 ; WX 600 ; N period ; B 206 -15 427 171 ; -C 47 ; WX 600 ; N slash ; B 90 -77 626 626 ; -C 48 ; WX 600 ; N zero ; B 135 -15 593 616 ; -C 49 ; WX 600 ; N one ; B 93 0 562 616 ; -C 50 ; WX 600 ; N two ; B 61 0 594 616 ; -C 51 ; WX 600 ; N three ; B 71 -15 571 616 ; -C 52 ; WX 600 ; N four ; B 81 0 559 616 ; -C 53 ; WX 600 ; N five ; B 77 -15 621 601 ; -C 54 ; WX 600 ; N six ; B 135 -15 652 616 ; -C 55 ; WX 600 ; N seven ; B 147 0 622 601 ; -C 56 ; WX 600 ; N eight ; B 115 -15 604 616 ; -C 57 ; WX 600 ; N nine ; B 75 -15 592 616 ; -C 58 ; WX 600 ; N colon ; B 205 -15 480 425 ; -C 59 ; WX 600 ; N semicolon ; B 99 -111 481 425 ; -C 60 ; WX 600 ; N less ; B 120 15 613 501 ; -C 61 ; WX 600 ; N equal ; B 96 118 614 398 ; -C 62 ; WX 600 ; N greater ; B 97 15 589 501 ; -C 63 ; WX 600 ; N question ; B 183 -14 592 580 ; -C 64 ; WX 600 ; N at ; B 65 -15 642 616 ; -C 65 ; WX 600 ; N A ; B -9 0 632 562 ; -C 66 ; WX 600 ; N B ; B 30 0 630 562 ; -C 67 ; WX 600 ; N C ; B 74 -18 675 580 ; -C 68 ; WX 600 ; N D ; B 30 0 664 562 ; -C 69 ; WX 600 ; N E ; B 25 0 670 562 ; -C 70 ; WX 600 ; N F ; B 39 0 684 562 ; -C 71 ; WX 600 ; N G ; B 74 -18 675 580 ; -C 72 ; WX 600 ; N H ; B 20 0 700 562 ; -C 73 ; WX 600 ; N I ; B 77 0 643 562 ; -C 74 ; WX 600 ; N J ; B 58 -18 721 562 ; -C 75 ; WX 600 ; N K ; B 21 0 692 562 ; -C 76 ; WX 600 ; N L ; B 39 0 636 562 ; -C 77 ; WX 600 ; N M ; B -2 0 722 562 ; -C 78 ; WX 600 ; N N ; B 8 -12 730 562 ; -C 79 ; WX 600 ; N O ; B 74 -18 645 580 ; -C 80 ; WX 600 ; N P ; B 48 0 643 562 ; -C 81 ; WX 600 ; N Q ; B 83 -138 636 580 ; -C 82 ; WX 600 ; N R ; B 24 0 617 562 ; -C 83 ; WX 600 ; N S ; B 54 -22 673 582 ; -C 84 ; WX 600 ; N T ; B 86 0 679 562 ; -C 85 ; WX 600 ; N U ; B 101 -18 716 562 ; -C 86 ; WX 600 ; N V ; B 84 0 733 562 ; -C 87 ; WX 600 ; N W ; B 79 0 738 562 ; -C 88 ; WX 600 ; N X ; B 12 0 690 562 ; -C 89 ; WX 600 ; N Y ; B 109 0 709 562 ; -C 90 ; WX 600 ; N Z ; B 62 0 637 562 ; -C 91 ; WX 600 ; N bracketleft ; B 223 -102 606 616 ; -C 92 ; WX 600 ; N backslash ; B 222 -77 496 626 ; -C 93 ; WX 600 ; N bracketright ; B 103 -102 486 616 ; -C 94 ; WX 600 ; N asciicircum ; B 171 250 556 616 ; -C 95 ; WX 600 ; N underscore ; B -27 -125 585 -75 ; -C 96 ; WX 600 ; N quoteleft ; B 297 277 487 562 ; -C 97 ; WX 600 ; N a ; B 61 -15 593 454 ; -C 98 ; WX 600 ; N b ; B 13 -15 636 626 ; -C 99 ; WX 600 ; N c ; B 81 -15 631 459 ; -C 100 ; WX 600 ; N d ; B 60 -15 645 626 ; -C 101 ; WX 600 ; N e ; B 81 -15 605 454 ; -C 102 ; WX 600 ; N f ; B 83 0 677 626 ; L i fi ; L l fl ; -C 103 ; WX 600 ; N g ; B 40 -146 674 454 ; -C 104 ; WX 600 ; N h ; B 18 0 615 626 ; -C 105 ; WX 600 ; N i ; B 77 0 546 658 ; -C 106 ; WX 600 ; N j ; B 36 -146 580 658 ; -C 107 ; WX 600 ; N k ; B 33 0 643 626 ; -C 108 ; WX 600 ; N l ; B 77 0 546 626 ; -C 109 ; WX 600 ; N m ; B -22 0 649 454 ; -C 110 ; WX 600 ; N n ; B 18 0 615 454 ; -C 111 ; WX 600 ; N o ; B 71 -15 622 454 ; -C 112 ; WX 600 ; N p ; B -32 -142 622 454 ; -C 113 ; WX 600 ; N q ; B 60 -142 685 454 ; -C 114 ; WX 600 ; N r ; B 47 0 655 454 ; -C 115 ; WX 600 ; N s ; B 66 -17 608 459 ; -C 116 ; WX 600 ; N t ; B 118 -15 567 562 ; -C 117 ; WX 600 ; N u ; B 70 -15 592 439 ; -C 118 ; WX 600 ; N v ; B 70 0 695 439 ; -C 119 ; WX 600 ; N w ; B 53 0 712 439 ; -C 120 ; WX 600 ; N x ; B 6 0 671 439 ; -C 121 ; WX 600 ; N y ; B -21 -142 695 439 ; -C 122 ; WX 600 ; N z ; B 81 0 614 439 ; -C 123 ; WX 600 ; N braceleft ; B 203 -102 595 616 ; -C 124 ; WX 600 ; N bar ; B 201 -250 505 750 ; -C 125 ; WX 600 ; N braceright ; B 114 -102 506 616 ; -C 126 ; WX 600 ; N asciitilde ; B 120 153 590 356 ; -C 161 ; WX 600 ; N exclamdown ; B 196 -146 477 449 ; -C 162 ; WX 600 ; N cent ; B 121 -49 605 614 ; -C 163 ; WX 600 ; N sterling ; B 106 -28 650 611 ; -C 164 ; WX 600 ; N fraction ; B 22 -60 708 661 ; -C 165 ; WX 600 ; N yen ; B 98 0 710 562 ; -C 166 ; WX 600 ; N florin ; B -57 -131 702 616 ; -C 167 ; WX 600 ; N section ; B 74 -70 620 580 ; -C 168 ; WX 600 ; N currency ; B 77 49 644 517 ; -C 169 ; WX 600 ; N quotesingle ; B 303 277 493 562 ; -C 170 ; WX 600 ; N quotedblleft ; B 190 277 594 562 ; -C 171 ; WX 600 ; N guillemotleft ; B 62 70 639 446 ; -C 172 ; WX 600 ; N guilsinglleft ; B 195 70 545 446 ; -C 173 ; WX 600 ; N guilsinglright ; B 165 70 514 446 ; -C 174 ; WX 600 ; N fi ; B 12 0 644 626 ; -C 175 ; WX 600 ; N fl ; B 12 0 644 626 ; -C 177 ; WX 600 ; N endash ; B 108 203 602 313 ; -C 178 ; WX 600 ; N dagger ; B 175 -70 586 580 ; -C 179 ; WX 600 ; N daggerdbl ; B 121 -70 587 580 ; -C 180 ; WX 600 ; N periodcentered ; B 248 165 461 351 ; -C 182 ; WX 600 ; N paragraph ; B 61 -70 700 580 ; -C 183 ; WX 600 ; N bullet ; B 196 132 523 430 ; -C 184 ; WX 600 ; N quotesinglbase ; B 144 -142 458 143 ; -C 185 ; WX 600 ; N quotedblbase ; B 34 -142 560 143 ; -C 186 ; WX 600 ; N quotedblright ; B 119 277 645 562 ; -C 187 ; WX 600 ; N guillemotright ; B 71 70 647 446 ; -C 188 ; WX 600 ; N ellipsis ; B 35 -15 587 116 ; -C 189 ; WX 600 ; N perthousand ; B -45 -15 743 616 ; -C 191 ; WX 600 ; N questiondown ; B 100 -146 509 449 ; -C 193 ; WX 600 ; N grave ; B 272 508 503 661 ; -C 194 ; WX 600 ; N acute ; B 312 508 609 661 ; -C 195 ; WX 600 ; N circumflex ; B 212 483 607 657 ; -C 196 ; WX 600 ; N tilde ; B 199 493 643 636 ; -C 197 ; WX 600 ; N macron ; B 195 505 637 585 ; -C 198 ; WX 600 ; N breve ; B 217 468 652 631 ; -C 199 ; WX 600 ; N dotaccent ; B 348 498 493 638 ; -C 200 ; WX 600 ; N dieresis ; B 246 498 595 638 ; -C 202 ; WX 600 ; N ring ; B 319 481 528 678 ; -C 203 ; WX 600 ; N cedilla ; B 168 -206 368 0 ; -C 205 ; WX 600 ; N hungarumlaut ; B 171 488 729 661 ; -C 206 ; WX 600 ; N ogonek ; B 143 -199 367 0 ; -C 207 ; WX 600 ; N caron ; B 238 493 633 667 ; -C 208 ; WX 600 ; N emdash ; B 33 203 677 313 ; -C 225 ; WX 600 ; N AE ; B -29 0 708 562 ; -C 227 ; WX 600 ; N ordfeminine ; B 188 196 526 580 ; -C 232 ; WX 600 ; N Lslash ; B 39 0 636 562 ; -C 233 ; WX 600 ; N Oslash ; B 48 -22 673 584 ; -C 234 ; WX 600 ; N OE ; B 26 0 701 562 ; -C 235 ; WX 600 ; N ordmasculine ; B 188 196 543 580 ; -C 241 ; WX 600 ; N ae ; B 21 -15 652 454 ; -C 245 ; WX 600 ; N dotlessi ; B 77 0 546 439 ; -C 248 ; WX 600 ; N lslash ; B 77 0 587 626 ; -C 249 ; WX 600 ; N oslash ; B 54 -24 638 463 ; -C 250 ; WX 600 ; N oe ; B 18 -15 662 454 ; -C 251 ; WX 600 ; N germandbls ; B 22 -15 629 626 ; -C -1 ; WX 600 ; N Idieresis ; B 77 0 643 761 ; -C -1 ; WX 600 ; N eacute ; B 81 -15 609 661 ; -C -1 ; WX 600 ; N abreve ; B 61 -15 658 661 ; -C -1 ; WX 600 ; N uhungarumlaut ; B 70 -15 769 661 ; -C -1 ; WX 600 ; N ecaron ; B 81 -15 633 667 ; -C -1 ; WX 600 ; N Ydieresis ; B 109 0 709 761 ; -C -1 ; WX 600 ; N divide ; B 114 16 596 500 ; -C -1 ; WX 600 ; N Yacute ; B 109 0 709 784 ; -C -1 ; WX 600 ; N Acircumflex ; B -9 0 632 780 ; -C -1 ; WX 600 ; N aacute ; B 61 -15 609 661 ; -C -1 ; WX 600 ; N Ucircumflex ; B 101 -18 716 780 ; -C -1 ; WX 600 ; N yacute ; B -21 -142 695 661 ; -C -1 ; WX 600 ; N scommaaccent ; B 66 -250 608 459 ; -C -1 ; WX 600 ; N ecircumflex ; B 81 -15 607 657 ; -C -1 ; WX 600 ; N Uring ; B 101 -18 716 801 ; -C -1 ; WX 600 ; N Udieresis ; B 101 -18 716 761 ; -C -1 ; WX 600 ; N aogonek ; B 61 -199 593 454 ; -C -1 ; WX 600 ; N Uacute ; B 101 -18 716 784 ; -C -1 ; WX 600 ; N uogonek ; B 70 -199 592 439 ; -C -1 ; WX 600 ; N Edieresis ; B 25 0 670 761 ; -C -1 ; WX 600 ; N Dcroat ; B 30 0 664 562 ; -C -1 ; WX 600 ; N commaaccent ; B 151 -250 385 -57 ; -C -1 ; WX 600 ; N copyright ; B 53 -18 667 580 ; -C -1 ; WX 600 ; N Emacron ; B 25 0 670 708 ; -C -1 ; WX 600 ; N ccaron ; B 81 -15 633 667 ; -C -1 ; WX 600 ; N aring ; B 61 -15 593 678 ; -C -1 ; WX 600 ; N Ncommaaccent ; B 8 -250 730 562 ; -C -1 ; WX 600 ; N lacute ; B 77 0 639 801 ; -C -1 ; WX 600 ; N agrave ; B 61 -15 593 661 ; -C -1 ; WX 600 ; N Tcommaaccent ; B 86 -250 679 562 ; -C -1 ; WX 600 ; N Cacute ; B 74 -18 675 784 ; -C -1 ; WX 600 ; N atilde ; B 61 -15 643 636 ; -C -1 ; WX 600 ; N Edotaccent ; B 25 0 670 761 ; -C -1 ; WX 600 ; N scaron ; B 66 -17 633 667 ; -C -1 ; WX 600 ; N scedilla ; B 66 -206 608 459 ; -C -1 ; WX 600 ; N iacute ; B 77 0 609 661 ; -C -1 ; WX 600 ; N lozenge ; B 145 0 614 740 ; -C -1 ; WX 600 ; N Rcaron ; B 24 0 659 790 ; -C -1 ; WX 600 ; N Gcommaaccent ; B 74 -250 675 580 ; -C -1 ; WX 600 ; N ucircumflex ; B 70 -15 597 657 ; -C -1 ; WX 600 ; N acircumflex ; B 61 -15 607 657 ; -C -1 ; WX 600 ; N Amacron ; B -9 0 633 708 ; -C -1 ; WX 600 ; N rcaron ; B 47 0 655 667 ; -C -1 ; WX 600 ; N ccedilla ; B 81 -206 631 459 ; -C -1 ; WX 600 ; N Zdotaccent ; B 62 0 637 761 ; -C -1 ; WX 600 ; N Thorn ; B 48 0 620 562 ; -C -1 ; WX 600 ; N Omacron ; B 74 -18 663 708 ; -C -1 ; WX 600 ; N Racute ; B 24 0 665 784 ; -C -1 ; WX 600 ; N Sacute ; B 54 -22 673 784 ; -C -1 ; WX 600 ; N dcaron ; B 60 -15 861 626 ; -C -1 ; WX 600 ; N Umacron ; B 101 -18 716 708 ; -C -1 ; WX 600 ; N uring ; B 70 -15 592 678 ; -C -1 ; WX 600 ; N threesuperior ; B 193 222 526 616 ; -C -1 ; WX 600 ; N Ograve ; B 74 -18 645 784 ; -C -1 ; WX 600 ; N Agrave ; B -9 0 632 784 ; -C -1 ; WX 600 ; N Abreve ; B -9 0 684 784 ; -C -1 ; WX 600 ; N multiply ; B 104 39 606 478 ; -C -1 ; WX 600 ; N uacute ; B 70 -15 599 661 ; -C -1 ; WX 600 ; N Tcaron ; B 86 0 679 790 ; -C -1 ; WX 600 ; N partialdiff ; B 91 -38 627 728 ; -C -1 ; WX 600 ; N ydieresis ; B -21 -142 695 638 ; -C -1 ; WX 600 ; N Nacute ; B 8 -12 730 784 ; -C -1 ; WX 600 ; N icircumflex ; B 77 0 577 657 ; -C -1 ; WX 600 ; N Ecircumflex ; B 25 0 670 780 ; -C -1 ; WX 600 ; N adieresis ; B 61 -15 595 638 ; -C -1 ; WX 600 ; N edieresis ; B 81 -15 605 638 ; -C -1 ; WX 600 ; N cacute ; B 81 -15 649 661 ; -C -1 ; WX 600 ; N nacute ; B 18 0 639 661 ; -C -1 ; WX 600 ; N umacron ; B 70 -15 637 585 ; -C -1 ; WX 600 ; N Ncaron ; B 8 -12 730 790 ; -C -1 ; WX 600 ; N Iacute ; B 77 0 643 784 ; -C -1 ; WX 600 ; N plusminus ; B 76 24 614 515 ; -C -1 ; WX 600 ; N brokenbar ; B 217 -175 489 675 ; -C -1 ; WX 600 ; N registered ; B 53 -18 667 580 ; -C -1 ; WX 600 ; N Gbreve ; B 74 -18 684 784 ; -C -1 ; WX 600 ; N Idotaccent ; B 77 0 643 761 ; -C -1 ; WX 600 ; N summation ; B 15 -10 672 706 ; -C -1 ; WX 600 ; N Egrave ; B 25 0 670 784 ; -C -1 ; WX 600 ; N racute ; B 47 0 655 661 ; -C -1 ; WX 600 ; N omacron ; B 71 -15 637 585 ; -C -1 ; WX 600 ; N Zacute ; B 62 0 665 784 ; -C -1 ; WX 600 ; N Zcaron ; B 62 0 659 790 ; -C -1 ; WX 600 ; N greaterequal ; B 26 0 627 696 ; -C -1 ; WX 600 ; N Eth ; B 30 0 664 562 ; -C -1 ; WX 600 ; N Ccedilla ; B 74 -206 675 580 ; -C -1 ; WX 600 ; N lcommaaccent ; B 77 -250 546 626 ; -C -1 ; WX 600 ; N tcaron ; B 118 -15 627 703 ; -C -1 ; WX 600 ; N eogonek ; B 81 -199 605 454 ; -C -1 ; WX 600 ; N Uogonek ; B 101 -199 716 562 ; -C -1 ; WX 600 ; N Aacute ; B -9 0 655 784 ; -C -1 ; WX 600 ; N Adieresis ; B -9 0 632 761 ; -C -1 ; WX 600 ; N egrave ; B 81 -15 605 661 ; -C -1 ; WX 600 ; N zacute ; B 81 0 614 661 ; -C -1 ; WX 600 ; N iogonek ; B 77 -199 546 658 ; -C -1 ; WX 600 ; N Oacute ; B 74 -18 645 784 ; -C -1 ; WX 600 ; N oacute ; B 71 -15 649 661 ; -C -1 ; WX 600 ; N amacron ; B 61 -15 637 585 ; -C -1 ; WX 600 ; N sacute ; B 66 -17 609 661 ; -C -1 ; WX 600 ; N idieresis ; B 77 0 561 618 ; -C -1 ; WX 600 ; N Ocircumflex ; B 74 -18 645 780 ; -C -1 ; WX 600 ; N Ugrave ; B 101 -18 716 784 ; -C -1 ; WX 600 ; N Delta ; B 6 0 594 688 ; -C -1 ; WX 600 ; N thorn ; B -32 -142 622 626 ; -C -1 ; WX 600 ; N twosuperior ; B 191 230 542 616 ; -C -1 ; WX 600 ; N Odieresis ; B 74 -18 645 761 ; -C -1 ; WX 600 ; N mu ; B 49 -142 592 439 ; -C -1 ; WX 600 ; N igrave ; B 77 0 546 661 ; -C -1 ; WX 600 ; N ohungarumlaut ; B 71 -15 809 661 ; -C -1 ; WX 600 ; N Eogonek ; B 25 -199 670 562 ; -C -1 ; WX 600 ; N dcroat ; B 60 -15 712 626 ; -C -1 ; WX 600 ; N threequarters ; B 8 -60 699 661 ; -C -1 ; WX 600 ; N Scedilla ; B 54 -206 673 582 ; -C -1 ; WX 600 ; N lcaron ; B 77 0 731 626 ; -C -1 ; WX 600 ; N Kcommaaccent ; B 21 -250 692 562 ; -C -1 ; WX 600 ; N Lacute ; B 39 0 636 784 ; -C -1 ; WX 600 ; N trademark ; B 86 230 869 562 ; -C -1 ; WX 600 ; N edotaccent ; B 81 -15 605 638 ; -C -1 ; WX 600 ; N Igrave ; B 77 0 643 784 ; -C -1 ; WX 600 ; N Imacron ; B 77 0 663 708 ; -C -1 ; WX 600 ; N Lcaron ; B 39 0 757 562 ; -C -1 ; WX 600 ; N onehalf ; B 22 -60 716 661 ; -C -1 ; WX 600 ; N lessequal ; B 26 0 671 696 ; -C -1 ; WX 600 ; N ocircumflex ; B 71 -15 622 657 ; -C -1 ; WX 600 ; N ntilde ; B 18 0 643 636 ; -C -1 ; WX 600 ; N Uhungarumlaut ; B 101 -18 805 784 ; -C -1 ; WX 600 ; N Eacute ; B 25 0 670 784 ; -C -1 ; WX 600 ; N emacron ; B 81 -15 637 585 ; -C -1 ; WX 600 ; N gbreve ; B 40 -146 674 661 ; -C -1 ; WX 600 ; N onequarter ; B 13 -60 707 661 ; -C -1 ; WX 600 ; N Scaron ; B 54 -22 689 790 ; -C -1 ; WX 600 ; N Scommaaccent ; B 54 -250 673 582 ; -C -1 ; WX 600 ; N Ohungarumlaut ; B 74 -18 795 784 ; -C -1 ; WX 600 ; N degree ; B 173 243 570 616 ; -C -1 ; WX 600 ; N ograve ; B 71 -15 622 661 ; -C -1 ; WX 600 ; N Ccaron ; B 74 -18 689 790 ; -C -1 ; WX 600 ; N ugrave ; B 70 -15 592 661 ; -C -1 ; WX 600 ; N radical ; B 67 -104 635 778 ; -C -1 ; WX 600 ; N Dcaron ; B 30 0 664 790 ; -C -1 ; WX 600 ; N rcommaaccent ; B 47 -250 655 454 ; -C -1 ; WX 600 ; N Ntilde ; B 8 -12 730 759 ; -C -1 ; WX 600 ; N otilde ; B 71 -15 643 636 ; -C -1 ; WX 600 ; N Rcommaaccent ; B 24 -250 617 562 ; -C -1 ; WX 600 ; N Lcommaaccent ; B 39 -250 636 562 ; -C -1 ; WX 600 ; N Atilde ; B -9 0 669 759 ; -C -1 ; WX 600 ; N Aogonek ; B -9 -199 632 562 ; -C -1 ; WX 600 ; N Aring ; B -9 0 632 801 ; -C -1 ; WX 600 ; N Otilde ; B 74 -18 669 759 ; -C -1 ; WX 600 ; N zdotaccent ; B 81 0 614 638 ; -C -1 ; WX 600 ; N Ecaron ; B 25 0 670 790 ; -C -1 ; WX 600 ; N Iogonek ; B 77 -199 643 562 ; -C -1 ; WX 600 ; N kcommaaccent ; B 33 -250 643 626 ; -C -1 ; WX 600 ; N minus ; B 114 203 596 313 ; -C -1 ; WX 600 ; N Icircumflex ; B 77 0 643 780 ; -C -1 ; WX 600 ; N ncaron ; B 18 0 633 667 ; -C -1 ; WX 600 ; N tcommaaccent ; B 118 -250 567 562 ; -C -1 ; WX 600 ; N logicalnot ; B 135 103 617 413 ; -C -1 ; WX 600 ; N odieresis ; B 71 -15 622 638 ; -C -1 ; WX 600 ; N udieresis ; B 70 -15 595 638 ; -C -1 ; WX 600 ; N notequal ; B 30 -47 626 563 ; -C -1 ; WX 600 ; N gcommaaccent ; B 40 -146 674 714 ; -C -1 ; WX 600 ; N eth ; B 93 -27 661 626 ; -C -1 ; WX 600 ; N zcaron ; B 81 0 643 667 ; -C -1 ; WX 600 ; N ncommaaccent ; B 18 -250 615 454 ; -C -1 ; WX 600 ; N onesuperior ; B 212 230 514 616 ; -C -1 ; WX 600 ; N imacron ; B 77 0 575 585 ; -C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Courier-Oblique.afm b/target/classes/com/itextpdf/text/pdf/fonts/Courier-Oblique.afm deleted file mode 100644 index 3dc163f7..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Courier-Oblique.afm +++ /dev/null @@ -1,342 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 17:37:52 1997 -Comment UniqueID 43051 -Comment VMusage 16248 75829 -FontName Courier-Oblique -FullName Courier Oblique -FamilyName Courier -Weight Medium -ItalicAngle -12 -IsFixedPitch true -CharacterSet ExtendedRoman -FontBBox -27 -250 849 805 -UnderlinePosition -100 -UnderlineThickness 50 -Version 003.000 -Notice Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -EncodingScheme AdobeStandardEncoding -CapHeight 562 -XHeight 426 -Ascender 629 -Descender -157 -StdHW 51 -StdVW 51 -StartCharMetrics 315 -C 32 ; WX 600 ; N space ; B 0 0 0 0 ; -C 33 ; WX 600 ; N exclam ; B 243 -15 464 572 ; -C 34 ; WX 600 ; N quotedbl ; B 273 328 532 562 ; -C 35 ; WX 600 ; N numbersign ; B 133 -32 596 639 ; -C 36 ; WX 600 ; N dollar ; B 108 -126 596 662 ; -C 37 ; WX 600 ; N percent ; B 134 -15 599 622 ; -C 38 ; WX 600 ; N ampersand ; B 87 -15 580 543 ; -C 39 ; WX 600 ; N quoteright ; B 283 328 495 562 ; -C 40 ; WX 600 ; N parenleft ; B 313 -108 572 622 ; -C 41 ; WX 600 ; N parenright ; B 137 -108 396 622 ; -C 42 ; WX 600 ; N asterisk ; B 212 257 580 607 ; -C 43 ; WX 600 ; N plus ; B 129 44 580 470 ; -C 44 ; WX 600 ; N comma ; B 157 -112 370 122 ; -C 45 ; WX 600 ; N hyphen ; B 152 231 558 285 ; -C 46 ; WX 600 ; N period ; B 238 -15 382 109 ; -C 47 ; WX 600 ; N slash ; B 112 -80 604 629 ; -C 48 ; WX 600 ; N zero ; B 154 -15 575 622 ; -C 49 ; WX 600 ; N one ; B 98 0 515 622 ; -C 50 ; WX 600 ; N two ; B 70 0 568 622 ; -C 51 ; WX 600 ; N three ; B 82 -15 538 622 ; -C 52 ; WX 600 ; N four ; B 108 0 541 622 ; -C 53 ; WX 600 ; N five ; B 99 -15 589 607 ; -C 54 ; WX 600 ; N six ; B 155 -15 629 622 ; -C 55 ; WX 600 ; N seven ; B 182 0 612 607 ; -C 56 ; WX 600 ; N eight ; B 132 -15 588 622 ; -C 57 ; WX 600 ; N nine ; B 93 -15 574 622 ; -C 58 ; WX 600 ; N colon ; B 238 -15 441 385 ; -C 59 ; WX 600 ; N semicolon ; B 157 -112 441 385 ; -C 60 ; WX 600 ; N less ; B 96 42 610 472 ; -C 61 ; WX 600 ; N equal ; B 109 138 600 376 ; -C 62 ; WX 600 ; N greater ; B 85 42 599 472 ; -C 63 ; WX 600 ; N question ; B 222 -15 583 572 ; -C 64 ; WX 600 ; N at ; B 127 -15 582 622 ; -C 65 ; WX 600 ; N A ; B 3 0 607 562 ; -C 66 ; WX 600 ; N B ; B 43 0 616 562 ; -C 67 ; WX 600 ; N C ; B 93 -18 655 580 ; -C 68 ; WX 600 ; N D ; B 43 0 645 562 ; -C 69 ; WX 600 ; N E ; B 53 0 660 562 ; -C 70 ; WX 600 ; N F ; B 53 0 660 562 ; -C 71 ; WX 600 ; N G ; B 83 -18 645 580 ; -C 72 ; WX 600 ; N H ; B 32 0 687 562 ; -C 73 ; WX 600 ; N I ; B 96 0 623 562 ; -C 74 ; WX 600 ; N J ; B 52 -18 685 562 ; -C 75 ; WX 600 ; N K ; B 38 0 671 562 ; -C 76 ; WX 600 ; N L ; B 47 0 607 562 ; -C 77 ; WX 600 ; N M ; B 4 0 715 562 ; -C 78 ; WX 600 ; N N ; B 7 -13 712 562 ; -C 79 ; WX 600 ; N O ; B 94 -18 625 580 ; -C 80 ; WX 600 ; N P ; B 79 0 644 562 ; -C 81 ; WX 600 ; N Q ; B 95 -138 625 580 ; -C 82 ; WX 600 ; N R ; B 38 0 598 562 ; -C 83 ; WX 600 ; N S ; B 76 -20 650 580 ; -C 84 ; WX 600 ; N T ; B 108 0 665 562 ; -C 85 ; WX 600 ; N U ; B 125 -18 702 562 ; -C 86 ; WX 600 ; N V ; B 105 -13 723 562 ; -C 87 ; WX 600 ; N W ; B 106 -13 722 562 ; -C 88 ; WX 600 ; N X ; B 23 0 675 562 ; -C 89 ; WX 600 ; N Y ; B 133 0 695 562 ; -C 90 ; WX 600 ; N Z ; B 86 0 610 562 ; -C 91 ; WX 600 ; N bracketleft ; B 246 -108 574 622 ; -C 92 ; WX 600 ; N backslash ; B 249 -80 468 629 ; -C 93 ; WX 600 ; N bracketright ; B 135 -108 463 622 ; -C 94 ; WX 600 ; N asciicircum ; B 175 354 587 622 ; -C 95 ; WX 600 ; N underscore ; B -27 -125 584 -75 ; -C 96 ; WX 600 ; N quoteleft ; B 343 328 457 562 ; -C 97 ; WX 600 ; N a ; B 76 -15 569 441 ; -C 98 ; WX 600 ; N b ; B 29 -15 625 629 ; -C 99 ; WX 600 ; N c ; B 106 -15 608 441 ; -C 100 ; WX 600 ; N d ; B 85 -15 640 629 ; -C 101 ; WX 600 ; N e ; B 106 -15 598 441 ; -C 102 ; WX 600 ; N f ; B 114 0 662 629 ; L i fi ; L l fl ; -C 103 ; WX 600 ; N g ; B 61 -157 657 441 ; -C 104 ; WX 600 ; N h ; B 33 0 592 629 ; -C 105 ; WX 600 ; N i ; B 95 0 515 657 ; -C 106 ; WX 600 ; N j ; B 52 -157 550 657 ; -C 107 ; WX 600 ; N k ; B 58 0 633 629 ; -C 108 ; WX 600 ; N l ; B 95 0 515 629 ; -C 109 ; WX 600 ; N m ; B -5 0 615 441 ; -C 110 ; WX 600 ; N n ; B 26 0 585 441 ; -C 111 ; WX 600 ; N o ; B 102 -15 588 441 ; -C 112 ; WX 600 ; N p ; B -24 -157 605 441 ; -C 113 ; WX 600 ; N q ; B 85 -157 682 441 ; -C 114 ; WX 600 ; N r ; B 60 0 636 441 ; -C 115 ; WX 600 ; N s ; B 78 -15 584 441 ; -C 116 ; WX 600 ; N t ; B 167 -15 561 561 ; -C 117 ; WX 600 ; N u ; B 101 -15 572 426 ; -C 118 ; WX 600 ; N v ; B 90 -10 681 426 ; -C 119 ; WX 600 ; N w ; B 76 -10 695 426 ; -C 120 ; WX 600 ; N x ; B 20 0 655 426 ; -C 121 ; WX 600 ; N y ; B -4 -157 683 426 ; -C 122 ; WX 600 ; N z ; B 99 0 593 426 ; -C 123 ; WX 600 ; N braceleft ; B 233 -108 569 622 ; -C 124 ; WX 600 ; N bar ; B 222 -250 485 750 ; -C 125 ; WX 600 ; N braceright ; B 140 -108 477 622 ; -C 126 ; WX 600 ; N asciitilde ; B 116 197 600 320 ; -C 161 ; WX 600 ; N exclamdown ; B 225 -157 445 430 ; -C 162 ; WX 600 ; N cent ; B 151 -49 588 614 ; -C 163 ; WX 600 ; N sterling ; B 124 -21 621 611 ; -C 164 ; WX 600 ; N fraction ; B 84 -57 646 665 ; -C 165 ; WX 600 ; N yen ; B 120 0 693 562 ; -C 166 ; WX 600 ; N florin ; B -26 -143 671 622 ; -C 167 ; WX 600 ; N section ; B 104 -78 590 580 ; -C 168 ; WX 600 ; N currency ; B 94 58 628 506 ; -C 169 ; WX 600 ; N quotesingle ; B 345 328 460 562 ; -C 170 ; WX 600 ; N quotedblleft ; B 262 328 541 562 ; -C 171 ; WX 600 ; N guillemotleft ; B 92 70 652 446 ; -C 172 ; WX 600 ; N guilsinglleft ; B 204 70 540 446 ; -C 173 ; WX 600 ; N guilsinglright ; B 170 70 506 446 ; -C 174 ; WX 600 ; N fi ; B 3 0 619 629 ; -C 175 ; WX 600 ; N fl ; B 3 0 619 629 ; -C 177 ; WX 600 ; N endash ; B 124 231 586 285 ; -C 178 ; WX 600 ; N dagger ; B 217 -78 546 580 ; -C 179 ; WX 600 ; N daggerdbl ; B 163 -78 546 580 ; -C 180 ; WX 600 ; N periodcentered ; B 275 189 434 327 ; -C 182 ; WX 600 ; N paragraph ; B 100 -78 630 562 ; -C 183 ; WX 600 ; N bullet ; B 224 130 485 383 ; -C 184 ; WX 600 ; N quotesinglbase ; B 185 -134 397 100 ; -C 185 ; WX 600 ; N quotedblbase ; B 115 -134 478 100 ; -C 186 ; WX 600 ; N quotedblright ; B 213 328 576 562 ; -C 187 ; WX 600 ; N guillemotright ; B 58 70 618 446 ; -C 188 ; WX 600 ; N ellipsis ; B 46 -15 575 111 ; -C 189 ; WX 600 ; N perthousand ; B 59 -15 627 622 ; -C 191 ; WX 600 ; N questiondown ; B 105 -157 466 430 ; -C 193 ; WX 600 ; N grave ; B 294 497 484 672 ; -C 194 ; WX 600 ; N acute ; B 348 497 612 672 ; -C 195 ; WX 600 ; N circumflex ; B 229 477 581 654 ; -C 196 ; WX 600 ; N tilde ; B 212 489 629 606 ; -C 197 ; WX 600 ; N macron ; B 232 525 600 565 ; -C 198 ; WX 600 ; N breve ; B 279 501 576 609 ; -C 199 ; WX 600 ; N dotaccent ; B 373 537 478 640 ; -C 200 ; WX 600 ; N dieresis ; B 272 537 579 640 ; -C 202 ; WX 600 ; N ring ; B 332 463 500 627 ; -C 203 ; WX 600 ; N cedilla ; B 197 -151 344 10 ; -C 205 ; WX 600 ; N hungarumlaut ; B 239 497 683 672 ; -C 206 ; WX 600 ; N ogonek ; B 189 -172 377 4 ; -C 207 ; WX 600 ; N caron ; B 262 492 614 669 ; -C 208 ; WX 600 ; N emdash ; B 49 231 661 285 ; -C 225 ; WX 600 ; N AE ; B 3 0 655 562 ; -C 227 ; WX 600 ; N ordfeminine ; B 209 249 512 580 ; -C 232 ; WX 600 ; N Lslash ; B 47 0 607 562 ; -C 233 ; WX 600 ; N Oslash ; B 94 -80 625 629 ; -C 234 ; WX 600 ; N OE ; B 59 0 672 562 ; -C 235 ; WX 600 ; N ordmasculine ; B 210 249 535 580 ; -C 241 ; WX 600 ; N ae ; B 41 -15 626 441 ; -C 245 ; WX 600 ; N dotlessi ; B 95 0 515 426 ; -C 248 ; WX 600 ; N lslash ; B 95 0 587 629 ; -C 249 ; WX 600 ; N oslash ; B 102 -80 588 506 ; -C 250 ; WX 600 ; N oe ; B 54 -15 615 441 ; -C 251 ; WX 600 ; N germandbls ; B 48 -15 617 629 ; -C -1 ; WX 600 ; N Idieresis ; B 96 0 623 753 ; -C -1 ; WX 600 ; N eacute ; B 106 -15 612 672 ; -C -1 ; WX 600 ; N abreve ; B 76 -15 576 609 ; -C -1 ; WX 600 ; N uhungarumlaut ; B 101 -15 723 672 ; -C -1 ; WX 600 ; N ecaron ; B 106 -15 614 669 ; -C -1 ; WX 600 ; N Ydieresis ; B 133 0 695 753 ; -C -1 ; WX 600 ; N divide ; B 136 48 573 467 ; -C -1 ; WX 600 ; N Yacute ; B 133 0 695 805 ; -C -1 ; WX 600 ; N Acircumflex ; B 3 0 607 787 ; -C -1 ; WX 600 ; N aacute ; B 76 -15 612 672 ; -C -1 ; WX 600 ; N Ucircumflex ; B 125 -18 702 787 ; -C -1 ; WX 600 ; N yacute ; B -4 -157 683 672 ; -C -1 ; WX 600 ; N scommaaccent ; B 78 -250 584 441 ; -C -1 ; WX 600 ; N ecircumflex ; B 106 -15 598 654 ; -C -1 ; WX 600 ; N Uring ; B 125 -18 702 760 ; -C -1 ; WX 600 ; N Udieresis ; B 125 -18 702 753 ; -C -1 ; WX 600 ; N aogonek ; B 76 -172 569 441 ; -C -1 ; WX 600 ; N Uacute ; B 125 -18 702 805 ; -C -1 ; WX 600 ; N uogonek ; B 101 -172 572 426 ; -C -1 ; WX 600 ; N Edieresis ; B 53 0 660 753 ; -C -1 ; WX 600 ; N Dcroat ; B 43 0 645 562 ; -C -1 ; WX 600 ; N commaaccent ; B 145 -250 323 -58 ; -C -1 ; WX 600 ; N copyright ; B 53 -18 667 580 ; -C -1 ; WX 600 ; N Emacron ; B 53 0 660 698 ; -C -1 ; WX 600 ; N ccaron ; B 106 -15 614 669 ; -C -1 ; WX 600 ; N aring ; B 76 -15 569 627 ; -C -1 ; WX 600 ; N Ncommaaccent ; B 7 -250 712 562 ; -C -1 ; WX 600 ; N lacute ; B 95 0 640 805 ; -C -1 ; WX 600 ; N agrave ; B 76 -15 569 672 ; -C -1 ; WX 600 ; N Tcommaaccent ; B 108 -250 665 562 ; -C -1 ; WX 600 ; N Cacute ; B 93 -18 655 805 ; -C -1 ; WX 600 ; N atilde ; B 76 -15 629 606 ; -C -1 ; WX 600 ; N Edotaccent ; B 53 0 660 753 ; -C -1 ; WX 600 ; N scaron ; B 78 -15 614 669 ; -C -1 ; WX 600 ; N scedilla ; B 78 -151 584 441 ; -C -1 ; WX 600 ; N iacute ; B 95 0 612 672 ; -C -1 ; WX 600 ; N lozenge ; B 94 0 519 706 ; -C -1 ; WX 600 ; N Rcaron ; B 38 0 642 802 ; -C -1 ; WX 600 ; N Gcommaaccent ; B 83 -250 645 580 ; -C -1 ; WX 600 ; N ucircumflex ; B 101 -15 572 654 ; -C -1 ; WX 600 ; N acircumflex ; B 76 -15 581 654 ; -C -1 ; WX 600 ; N Amacron ; B 3 0 607 698 ; -C -1 ; WX 600 ; N rcaron ; B 60 0 636 669 ; -C -1 ; WX 600 ; N ccedilla ; B 106 -151 614 441 ; -C -1 ; WX 600 ; N Zdotaccent ; B 86 0 610 753 ; -C -1 ; WX 600 ; N Thorn ; B 79 0 606 562 ; -C -1 ; WX 600 ; N Omacron ; B 94 -18 628 698 ; -C -1 ; WX 600 ; N Racute ; B 38 0 670 805 ; -C -1 ; WX 600 ; N Sacute ; B 76 -20 650 805 ; -C -1 ; WX 600 ; N dcaron ; B 85 -15 849 629 ; -C -1 ; WX 600 ; N Umacron ; B 125 -18 702 698 ; -C -1 ; WX 600 ; N uring ; B 101 -15 572 627 ; -C -1 ; WX 600 ; N threesuperior ; B 213 240 501 622 ; -C -1 ; WX 600 ; N Ograve ; B 94 -18 625 805 ; -C -1 ; WX 600 ; N Agrave ; B 3 0 607 805 ; -C -1 ; WX 600 ; N Abreve ; B 3 0 607 732 ; -C -1 ; WX 600 ; N multiply ; B 103 43 607 470 ; -C -1 ; WX 600 ; N uacute ; B 101 -15 602 672 ; -C -1 ; WX 600 ; N Tcaron ; B 108 0 665 802 ; -C -1 ; WX 600 ; N partialdiff ; B 45 -38 546 710 ; -C -1 ; WX 600 ; N ydieresis ; B -4 -157 683 620 ; -C -1 ; WX 600 ; N Nacute ; B 7 -13 712 805 ; -C -1 ; WX 600 ; N icircumflex ; B 95 0 551 654 ; -C -1 ; WX 600 ; N Ecircumflex ; B 53 0 660 787 ; -C -1 ; WX 600 ; N adieresis ; B 76 -15 575 620 ; -C -1 ; WX 600 ; N edieresis ; B 106 -15 598 620 ; -C -1 ; WX 600 ; N cacute ; B 106 -15 612 672 ; -C -1 ; WX 600 ; N nacute ; B 26 0 602 672 ; -C -1 ; WX 600 ; N umacron ; B 101 -15 600 565 ; -C -1 ; WX 600 ; N Ncaron ; B 7 -13 712 802 ; -C -1 ; WX 600 ; N Iacute ; B 96 0 640 805 ; -C -1 ; WX 600 ; N plusminus ; B 96 44 594 558 ; -C -1 ; WX 600 ; N brokenbar ; B 238 -175 469 675 ; -C -1 ; WX 600 ; N registered ; B 53 -18 667 580 ; -C -1 ; WX 600 ; N Gbreve ; B 83 -18 645 732 ; -C -1 ; WX 600 ; N Idotaccent ; B 96 0 623 753 ; -C -1 ; WX 600 ; N summation ; B 15 -10 670 706 ; -C -1 ; WX 600 ; N Egrave ; B 53 0 660 805 ; -C -1 ; WX 600 ; N racute ; B 60 0 636 672 ; -C -1 ; WX 600 ; N omacron ; B 102 -15 600 565 ; -C -1 ; WX 600 ; N Zacute ; B 86 0 670 805 ; -C -1 ; WX 600 ; N Zcaron ; B 86 0 642 802 ; -C -1 ; WX 600 ; N greaterequal ; B 98 0 594 710 ; -C -1 ; WX 600 ; N Eth ; B 43 0 645 562 ; -C -1 ; WX 600 ; N Ccedilla ; B 93 -151 658 580 ; -C -1 ; WX 600 ; N lcommaaccent ; B 95 -250 515 629 ; -C -1 ; WX 600 ; N tcaron ; B 167 -15 587 717 ; -C -1 ; WX 600 ; N eogonek ; B 106 -172 598 441 ; -C -1 ; WX 600 ; N Uogonek ; B 124 -172 702 562 ; -C -1 ; WX 600 ; N Aacute ; B 3 0 660 805 ; -C -1 ; WX 600 ; N Adieresis ; B 3 0 607 753 ; -C -1 ; WX 600 ; N egrave ; B 106 -15 598 672 ; -C -1 ; WX 600 ; N zacute ; B 99 0 612 672 ; -C -1 ; WX 600 ; N iogonek ; B 95 -172 515 657 ; -C -1 ; WX 600 ; N Oacute ; B 94 -18 640 805 ; -C -1 ; WX 600 ; N oacute ; B 102 -15 612 672 ; -C -1 ; WX 600 ; N amacron ; B 76 -15 600 565 ; -C -1 ; WX 600 ; N sacute ; B 78 -15 612 672 ; -C -1 ; WX 600 ; N idieresis ; B 95 0 545 620 ; -C -1 ; WX 600 ; N Ocircumflex ; B 94 -18 625 787 ; -C -1 ; WX 600 ; N Ugrave ; B 125 -18 702 805 ; -C -1 ; WX 600 ; N Delta ; B 6 0 598 688 ; -C -1 ; WX 600 ; N thorn ; B -24 -157 605 629 ; -C -1 ; WX 600 ; N twosuperior ; B 230 249 535 622 ; -C -1 ; WX 600 ; N Odieresis ; B 94 -18 625 753 ; -C -1 ; WX 600 ; N mu ; B 72 -157 572 426 ; -C -1 ; WX 600 ; N igrave ; B 95 0 515 672 ; -C -1 ; WX 600 ; N ohungarumlaut ; B 102 -15 723 672 ; -C -1 ; WX 600 ; N Eogonek ; B 53 -172 660 562 ; -C -1 ; WX 600 ; N dcroat ; B 85 -15 704 629 ; -C -1 ; WX 600 ; N threequarters ; B 73 -56 659 666 ; -C -1 ; WX 600 ; N Scedilla ; B 76 -151 650 580 ; -C -1 ; WX 600 ; N lcaron ; B 95 0 667 629 ; -C -1 ; WX 600 ; N Kcommaaccent ; B 38 -250 671 562 ; -C -1 ; WX 600 ; N Lacute ; B 47 0 607 805 ; -C -1 ; WX 600 ; N trademark ; B 75 263 742 562 ; -C -1 ; WX 600 ; N edotaccent ; B 106 -15 598 620 ; -C -1 ; WX 600 ; N Igrave ; B 96 0 623 805 ; -C -1 ; WX 600 ; N Imacron ; B 96 0 628 698 ; -C -1 ; WX 600 ; N Lcaron ; B 47 0 632 562 ; -C -1 ; WX 600 ; N onehalf ; B 65 -57 669 665 ; -C -1 ; WX 600 ; N lessequal ; B 98 0 645 710 ; -C -1 ; WX 600 ; N ocircumflex ; B 102 -15 588 654 ; -C -1 ; WX 600 ; N ntilde ; B 26 0 629 606 ; -C -1 ; WX 600 ; N Uhungarumlaut ; B 125 -18 761 805 ; -C -1 ; WX 600 ; N Eacute ; B 53 0 670 805 ; -C -1 ; WX 600 ; N emacron ; B 106 -15 600 565 ; -C -1 ; WX 600 ; N gbreve ; B 61 -157 657 609 ; -C -1 ; WX 600 ; N onequarter ; B 65 -57 674 665 ; -C -1 ; WX 600 ; N Scaron ; B 76 -20 672 802 ; -C -1 ; WX 600 ; N Scommaaccent ; B 76 -250 650 580 ; -C -1 ; WX 600 ; N Ohungarumlaut ; B 94 -18 751 805 ; -C -1 ; WX 600 ; N degree ; B 214 269 576 622 ; -C -1 ; WX 600 ; N ograve ; B 102 -15 588 672 ; -C -1 ; WX 600 ; N Ccaron ; B 93 -18 672 802 ; -C -1 ; WX 600 ; N ugrave ; B 101 -15 572 672 ; -C -1 ; WX 600 ; N radical ; B 85 -15 765 792 ; -C -1 ; WX 600 ; N Dcaron ; B 43 0 645 802 ; -C -1 ; WX 600 ; N rcommaaccent ; B 60 -250 636 441 ; -C -1 ; WX 600 ; N Ntilde ; B 7 -13 712 729 ; -C -1 ; WX 600 ; N otilde ; B 102 -15 629 606 ; -C -1 ; WX 600 ; N Rcommaaccent ; B 38 -250 598 562 ; -C -1 ; WX 600 ; N Lcommaaccent ; B 47 -250 607 562 ; -C -1 ; WX 600 ; N Atilde ; B 3 0 655 729 ; -C -1 ; WX 600 ; N Aogonek ; B 3 -172 607 562 ; -C -1 ; WX 600 ; N Aring ; B 3 0 607 750 ; -C -1 ; WX 600 ; N Otilde ; B 94 -18 655 729 ; -C -1 ; WX 600 ; N zdotaccent ; B 99 0 593 620 ; -C -1 ; WX 600 ; N Ecaron ; B 53 0 660 802 ; -C -1 ; WX 600 ; N Iogonek ; B 96 -172 623 562 ; -C -1 ; WX 600 ; N kcommaaccent ; B 58 -250 633 629 ; -C -1 ; WX 600 ; N minus ; B 129 232 580 283 ; -C -1 ; WX 600 ; N Icircumflex ; B 96 0 623 787 ; -C -1 ; WX 600 ; N ncaron ; B 26 0 614 669 ; -C -1 ; WX 600 ; N tcommaaccent ; B 165 -250 561 561 ; -C -1 ; WX 600 ; N logicalnot ; B 155 108 591 369 ; -C -1 ; WX 600 ; N odieresis ; B 102 -15 588 620 ; -C -1 ; WX 600 ; N udieresis ; B 101 -15 575 620 ; -C -1 ; WX 600 ; N notequal ; B 43 -16 621 529 ; -C -1 ; WX 600 ; N gcommaaccent ; B 61 -157 657 708 ; -C -1 ; WX 600 ; N eth ; B 102 -15 639 629 ; -C -1 ; WX 600 ; N zcaron ; B 99 0 624 669 ; -C -1 ; WX 600 ; N ncommaaccent ; B 26 -250 585 441 ; -C -1 ; WX 600 ; N onesuperior ; B 231 249 491 622 ; -C -1 ; WX 600 ; N imacron ; B 95 0 543 565 ; -C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Courier.afm b/target/classes/com/itextpdf/text/pdf/fonts/Courier.afm deleted file mode 100644 index 2f7be81d..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Courier.afm +++ /dev/null @@ -1,342 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 17:27:09 1997 -Comment UniqueID 43050 -Comment VMusage 39754 50779 -FontName Courier -FullName Courier -FamilyName Courier -Weight Medium -ItalicAngle 0 -IsFixedPitch true -CharacterSet ExtendedRoman -FontBBox -23 -250 715 805 -UnderlinePosition -100 -UnderlineThickness 50 -Version 003.000 -Notice Copyright (c) 1989, 1990, 1991, 1992, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -EncodingScheme AdobeStandardEncoding -CapHeight 562 -XHeight 426 -Ascender 629 -Descender -157 -StdHW 51 -StdVW 51 -StartCharMetrics 315 -C 32 ; WX 600 ; N space ; B 0 0 0 0 ; -C 33 ; WX 600 ; N exclam ; B 236 -15 364 572 ; -C 34 ; WX 600 ; N quotedbl ; B 187 328 413 562 ; -C 35 ; WX 600 ; N numbersign ; B 93 -32 507 639 ; -C 36 ; WX 600 ; N dollar ; B 105 -126 496 662 ; -C 37 ; WX 600 ; N percent ; B 81 -15 518 622 ; -C 38 ; WX 600 ; N ampersand ; B 63 -15 538 543 ; -C 39 ; WX 600 ; N quoteright ; B 213 328 376 562 ; -C 40 ; WX 600 ; N parenleft ; B 269 -108 440 622 ; -C 41 ; WX 600 ; N parenright ; B 160 -108 331 622 ; -C 42 ; WX 600 ; N asterisk ; B 116 257 484 607 ; -C 43 ; WX 600 ; N plus ; B 80 44 520 470 ; -C 44 ; WX 600 ; N comma ; B 181 -112 344 122 ; -C 45 ; WX 600 ; N hyphen ; B 103 231 497 285 ; -C 46 ; WX 600 ; N period ; B 229 -15 371 109 ; -C 47 ; WX 600 ; N slash ; B 125 -80 475 629 ; -C 48 ; WX 600 ; N zero ; B 106 -15 494 622 ; -C 49 ; WX 600 ; N one ; B 96 0 505 622 ; -C 50 ; WX 600 ; N two ; B 70 0 471 622 ; -C 51 ; WX 600 ; N three ; B 75 -15 466 622 ; -C 52 ; WX 600 ; N four ; B 78 0 500 622 ; -C 53 ; WX 600 ; N five ; B 92 -15 497 607 ; -C 54 ; WX 600 ; N six ; B 111 -15 497 622 ; -C 55 ; WX 600 ; N seven ; B 82 0 483 607 ; -C 56 ; WX 600 ; N eight ; B 102 -15 498 622 ; -C 57 ; WX 600 ; N nine ; B 96 -15 489 622 ; -C 58 ; WX 600 ; N colon ; B 229 -15 371 385 ; -C 59 ; WX 600 ; N semicolon ; B 181 -112 371 385 ; -C 60 ; WX 600 ; N less ; B 41 42 519 472 ; -C 61 ; WX 600 ; N equal ; B 80 138 520 376 ; -C 62 ; WX 600 ; N greater ; B 66 42 544 472 ; -C 63 ; WX 600 ; N question ; B 129 -15 492 572 ; -C 64 ; WX 600 ; N at ; B 77 -15 533 622 ; -C 65 ; WX 600 ; N A ; B 3 0 597 562 ; -C 66 ; WX 600 ; N B ; B 43 0 559 562 ; -C 67 ; WX 600 ; N C ; B 41 -18 540 580 ; -C 68 ; WX 600 ; N D ; B 43 0 574 562 ; -C 69 ; WX 600 ; N E ; B 53 0 550 562 ; -C 70 ; WX 600 ; N F ; B 53 0 545 562 ; -C 71 ; WX 600 ; N G ; B 31 -18 575 580 ; -C 72 ; WX 600 ; N H ; B 32 0 568 562 ; -C 73 ; WX 600 ; N I ; B 96 0 504 562 ; -C 74 ; WX 600 ; N J ; B 34 -18 566 562 ; -C 75 ; WX 600 ; N K ; B 38 0 582 562 ; -C 76 ; WX 600 ; N L ; B 47 0 554 562 ; -C 77 ; WX 600 ; N M ; B 4 0 596 562 ; -C 78 ; WX 600 ; N N ; B 7 -13 593 562 ; -C 79 ; WX 600 ; N O ; B 43 -18 557 580 ; -C 80 ; WX 600 ; N P ; B 79 0 558 562 ; -C 81 ; WX 600 ; N Q ; B 43 -138 557 580 ; -C 82 ; WX 600 ; N R ; B 38 0 588 562 ; -C 83 ; WX 600 ; N S ; B 72 -20 529 580 ; -C 84 ; WX 600 ; N T ; B 38 0 563 562 ; -C 85 ; WX 600 ; N U ; B 17 -18 583 562 ; -C 86 ; WX 600 ; N V ; B -4 -13 604 562 ; -C 87 ; WX 600 ; N W ; B -3 -13 603 562 ; -C 88 ; WX 600 ; N X ; B 23 0 577 562 ; -C 89 ; WX 600 ; N Y ; B 24 0 576 562 ; -C 90 ; WX 600 ; N Z ; B 86 0 514 562 ; -C 91 ; WX 600 ; N bracketleft ; B 269 -108 442 622 ; -C 92 ; WX 600 ; N backslash ; B 118 -80 482 629 ; -C 93 ; WX 600 ; N bracketright ; B 158 -108 331 622 ; -C 94 ; WX 600 ; N asciicircum ; B 94 354 506 622 ; -C 95 ; WX 600 ; N underscore ; B 0 -125 600 -75 ; -C 96 ; WX 600 ; N quoteleft ; B 224 328 387 562 ; -C 97 ; WX 600 ; N a ; B 53 -15 559 441 ; -C 98 ; WX 600 ; N b ; B 14 -15 575 629 ; -C 99 ; WX 600 ; N c ; B 66 -15 529 441 ; -C 100 ; WX 600 ; N d ; B 45 -15 591 629 ; -C 101 ; WX 600 ; N e ; B 66 -15 548 441 ; -C 102 ; WX 600 ; N f ; B 114 0 531 629 ; L i fi ; L l fl ; -C 103 ; WX 600 ; N g ; B 45 -157 566 441 ; -C 104 ; WX 600 ; N h ; B 18 0 582 629 ; -C 105 ; WX 600 ; N i ; B 95 0 505 657 ; -C 106 ; WX 600 ; N j ; B 82 -157 410 657 ; -C 107 ; WX 600 ; N k ; B 43 0 580 629 ; -C 108 ; WX 600 ; N l ; B 95 0 505 629 ; -C 109 ; WX 600 ; N m ; B -5 0 605 441 ; -C 110 ; WX 600 ; N n ; B 26 0 575 441 ; -C 111 ; WX 600 ; N o ; B 62 -15 538 441 ; -C 112 ; WX 600 ; N p ; B 9 -157 555 441 ; -C 113 ; WX 600 ; N q ; B 45 -157 591 441 ; -C 114 ; WX 600 ; N r ; B 60 0 559 441 ; -C 115 ; WX 600 ; N s ; B 80 -15 513 441 ; -C 116 ; WX 600 ; N t ; B 87 -15 530 561 ; -C 117 ; WX 600 ; N u ; B 21 -15 562 426 ; -C 118 ; WX 600 ; N v ; B 10 -10 590 426 ; -C 119 ; WX 600 ; N w ; B -4 -10 604 426 ; -C 120 ; WX 600 ; N x ; B 20 0 580 426 ; -C 121 ; WX 600 ; N y ; B 7 -157 592 426 ; -C 122 ; WX 600 ; N z ; B 99 0 502 426 ; -C 123 ; WX 600 ; N braceleft ; B 182 -108 437 622 ; -C 124 ; WX 600 ; N bar ; B 275 -250 326 750 ; -C 125 ; WX 600 ; N braceright ; B 163 -108 418 622 ; -C 126 ; WX 600 ; N asciitilde ; B 63 197 540 320 ; -C 161 ; WX 600 ; N exclamdown ; B 236 -157 364 430 ; -C 162 ; WX 600 ; N cent ; B 96 -49 500 614 ; -C 163 ; WX 600 ; N sterling ; B 84 -21 521 611 ; -C 164 ; WX 600 ; N fraction ; B 92 -57 509 665 ; -C 165 ; WX 600 ; N yen ; B 26 0 574 562 ; -C 166 ; WX 600 ; N florin ; B 4 -143 539 622 ; -C 167 ; WX 600 ; N section ; B 113 -78 488 580 ; -C 168 ; WX 600 ; N currency ; B 73 58 527 506 ; -C 169 ; WX 600 ; N quotesingle ; B 259 328 341 562 ; -C 170 ; WX 600 ; N quotedblleft ; B 143 328 471 562 ; -C 171 ; WX 600 ; N guillemotleft ; B 37 70 563 446 ; -C 172 ; WX 600 ; N guilsinglleft ; B 149 70 451 446 ; -C 173 ; WX 600 ; N guilsinglright ; B 149 70 451 446 ; -C 174 ; WX 600 ; N fi ; B 3 0 597 629 ; -C 175 ; WX 600 ; N fl ; B 3 0 597 629 ; -C 177 ; WX 600 ; N endash ; B 75 231 525 285 ; -C 178 ; WX 600 ; N dagger ; B 141 -78 459 580 ; -C 179 ; WX 600 ; N daggerdbl ; B 141 -78 459 580 ; -C 180 ; WX 600 ; N periodcentered ; B 222 189 378 327 ; -C 182 ; WX 600 ; N paragraph ; B 50 -78 511 562 ; -C 183 ; WX 600 ; N bullet ; B 172 130 428 383 ; -C 184 ; WX 600 ; N quotesinglbase ; B 213 -134 376 100 ; -C 185 ; WX 600 ; N quotedblbase ; B 143 -134 457 100 ; -C 186 ; WX 600 ; N quotedblright ; B 143 328 457 562 ; -C 187 ; WX 600 ; N guillemotright ; B 37 70 563 446 ; -C 188 ; WX 600 ; N ellipsis ; B 37 -15 563 111 ; -C 189 ; WX 600 ; N perthousand ; B 3 -15 600 622 ; -C 191 ; WX 600 ; N questiondown ; B 108 -157 471 430 ; -C 193 ; WX 600 ; N grave ; B 151 497 378 672 ; -C 194 ; WX 600 ; N acute ; B 242 497 469 672 ; -C 195 ; WX 600 ; N circumflex ; B 124 477 476 654 ; -C 196 ; WX 600 ; N tilde ; B 105 489 503 606 ; -C 197 ; WX 600 ; N macron ; B 120 525 480 565 ; -C 198 ; WX 600 ; N breve ; B 153 501 447 609 ; -C 199 ; WX 600 ; N dotaccent ; B 249 537 352 640 ; -C 200 ; WX 600 ; N dieresis ; B 148 537 453 640 ; -C 202 ; WX 600 ; N ring ; B 218 463 382 627 ; -C 203 ; WX 600 ; N cedilla ; B 224 -151 362 10 ; -C 205 ; WX 600 ; N hungarumlaut ; B 133 497 540 672 ; -C 206 ; WX 600 ; N ogonek ; B 211 -172 407 4 ; -C 207 ; WX 600 ; N caron ; B 124 492 476 669 ; -C 208 ; WX 600 ; N emdash ; B 0 231 600 285 ; -C 225 ; WX 600 ; N AE ; B 3 0 550 562 ; -C 227 ; WX 600 ; N ordfeminine ; B 156 249 442 580 ; -C 232 ; WX 600 ; N Lslash ; B 47 0 554 562 ; -C 233 ; WX 600 ; N Oslash ; B 43 -80 557 629 ; -C 234 ; WX 600 ; N OE ; B 7 0 567 562 ; -C 235 ; WX 600 ; N ordmasculine ; B 157 249 443 580 ; -C 241 ; WX 600 ; N ae ; B 19 -15 570 441 ; -C 245 ; WX 600 ; N dotlessi ; B 95 0 505 426 ; -C 248 ; WX 600 ; N lslash ; B 95 0 505 629 ; -C 249 ; WX 600 ; N oslash ; B 62 -80 538 506 ; -C 250 ; WX 600 ; N oe ; B 19 -15 559 441 ; -C 251 ; WX 600 ; N germandbls ; B 48 -15 588 629 ; -C -1 ; WX 600 ; N Idieresis ; B 96 0 504 753 ; -C -1 ; WX 600 ; N eacute ; B 66 -15 548 672 ; -C -1 ; WX 600 ; N abreve ; B 53 -15 559 609 ; -C -1 ; WX 600 ; N uhungarumlaut ; B 21 -15 580 672 ; -C -1 ; WX 600 ; N ecaron ; B 66 -15 548 669 ; -C -1 ; WX 600 ; N Ydieresis ; B 24 0 576 753 ; -C -1 ; WX 600 ; N divide ; B 87 48 513 467 ; -C -1 ; WX 600 ; N Yacute ; B 24 0 576 805 ; -C -1 ; WX 600 ; N Acircumflex ; B 3 0 597 787 ; -C -1 ; WX 600 ; N aacute ; B 53 -15 559 672 ; -C -1 ; WX 600 ; N Ucircumflex ; B 17 -18 583 787 ; -C -1 ; WX 600 ; N yacute ; B 7 -157 592 672 ; -C -1 ; WX 600 ; N scommaaccent ; B 80 -250 513 441 ; -C -1 ; WX 600 ; N ecircumflex ; B 66 -15 548 654 ; -C -1 ; WX 600 ; N Uring ; B 17 -18 583 760 ; -C -1 ; WX 600 ; N Udieresis ; B 17 -18 583 753 ; -C -1 ; WX 600 ; N aogonek ; B 53 -172 587 441 ; -C -1 ; WX 600 ; N Uacute ; B 17 -18 583 805 ; -C -1 ; WX 600 ; N uogonek ; B 21 -172 590 426 ; -C -1 ; WX 600 ; N Edieresis ; B 53 0 550 753 ; -C -1 ; WX 600 ; N Dcroat ; B 30 0 574 562 ; -C -1 ; WX 600 ; N commaaccent ; B 198 -250 335 -58 ; -C -1 ; WX 600 ; N copyright ; B 0 -18 600 580 ; -C -1 ; WX 600 ; N Emacron ; B 53 0 550 698 ; -C -1 ; WX 600 ; N ccaron ; B 66 -15 529 669 ; -C -1 ; WX 600 ; N aring ; B 53 -15 559 627 ; -C -1 ; WX 600 ; N Ncommaaccent ; B 7 -250 593 562 ; -C -1 ; WX 600 ; N lacute ; B 95 0 505 805 ; -C -1 ; WX 600 ; N agrave ; B 53 -15 559 672 ; -C -1 ; WX 600 ; N Tcommaaccent ; B 38 -250 563 562 ; -C -1 ; WX 600 ; N Cacute ; B 41 -18 540 805 ; -C -1 ; WX 600 ; N atilde ; B 53 -15 559 606 ; -C -1 ; WX 600 ; N Edotaccent ; B 53 0 550 753 ; -C -1 ; WX 600 ; N scaron ; B 80 -15 513 669 ; -C -1 ; WX 600 ; N scedilla ; B 80 -151 513 441 ; -C -1 ; WX 600 ; N iacute ; B 95 0 505 672 ; -C -1 ; WX 600 ; N lozenge ; B 18 0 443 706 ; -C -1 ; WX 600 ; N Rcaron ; B 38 0 588 802 ; -C -1 ; WX 600 ; N Gcommaaccent ; B 31 -250 575 580 ; -C -1 ; WX 600 ; N ucircumflex ; B 21 -15 562 654 ; -C -1 ; WX 600 ; N acircumflex ; B 53 -15 559 654 ; -C -1 ; WX 600 ; N Amacron ; B 3 0 597 698 ; -C -1 ; WX 600 ; N rcaron ; B 60 0 559 669 ; -C -1 ; WX 600 ; N ccedilla ; B 66 -151 529 441 ; -C -1 ; WX 600 ; N Zdotaccent ; B 86 0 514 753 ; -C -1 ; WX 600 ; N Thorn ; B 79 0 538 562 ; -C -1 ; WX 600 ; N Omacron ; B 43 -18 557 698 ; -C -1 ; WX 600 ; N Racute ; B 38 0 588 805 ; -C -1 ; WX 600 ; N Sacute ; B 72 -20 529 805 ; -C -1 ; WX 600 ; N dcaron ; B 45 -15 715 629 ; -C -1 ; WX 600 ; N Umacron ; B 17 -18 583 698 ; -C -1 ; WX 600 ; N uring ; B 21 -15 562 627 ; -C -1 ; WX 600 ; N threesuperior ; B 155 240 406 622 ; -C -1 ; WX 600 ; N Ograve ; B 43 -18 557 805 ; -C -1 ; WX 600 ; N Agrave ; B 3 0 597 805 ; -C -1 ; WX 600 ; N Abreve ; B 3 0 597 732 ; -C -1 ; WX 600 ; N multiply ; B 87 43 515 470 ; -C -1 ; WX 600 ; N uacute ; B 21 -15 562 672 ; -C -1 ; WX 600 ; N Tcaron ; B 38 0 563 802 ; -C -1 ; WX 600 ; N partialdiff ; B 17 -38 459 710 ; -C -1 ; WX 600 ; N ydieresis ; B 7 -157 592 620 ; -C -1 ; WX 600 ; N Nacute ; B 7 -13 593 805 ; -C -1 ; WX 600 ; N icircumflex ; B 94 0 505 654 ; -C -1 ; WX 600 ; N Ecircumflex ; B 53 0 550 787 ; -C -1 ; WX 600 ; N adieresis ; B 53 -15 559 620 ; -C -1 ; WX 600 ; N edieresis ; B 66 -15 548 620 ; -C -1 ; WX 600 ; N cacute ; B 66 -15 529 672 ; -C -1 ; WX 600 ; N nacute ; B 26 0 575 672 ; -C -1 ; WX 600 ; N umacron ; B 21 -15 562 565 ; -C -1 ; WX 600 ; N Ncaron ; B 7 -13 593 802 ; -C -1 ; WX 600 ; N Iacute ; B 96 0 504 805 ; -C -1 ; WX 600 ; N plusminus ; B 87 44 513 558 ; -C -1 ; WX 600 ; N brokenbar ; B 275 -175 326 675 ; -C -1 ; WX 600 ; N registered ; B 0 -18 600 580 ; -C -1 ; WX 600 ; N Gbreve ; B 31 -18 575 732 ; -C -1 ; WX 600 ; N Idotaccent ; B 96 0 504 753 ; -C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ; -C -1 ; WX 600 ; N Egrave ; B 53 0 550 805 ; -C -1 ; WX 600 ; N racute ; B 60 0 559 672 ; -C -1 ; WX 600 ; N omacron ; B 62 -15 538 565 ; -C -1 ; WX 600 ; N Zacute ; B 86 0 514 805 ; -C -1 ; WX 600 ; N Zcaron ; B 86 0 514 802 ; -C -1 ; WX 600 ; N greaterequal ; B 98 0 502 710 ; -C -1 ; WX 600 ; N Eth ; B 30 0 574 562 ; -C -1 ; WX 600 ; N Ccedilla ; B 41 -151 540 580 ; -C -1 ; WX 600 ; N lcommaaccent ; B 95 -250 505 629 ; -C -1 ; WX 600 ; N tcaron ; B 87 -15 530 717 ; -C -1 ; WX 600 ; N eogonek ; B 66 -172 548 441 ; -C -1 ; WX 600 ; N Uogonek ; B 17 -172 583 562 ; -C -1 ; WX 600 ; N Aacute ; B 3 0 597 805 ; -C -1 ; WX 600 ; N Adieresis ; B 3 0 597 753 ; -C -1 ; WX 600 ; N egrave ; B 66 -15 548 672 ; -C -1 ; WX 600 ; N zacute ; B 99 0 502 672 ; -C -1 ; WX 600 ; N iogonek ; B 95 -172 505 657 ; -C -1 ; WX 600 ; N Oacute ; B 43 -18 557 805 ; -C -1 ; WX 600 ; N oacute ; B 62 -15 538 672 ; -C -1 ; WX 600 ; N amacron ; B 53 -15 559 565 ; -C -1 ; WX 600 ; N sacute ; B 80 -15 513 672 ; -C -1 ; WX 600 ; N idieresis ; B 95 0 505 620 ; -C -1 ; WX 600 ; N Ocircumflex ; B 43 -18 557 787 ; -C -1 ; WX 600 ; N Ugrave ; B 17 -18 583 805 ; -C -1 ; WX 600 ; N Delta ; B 6 0 598 688 ; -C -1 ; WX 600 ; N thorn ; B -6 -157 555 629 ; -C -1 ; WX 600 ; N twosuperior ; B 177 249 424 622 ; -C -1 ; WX 600 ; N Odieresis ; B 43 -18 557 753 ; -C -1 ; WX 600 ; N mu ; B 21 -157 562 426 ; -C -1 ; WX 600 ; N igrave ; B 95 0 505 672 ; -C -1 ; WX 600 ; N ohungarumlaut ; B 62 -15 580 672 ; -C -1 ; WX 600 ; N Eogonek ; B 53 -172 561 562 ; -C -1 ; WX 600 ; N dcroat ; B 45 -15 591 629 ; -C -1 ; WX 600 ; N threequarters ; B 8 -56 593 666 ; -C -1 ; WX 600 ; N Scedilla ; B 72 -151 529 580 ; -C -1 ; WX 600 ; N lcaron ; B 95 0 533 629 ; -C -1 ; WX 600 ; N Kcommaaccent ; B 38 -250 582 562 ; -C -1 ; WX 600 ; N Lacute ; B 47 0 554 805 ; -C -1 ; WX 600 ; N trademark ; B -23 263 623 562 ; -C -1 ; WX 600 ; N edotaccent ; B 66 -15 548 620 ; -C -1 ; WX 600 ; N Igrave ; B 96 0 504 805 ; -C -1 ; WX 600 ; N Imacron ; B 96 0 504 698 ; -C -1 ; WX 600 ; N Lcaron ; B 47 0 554 562 ; -C -1 ; WX 600 ; N onehalf ; B 0 -57 611 665 ; -C -1 ; WX 600 ; N lessequal ; B 98 0 502 710 ; -C -1 ; WX 600 ; N ocircumflex ; B 62 -15 538 654 ; -C -1 ; WX 600 ; N ntilde ; B 26 0 575 606 ; -C -1 ; WX 600 ; N Uhungarumlaut ; B 17 -18 590 805 ; -C -1 ; WX 600 ; N Eacute ; B 53 0 550 805 ; -C -1 ; WX 600 ; N emacron ; B 66 -15 548 565 ; -C -1 ; WX 600 ; N gbreve ; B 45 -157 566 609 ; -C -1 ; WX 600 ; N onequarter ; B 0 -57 600 665 ; -C -1 ; WX 600 ; N Scaron ; B 72 -20 529 802 ; -C -1 ; WX 600 ; N Scommaaccent ; B 72 -250 529 580 ; -C -1 ; WX 600 ; N Ohungarumlaut ; B 43 -18 580 805 ; -C -1 ; WX 600 ; N degree ; B 123 269 477 622 ; -C -1 ; WX 600 ; N ograve ; B 62 -15 538 672 ; -C -1 ; WX 600 ; N Ccaron ; B 41 -18 540 802 ; -C -1 ; WX 600 ; N ugrave ; B 21 -15 562 672 ; -C -1 ; WX 600 ; N radical ; B 3 -15 597 792 ; -C -1 ; WX 600 ; N Dcaron ; B 43 0 574 802 ; -C -1 ; WX 600 ; N rcommaaccent ; B 60 -250 559 441 ; -C -1 ; WX 600 ; N Ntilde ; B 7 -13 593 729 ; -C -1 ; WX 600 ; N otilde ; B 62 -15 538 606 ; -C -1 ; WX 600 ; N Rcommaaccent ; B 38 -250 588 562 ; -C -1 ; WX 600 ; N Lcommaaccent ; B 47 -250 554 562 ; -C -1 ; WX 600 ; N Atilde ; B 3 0 597 729 ; -C -1 ; WX 600 ; N Aogonek ; B 3 -172 608 562 ; -C -1 ; WX 600 ; N Aring ; B 3 0 597 750 ; -C -1 ; WX 600 ; N Otilde ; B 43 -18 557 729 ; -C -1 ; WX 600 ; N zdotaccent ; B 99 0 502 620 ; -C -1 ; WX 600 ; N Ecaron ; B 53 0 550 802 ; -C -1 ; WX 600 ; N Iogonek ; B 96 -172 504 562 ; -C -1 ; WX 600 ; N kcommaaccent ; B 43 -250 580 629 ; -C -1 ; WX 600 ; N minus ; B 80 232 520 283 ; -C -1 ; WX 600 ; N Icircumflex ; B 96 0 504 787 ; -C -1 ; WX 600 ; N ncaron ; B 26 0 575 669 ; -C -1 ; WX 600 ; N tcommaaccent ; B 87 -250 530 561 ; -C -1 ; WX 600 ; N logicalnot ; B 87 108 513 369 ; -C -1 ; WX 600 ; N odieresis ; B 62 -15 538 620 ; -C -1 ; WX 600 ; N udieresis ; B 21 -15 562 620 ; -C -1 ; WX 600 ; N notequal ; B 15 -16 540 529 ; -C -1 ; WX 600 ; N gcommaaccent ; B 45 -157 566 708 ; -C -1 ; WX 600 ; N eth ; B 62 -15 538 629 ; -C -1 ; WX 600 ; N zcaron ; B 99 0 502 669 ; -C -1 ; WX 600 ; N ncommaaccent ; B 26 -250 575 441 ; -C -1 ; WX 600 ; N onesuperior ; B 172 249 428 622 ; -C -1 ; WX 600 ; N imacron ; B 95 0 505 565 ; -C -1 ; WX 600 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/FontsResourceAnchor.class b/target/classes/com/itextpdf/text/pdf/fonts/FontsResourceAnchor.class deleted file mode 100644 index 3c819130..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/FontsResourceAnchor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-Bold.afm b/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-Bold.afm deleted file mode 100644 index 837c594e..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-Bold.afm +++ /dev/null @@ -1,2827 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 12:43:52 1997 -Comment UniqueID 43052 -Comment VMusage 37169 48194 -FontName Helvetica-Bold -FullName Helvetica Bold -FamilyName Helvetica -Weight Bold -ItalicAngle 0 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -170 -228 1003 962 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 718 -XHeight 532 -Ascender 718 -Descender -207 -StdHW 118 -StdVW 140 -StartCharMetrics 315 -C 32 ; WX 278 ; N space ; B 0 0 0 0 ; -C 33 ; WX 333 ; N exclam ; B 90 0 244 718 ; -C 34 ; WX 474 ; N quotedbl ; B 98 447 376 718 ; -C 35 ; WX 556 ; N numbersign ; B 18 0 538 698 ; -C 36 ; WX 556 ; N dollar ; B 30 -115 523 775 ; -C 37 ; WX 889 ; N percent ; B 28 -19 861 710 ; -C 38 ; WX 722 ; N ampersand ; B 54 -19 701 718 ; -C 39 ; WX 278 ; N quoteright ; B 69 445 209 718 ; -C 40 ; WX 333 ; N parenleft ; B 35 -208 314 734 ; -C 41 ; WX 333 ; N parenright ; B 19 -208 298 734 ; -C 42 ; WX 389 ; N asterisk ; B 27 387 362 718 ; -C 43 ; WX 584 ; N plus ; B 40 0 544 506 ; -C 44 ; WX 278 ; N comma ; B 64 -168 214 146 ; -C 45 ; WX 333 ; N hyphen ; B 27 215 306 345 ; -C 46 ; WX 278 ; N period ; B 64 0 214 146 ; -C 47 ; WX 278 ; N slash ; B -33 -19 311 737 ; -C 48 ; WX 556 ; N zero ; B 32 -19 524 710 ; -C 49 ; WX 556 ; N one ; B 69 0 378 710 ; -C 50 ; WX 556 ; N two ; B 26 0 511 710 ; -C 51 ; WX 556 ; N three ; B 27 -19 516 710 ; -C 52 ; WX 556 ; N four ; B 27 0 526 710 ; -C 53 ; WX 556 ; N five ; B 27 -19 516 698 ; -C 54 ; WX 556 ; N six ; B 31 -19 520 710 ; -C 55 ; WX 556 ; N seven ; B 25 0 528 698 ; -C 56 ; WX 556 ; N eight ; B 32 -19 524 710 ; -C 57 ; WX 556 ; N nine ; B 30 -19 522 710 ; -C 58 ; WX 333 ; N colon ; B 92 0 242 512 ; -C 59 ; WX 333 ; N semicolon ; B 92 -168 242 512 ; -C 60 ; WX 584 ; N less ; B 38 -8 546 514 ; -C 61 ; WX 584 ; N equal ; B 40 87 544 419 ; -C 62 ; WX 584 ; N greater ; B 38 -8 546 514 ; -C 63 ; WX 611 ; N question ; B 60 0 556 727 ; -C 64 ; WX 975 ; N at ; B 118 -19 856 737 ; -C 65 ; WX 722 ; N A ; B 20 0 702 718 ; -C 66 ; WX 722 ; N B ; B 76 0 669 718 ; -C 67 ; WX 722 ; N C ; B 44 -19 684 737 ; -C 68 ; WX 722 ; N D ; B 76 0 685 718 ; -C 69 ; WX 667 ; N E ; B 76 0 621 718 ; -C 70 ; WX 611 ; N F ; B 76 0 587 718 ; -C 71 ; WX 778 ; N G ; B 44 -19 713 737 ; -C 72 ; WX 722 ; N H ; B 71 0 651 718 ; -C 73 ; WX 278 ; N I ; B 64 0 214 718 ; -C 74 ; WX 556 ; N J ; B 22 -18 484 718 ; -C 75 ; WX 722 ; N K ; B 87 0 722 718 ; -C 76 ; WX 611 ; N L ; B 76 0 583 718 ; -C 77 ; WX 833 ; N M ; B 69 0 765 718 ; -C 78 ; WX 722 ; N N ; B 69 0 654 718 ; -C 79 ; WX 778 ; N O ; B 44 -19 734 737 ; -C 80 ; WX 667 ; N P ; B 76 0 627 718 ; -C 81 ; WX 778 ; N Q ; B 44 -52 737 737 ; -C 82 ; WX 722 ; N R ; B 76 0 677 718 ; -C 83 ; WX 667 ; N S ; B 39 -19 629 737 ; -C 84 ; WX 611 ; N T ; B 14 0 598 718 ; -C 85 ; WX 722 ; N U ; B 72 -19 651 718 ; -C 86 ; WX 667 ; N V ; B 19 0 648 718 ; -C 87 ; WX 944 ; N W ; B 16 0 929 718 ; -C 88 ; WX 667 ; N X ; B 14 0 653 718 ; -C 89 ; WX 667 ; N Y ; B 15 0 653 718 ; -C 90 ; WX 611 ; N Z ; B 25 0 586 718 ; -C 91 ; WX 333 ; N bracketleft ; B 63 -196 309 722 ; -C 92 ; WX 278 ; N backslash ; B -33 -19 311 737 ; -C 93 ; WX 333 ; N bracketright ; B 24 -196 270 722 ; -C 94 ; WX 584 ; N asciicircum ; B 62 323 522 698 ; -C 95 ; WX 556 ; N underscore ; B 0 -125 556 -75 ; -C 96 ; WX 278 ; N quoteleft ; B 69 454 209 727 ; -C 97 ; WX 556 ; N a ; B 29 -14 527 546 ; -C 98 ; WX 611 ; N b ; B 61 -14 578 718 ; -C 99 ; WX 556 ; N c ; B 34 -14 524 546 ; -C 100 ; WX 611 ; N d ; B 34 -14 551 718 ; -C 101 ; WX 556 ; N e ; B 23 -14 528 546 ; -C 102 ; WX 333 ; N f ; B 10 0 318 727 ; L i fi ; L l fl ; -C 103 ; WX 611 ; N g ; B 40 -217 553 546 ; -C 104 ; WX 611 ; N h ; B 65 0 546 718 ; -C 105 ; WX 278 ; N i ; B 69 0 209 725 ; -C 106 ; WX 278 ; N j ; B 3 -214 209 725 ; -C 107 ; WX 556 ; N k ; B 69 0 562 718 ; -C 108 ; WX 278 ; N l ; B 69 0 209 718 ; -C 109 ; WX 889 ; N m ; B 64 0 826 546 ; -C 110 ; WX 611 ; N n ; B 65 0 546 546 ; -C 111 ; WX 611 ; N o ; B 34 -14 578 546 ; -C 112 ; WX 611 ; N p ; B 62 -207 578 546 ; -C 113 ; WX 611 ; N q ; B 34 -207 552 546 ; -C 114 ; WX 389 ; N r ; B 64 0 373 546 ; -C 115 ; WX 556 ; N s ; B 30 -14 519 546 ; -C 116 ; WX 333 ; N t ; B 10 -6 309 676 ; -C 117 ; WX 611 ; N u ; B 66 -14 545 532 ; -C 118 ; WX 556 ; N v ; B 13 0 543 532 ; -C 119 ; WX 778 ; N w ; B 10 0 769 532 ; -C 120 ; WX 556 ; N x ; B 15 0 541 532 ; -C 121 ; WX 556 ; N y ; B 10 -214 539 532 ; -C 122 ; WX 500 ; N z ; B 20 0 480 532 ; -C 123 ; WX 389 ; N braceleft ; B 48 -196 365 722 ; -C 124 ; WX 280 ; N bar ; B 84 -225 196 775 ; -C 125 ; WX 389 ; N braceright ; B 24 -196 341 722 ; -C 126 ; WX 584 ; N asciitilde ; B 61 163 523 343 ; -C 161 ; WX 333 ; N exclamdown ; B 90 -186 244 532 ; -C 162 ; WX 556 ; N cent ; B 34 -118 524 628 ; -C 163 ; WX 556 ; N sterling ; B 28 -16 541 718 ; -C 164 ; WX 167 ; N fraction ; B -170 -19 336 710 ; -C 165 ; WX 556 ; N yen ; B -9 0 565 698 ; -C 166 ; WX 556 ; N florin ; B -10 -210 516 737 ; -C 167 ; WX 556 ; N section ; B 34 -184 522 727 ; -C 168 ; WX 556 ; N currency ; B -3 76 559 636 ; -C 169 ; WX 238 ; N quotesingle ; B 70 447 168 718 ; -C 170 ; WX 500 ; N quotedblleft ; B 64 454 436 727 ; -C 171 ; WX 556 ; N guillemotleft ; B 88 76 468 484 ; -C 172 ; WX 333 ; N guilsinglleft ; B 83 76 250 484 ; -C 173 ; WX 333 ; N guilsinglright ; B 83 76 250 484 ; -C 174 ; WX 611 ; N fi ; B 10 0 542 727 ; -C 175 ; WX 611 ; N fl ; B 10 0 542 727 ; -C 177 ; WX 556 ; N endash ; B 0 227 556 333 ; -C 178 ; WX 556 ; N dagger ; B 36 -171 520 718 ; -C 179 ; WX 556 ; N daggerdbl ; B 36 -171 520 718 ; -C 180 ; WX 278 ; N periodcentered ; B 58 172 220 334 ; -C 182 ; WX 556 ; N paragraph ; B -8 -191 539 700 ; -C 183 ; WX 350 ; N bullet ; B 10 194 340 524 ; -C 184 ; WX 278 ; N quotesinglbase ; B 69 -146 209 127 ; -C 185 ; WX 500 ; N quotedblbase ; B 64 -146 436 127 ; -C 186 ; WX 500 ; N quotedblright ; B 64 445 436 718 ; -C 187 ; WX 556 ; N guillemotright ; B 88 76 468 484 ; -C 188 ; WX 1000 ; N ellipsis ; B 92 0 908 146 ; -C 189 ; WX 1000 ; N perthousand ; B -3 -19 1003 710 ; -C 191 ; WX 611 ; N questiondown ; B 55 -195 551 532 ; -C 193 ; WX 333 ; N grave ; B -23 604 225 750 ; -C 194 ; WX 333 ; N acute ; B 108 604 356 750 ; -C 195 ; WX 333 ; N circumflex ; B -10 604 343 750 ; -C 196 ; WX 333 ; N tilde ; B -17 610 350 737 ; -C 197 ; WX 333 ; N macron ; B -6 604 339 678 ; -C 198 ; WX 333 ; N breve ; B -2 604 335 750 ; -C 199 ; WX 333 ; N dotaccent ; B 104 614 230 729 ; -C 200 ; WX 333 ; N dieresis ; B 6 614 327 729 ; -C 202 ; WX 333 ; N ring ; B 59 568 275 776 ; -C 203 ; WX 333 ; N cedilla ; B 6 -228 245 0 ; -C 205 ; WX 333 ; N hungarumlaut ; B 9 604 486 750 ; -C 206 ; WX 333 ; N ogonek ; B 71 -228 304 0 ; -C 207 ; WX 333 ; N caron ; B -10 604 343 750 ; -C 208 ; WX 1000 ; N emdash ; B 0 227 1000 333 ; -C 225 ; WX 1000 ; N AE ; B 5 0 954 718 ; -C 227 ; WX 370 ; N ordfeminine ; B 22 401 347 737 ; -C 232 ; WX 611 ; N Lslash ; B -20 0 583 718 ; -C 233 ; WX 778 ; N Oslash ; B 33 -27 744 745 ; -C 234 ; WX 1000 ; N OE ; B 37 -19 961 737 ; -C 235 ; WX 365 ; N ordmasculine ; B 6 401 360 737 ; -C 241 ; WX 889 ; N ae ; B 29 -14 858 546 ; -C 245 ; WX 278 ; N dotlessi ; B 69 0 209 532 ; -C 248 ; WX 278 ; N lslash ; B -18 0 296 718 ; -C 249 ; WX 611 ; N oslash ; B 22 -29 589 560 ; -C 250 ; WX 944 ; N oe ; B 34 -14 912 546 ; -C 251 ; WX 611 ; N germandbls ; B 69 -14 579 731 ; -C -1 ; WX 278 ; N Idieresis ; B -21 0 300 915 ; -C -1 ; WX 556 ; N eacute ; B 23 -14 528 750 ; -C -1 ; WX 556 ; N abreve ; B 29 -14 527 750 ; -C -1 ; WX 611 ; N uhungarumlaut ; B 66 -14 625 750 ; -C -1 ; WX 556 ; N ecaron ; B 23 -14 528 750 ; -C -1 ; WX 667 ; N Ydieresis ; B 15 0 653 915 ; -C -1 ; WX 584 ; N divide ; B 40 -42 544 548 ; -C -1 ; WX 667 ; N Yacute ; B 15 0 653 936 ; -C -1 ; WX 722 ; N Acircumflex ; B 20 0 702 936 ; -C -1 ; WX 556 ; N aacute ; B 29 -14 527 750 ; -C -1 ; WX 722 ; N Ucircumflex ; B 72 -19 651 936 ; -C -1 ; WX 556 ; N yacute ; B 10 -214 539 750 ; -C -1 ; WX 556 ; N scommaaccent ; B 30 -228 519 546 ; -C -1 ; WX 556 ; N ecircumflex ; B 23 -14 528 750 ; -C -1 ; WX 722 ; N Uring ; B 72 -19 651 962 ; -C -1 ; WX 722 ; N Udieresis ; B 72 -19 651 915 ; -C -1 ; WX 556 ; N aogonek ; B 29 -224 545 546 ; -C -1 ; WX 722 ; N Uacute ; B 72 -19 651 936 ; -C -1 ; WX 611 ; N uogonek ; B 66 -228 545 532 ; -C -1 ; WX 667 ; N Edieresis ; B 76 0 621 915 ; -C -1 ; WX 722 ; N Dcroat ; B -5 0 685 718 ; -C -1 ; WX 250 ; N commaaccent ; B 64 -228 199 -50 ; -C -1 ; WX 737 ; N copyright ; B -11 -19 749 737 ; -C -1 ; WX 667 ; N Emacron ; B 76 0 621 864 ; -C -1 ; WX 556 ; N ccaron ; B 34 -14 524 750 ; -C -1 ; WX 556 ; N aring ; B 29 -14 527 776 ; -C -1 ; WX 722 ; N Ncommaaccent ; B 69 -228 654 718 ; -C -1 ; WX 278 ; N lacute ; B 69 0 329 936 ; -C -1 ; WX 556 ; N agrave ; B 29 -14 527 750 ; -C -1 ; WX 611 ; N Tcommaaccent ; B 14 -228 598 718 ; -C -1 ; WX 722 ; N Cacute ; B 44 -19 684 936 ; -C -1 ; WX 556 ; N atilde ; B 29 -14 527 737 ; -C -1 ; WX 667 ; N Edotaccent ; B 76 0 621 915 ; -C -1 ; WX 556 ; N scaron ; B 30 -14 519 750 ; -C -1 ; WX 556 ; N scedilla ; B 30 -228 519 546 ; -C -1 ; WX 278 ; N iacute ; B 69 0 329 750 ; -C -1 ; WX 494 ; N lozenge ; B 10 0 484 745 ; -C -1 ; WX 722 ; N Rcaron ; B 76 0 677 936 ; -C -1 ; WX 778 ; N Gcommaaccent ; B 44 -228 713 737 ; -C -1 ; WX 611 ; N ucircumflex ; B 66 -14 545 750 ; -C -1 ; WX 556 ; N acircumflex ; B 29 -14 527 750 ; -C -1 ; WX 722 ; N Amacron ; B 20 0 702 864 ; -C -1 ; WX 389 ; N rcaron ; B 18 0 373 750 ; -C -1 ; WX 556 ; N ccedilla ; B 34 -228 524 546 ; -C -1 ; WX 611 ; N Zdotaccent ; B 25 0 586 915 ; -C -1 ; WX 667 ; N Thorn ; B 76 0 627 718 ; -C -1 ; WX 778 ; N Omacron ; B 44 -19 734 864 ; -C -1 ; WX 722 ; N Racute ; B 76 0 677 936 ; -C -1 ; WX 667 ; N Sacute ; B 39 -19 629 936 ; -C -1 ; WX 743 ; N dcaron ; B 34 -14 750 718 ; -C -1 ; WX 722 ; N Umacron ; B 72 -19 651 864 ; -C -1 ; WX 611 ; N uring ; B 66 -14 545 776 ; -C -1 ; WX 333 ; N threesuperior ; B 8 271 326 710 ; -C -1 ; WX 778 ; N Ograve ; B 44 -19 734 936 ; -C -1 ; WX 722 ; N Agrave ; B 20 0 702 936 ; -C -1 ; WX 722 ; N Abreve ; B 20 0 702 936 ; -C -1 ; WX 584 ; N multiply ; B 40 1 545 505 ; -C -1 ; WX 611 ; N uacute ; B 66 -14 545 750 ; -C -1 ; WX 611 ; N Tcaron ; B 14 0 598 936 ; -C -1 ; WX 494 ; N partialdiff ; B 11 -21 494 750 ; -C -1 ; WX 556 ; N ydieresis ; B 10 -214 539 729 ; -C -1 ; WX 722 ; N Nacute ; B 69 0 654 936 ; -C -1 ; WX 278 ; N icircumflex ; B -37 0 316 750 ; -C -1 ; WX 667 ; N Ecircumflex ; B 76 0 621 936 ; -C -1 ; WX 556 ; N adieresis ; B 29 -14 527 729 ; -C -1 ; WX 556 ; N edieresis ; B 23 -14 528 729 ; -C -1 ; WX 556 ; N cacute ; B 34 -14 524 750 ; -C -1 ; WX 611 ; N nacute ; B 65 0 546 750 ; -C -1 ; WX 611 ; N umacron ; B 66 -14 545 678 ; -C -1 ; WX 722 ; N Ncaron ; B 69 0 654 936 ; -C -1 ; WX 278 ; N Iacute ; B 64 0 329 936 ; -C -1 ; WX 584 ; N plusminus ; B 40 0 544 506 ; -C -1 ; WX 280 ; N brokenbar ; B 84 -150 196 700 ; -C -1 ; WX 737 ; N registered ; B -11 -19 748 737 ; -C -1 ; WX 778 ; N Gbreve ; B 44 -19 713 936 ; -C -1 ; WX 278 ; N Idotaccent ; B 64 0 214 915 ; -C -1 ; WX 600 ; N summation ; B 14 -10 585 706 ; -C -1 ; WX 667 ; N Egrave ; B 76 0 621 936 ; -C -1 ; WX 389 ; N racute ; B 64 0 384 750 ; -C -1 ; WX 611 ; N omacron ; B 34 -14 578 678 ; -C -1 ; WX 611 ; N Zacute ; B 25 0 586 936 ; -C -1 ; WX 611 ; N Zcaron ; B 25 0 586 936 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 523 704 ; -C -1 ; WX 722 ; N Eth ; B -5 0 685 718 ; -C -1 ; WX 722 ; N Ccedilla ; B 44 -228 684 737 ; -C -1 ; WX 278 ; N lcommaaccent ; B 69 -228 213 718 ; -C -1 ; WX 389 ; N tcaron ; B 10 -6 421 878 ; -C -1 ; WX 556 ; N eogonek ; B 23 -228 528 546 ; -C -1 ; WX 722 ; N Uogonek ; B 72 -228 651 718 ; -C -1 ; WX 722 ; N Aacute ; B 20 0 702 936 ; -C -1 ; WX 722 ; N Adieresis ; B 20 0 702 915 ; -C -1 ; WX 556 ; N egrave ; B 23 -14 528 750 ; -C -1 ; WX 500 ; N zacute ; B 20 0 480 750 ; -C -1 ; WX 278 ; N iogonek ; B 16 -224 249 725 ; -C -1 ; WX 778 ; N Oacute ; B 44 -19 734 936 ; -C -1 ; WX 611 ; N oacute ; B 34 -14 578 750 ; -C -1 ; WX 556 ; N amacron ; B 29 -14 527 678 ; -C -1 ; WX 556 ; N sacute ; B 30 -14 519 750 ; -C -1 ; WX 278 ; N idieresis ; B -21 0 300 729 ; -C -1 ; WX 778 ; N Ocircumflex ; B 44 -19 734 936 ; -C -1 ; WX 722 ; N Ugrave ; B 72 -19 651 936 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 611 ; N thorn ; B 62 -208 578 718 ; -C -1 ; WX 333 ; N twosuperior ; B 9 283 324 710 ; -C -1 ; WX 778 ; N Odieresis ; B 44 -19 734 915 ; -C -1 ; WX 611 ; N mu ; B 66 -207 545 532 ; -C -1 ; WX 278 ; N igrave ; B -50 0 209 750 ; -C -1 ; WX 611 ; N ohungarumlaut ; B 34 -14 625 750 ; -C -1 ; WX 667 ; N Eogonek ; B 76 -224 639 718 ; -C -1 ; WX 611 ; N dcroat ; B 34 -14 650 718 ; -C -1 ; WX 834 ; N threequarters ; B 16 -19 799 710 ; -C -1 ; WX 667 ; N Scedilla ; B 39 -228 629 737 ; -C -1 ; WX 400 ; N lcaron ; B 69 0 408 718 ; -C -1 ; WX 722 ; N Kcommaaccent ; B 87 -228 722 718 ; -C -1 ; WX 611 ; N Lacute ; B 76 0 583 936 ; -C -1 ; WX 1000 ; N trademark ; B 44 306 956 718 ; -C -1 ; WX 556 ; N edotaccent ; B 23 -14 528 729 ; -C -1 ; WX 278 ; N Igrave ; B -50 0 214 936 ; -C -1 ; WX 278 ; N Imacron ; B -33 0 312 864 ; -C -1 ; WX 611 ; N Lcaron ; B 76 0 583 718 ; -C -1 ; WX 834 ; N onehalf ; B 26 -19 794 710 ; -C -1 ; WX 549 ; N lessequal ; B 29 0 526 704 ; -C -1 ; WX 611 ; N ocircumflex ; B 34 -14 578 750 ; -C -1 ; WX 611 ; N ntilde ; B 65 0 546 737 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 72 -19 681 936 ; -C -1 ; WX 667 ; N Eacute ; B 76 0 621 936 ; -C -1 ; WX 556 ; N emacron ; B 23 -14 528 678 ; -C -1 ; WX 611 ; N gbreve ; B 40 -217 553 750 ; -C -1 ; WX 834 ; N onequarter ; B 26 -19 766 710 ; -C -1 ; WX 667 ; N Scaron ; B 39 -19 629 936 ; -C -1 ; WX 667 ; N Scommaaccent ; B 39 -228 629 737 ; -C -1 ; WX 778 ; N Ohungarumlaut ; B 44 -19 734 936 ; -C -1 ; WX 400 ; N degree ; B 57 426 343 712 ; -C -1 ; WX 611 ; N ograve ; B 34 -14 578 750 ; -C -1 ; WX 722 ; N Ccaron ; B 44 -19 684 936 ; -C -1 ; WX 611 ; N ugrave ; B 66 -14 545 750 ; -C -1 ; WX 549 ; N radical ; B 10 -46 512 850 ; -C -1 ; WX 722 ; N Dcaron ; B 76 0 685 936 ; -C -1 ; WX 389 ; N rcommaaccent ; B 64 -228 373 546 ; -C -1 ; WX 722 ; N Ntilde ; B 69 0 654 923 ; -C -1 ; WX 611 ; N otilde ; B 34 -14 578 737 ; -C -1 ; WX 722 ; N Rcommaaccent ; B 76 -228 677 718 ; -C -1 ; WX 611 ; N Lcommaaccent ; B 76 -228 583 718 ; -C -1 ; WX 722 ; N Atilde ; B 20 0 702 923 ; -C -1 ; WX 722 ; N Aogonek ; B 20 -224 742 718 ; -C -1 ; WX 722 ; N Aring ; B 20 0 702 962 ; -C -1 ; WX 778 ; N Otilde ; B 44 -19 734 923 ; -C -1 ; WX 500 ; N zdotaccent ; B 20 0 480 729 ; -C -1 ; WX 667 ; N Ecaron ; B 76 0 621 936 ; -C -1 ; WX 278 ; N Iogonek ; B -11 -228 222 718 ; -C -1 ; WX 556 ; N kcommaaccent ; B 69 -228 562 718 ; -C -1 ; WX 584 ; N minus ; B 40 197 544 309 ; -C -1 ; WX 278 ; N Icircumflex ; B -37 0 316 936 ; -C -1 ; WX 611 ; N ncaron ; B 65 0 546 750 ; -C -1 ; WX 333 ; N tcommaaccent ; B 10 -228 309 676 ; -C -1 ; WX 584 ; N logicalnot ; B 40 108 544 419 ; -C -1 ; WX 611 ; N odieresis ; B 34 -14 578 729 ; -C -1 ; WX 611 ; N udieresis ; B 66 -14 545 729 ; -C -1 ; WX 549 ; N notequal ; B 15 -49 540 570 ; -C -1 ; WX 611 ; N gcommaaccent ; B 40 -217 553 850 ; -C -1 ; WX 611 ; N eth ; B 34 -14 578 737 ; -C -1 ; WX 500 ; N zcaron ; B 20 0 480 750 ; -C -1 ; WX 611 ; N ncommaaccent ; B 65 -228 546 546 ; -C -1 ; WX 333 ; N onesuperior ; B 26 283 237 710 ; -C -1 ; WX 278 ; N imacron ; B -8 0 285 678 ; -C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2481 -KPX A C -40 -KPX A Cacute -40 -KPX A Ccaron -40 -KPX A Ccedilla -40 -KPX A G -50 -KPX A Gbreve -50 -KPX A Gcommaaccent -50 -KPX A O -40 -KPX A Oacute -40 -KPX A Ocircumflex -40 -KPX A Odieresis -40 -KPX A Ograve -40 -KPX A Ohungarumlaut -40 -KPX A Omacron -40 -KPX A Oslash -40 -KPX A Otilde -40 -KPX A Q -40 -KPX A T -90 -KPX A Tcaron -90 -KPX A Tcommaaccent -90 -KPX A U -50 -KPX A Uacute -50 -KPX A Ucircumflex -50 -KPX A Udieresis -50 -KPX A Ugrave -50 -KPX A Uhungarumlaut -50 -KPX A Umacron -50 -KPX A Uogonek -50 -KPX A Uring -50 -KPX A V -80 -KPX A W -60 -KPX A Y -110 -KPX A Yacute -110 -KPX A Ydieresis -110 -KPX A u -30 -KPX A uacute -30 -KPX A ucircumflex -30 -KPX A udieresis -30 -KPX A ugrave -30 -KPX A uhungarumlaut -30 -KPX A umacron -30 -KPX A uogonek -30 -KPX A uring -30 -KPX A v -40 -KPX A w -30 -KPX A y -30 -KPX A yacute -30 -KPX A ydieresis -30 -KPX Aacute C -40 -KPX Aacute Cacute -40 -KPX Aacute Ccaron -40 -KPX Aacute Ccedilla -40 -KPX Aacute G -50 -KPX Aacute Gbreve -50 -KPX Aacute Gcommaaccent -50 -KPX Aacute O -40 -KPX Aacute Oacute -40 -KPX Aacute Ocircumflex -40 -KPX Aacute Odieresis -40 -KPX Aacute Ograve -40 -KPX Aacute Ohungarumlaut -40 -KPX Aacute Omacron -40 -KPX Aacute Oslash -40 -KPX Aacute Otilde -40 -KPX Aacute Q -40 -KPX Aacute T -90 -KPX Aacute Tcaron -90 -KPX Aacute Tcommaaccent -90 -KPX Aacute U -50 -KPX Aacute Uacute -50 -KPX Aacute Ucircumflex -50 -KPX Aacute Udieresis -50 -KPX Aacute Ugrave -50 -KPX Aacute Uhungarumlaut -50 -KPX Aacute Umacron -50 -KPX Aacute Uogonek -50 -KPX Aacute Uring -50 -KPX Aacute V -80 -KPX Aacute W -60 -KPX Aacute Y -110 -KPX Aacute Yacute -110 -KPX Aacute Ydieresis -110 -KPX Aacute u -30 -KPX Aacute uacute -30 -KPX Aacute ucircumflex -30 -KPX Aacute udieresis -30 -KPX Aacute ugrave -30 -KPX Aacute uhungarumlaut -30 -KPX Aacute umacron -30 -KPX Aacute uogonek -30 -KPX Aacute uring -30 -KPX Aacute v -40 -KPX Aacute w -30 -KPX Aacute y -30 -KPX Aacute yacute -30 -KPX Aacute ydieresis -30 -KPX Abreve C -40 -KPX Abreve Cacute -40 -KPX Abreve Ccaron -40 -KPX Abreve Ccedilla -40 -KPX Abreve G -50 -KPX Abreve Gbreve -50 -KPX Abreve Gcommaaccent -50 -KPX Abreve O -40 -KPX Abreve Oacute -40 -KPX Abreve Ocircumflex -40 -KPX Abreve Odieresis -40 -KPX Abreve Ograve -40 -KPX Abreve Ohungarumlaut -40 -KPX Abreve Omacron -40 -KPX Abreve Oslash -40 -KPX Abreve Otilde -40 -KPX Abreve Q -40 -KPX Abreve T -90 -KPX Abreve Tcaron -90 -KPX Abreve Tcommaaccent -90 -KPX Abreve U -50 -KPX Abreve Uacute -50 -KPX Abreve Ucircumflex -50 -KPX Abreve Udieresis -50 -KPX Abreve Ugrave -50 -KPX Abreve Uhungarumlaut -50 -KPX Abreve Umacron -50 -KPX Abreve Uogonek -50 -KPX Abreve Uring -50 -KPX Abreve V -80 -KPX Abreve W -60 -KPX Abreve Y -110 -KPX Abreve Yacute -110 -KPX Abreve Ydieresis -110 -KPX Abreve u -30 -KPX Abreve uacute -30 -KPX Abreve ucircumflex -30 -KPX Abreve udieresis -30 -KPX Abreve ugrave -30 -KPX Abreve uhungarumlaut -30 -KPX Abreve umacron -30 -KPX Abreve uogonek -30 -KPX Abreve uring -30 -KPX Abreve v -40 -KPX Abreve w -30 -KPX Abreve y -30 -KPX Abreve yacute -30 -KPX Abreve ydieresis -30 -KPX Acircumflex C -40 -KPX Acircumflex Cacute -40 -KPX Acircumflex Ccaron -40 -KPX Acircumflex Ccedilla -40 -KPX Acircumflex G -50 -KPX Acircumflex Gbreve -50 -KPX Acircumflex Gcommaaccent -50 -KPX Acircumflex O -40 -KPX Acircumflex Oacute -40 -KPX Acircumflex Ocircumflex -40 -KPX Acircumflex Odieresis -40 -KPX Acircumflex Ograve -40 -KPX Acircumflex Ohungarumlaut -40 -KPX Acircumflex Omacron -40 -KPX Acircumflex Oslash -40 -KPX Acircumflex Otilde -40 -KPX Acircumflex Q -40 -KPX Acircumflex T -90 -KPX Acircumflex Tcaron -90 -KPX Acircumflex Tcommaaccent -90 -KPX Acircumflex U -50 -KPX Acircumflex Uacute -50 -KPX Acircumflex Ucircumflex -50 -KPX Acircumflex Udieresis -50 -KPX Acircumflex Ugrave -50 -KPX Acircumflex Uhungarumlaut -50 -KPX Acircumflex Umacron -50 -KPX Acircumflex Uogonek -50 -KPX Acircumflex Uring -50 -KPX Acircumflex V -80 -KPX Acircumflex W -60 -KPX Acircumflex Y -110 -KPX Acircumflex Yacute -110 -KPX Acircumflex Ydieresis -110 -KPX Acircumflex u -30 -KPX Acircumflex uacute -30 -KPX Acircumflex ucircumflex -30 -KPX Acircumflex udieresis -30 -KPX Acircumflex ugrave -30 -KPX Acircumflex uhungarumlaut -30 -KPX Acircumflex umacron -30 -KPX Acircumflex uogonek -30 -KPX Acircumflex uring -30 -KPX Acircumflex v -40 -KPX Acircumflex w -30 -KPX Acircumflex y -30 -KPX Acircumflex yacute -30 -KPX Acircumflex ydieresis -30 -KPX Adieresis C -40 -KPX Adieresis Cacute -40 -KPX Adieresis Ccaron -40 -KPX Adieresis Ccedilla -40 -KPX Adieresis G -50 -KPX Adieresis Gbreve -50 -KPX Adieresis Gcommaaccent -50 -KPX Adieresis O -40 -KPX Adieresis Oacute -40 -KPX Adieresis Ocircumflex -40 -KPX Adieresis Odieresis -40 -KPX Adieresis Ograve -40 -KPX Adieresis Ohungarumlaut -40 -KPX Adieresis Omacron -40 -KPX Adieresis Oslash -40 -KPX Adieresis Otilde -40 -KPX Adieresis Q -40 -KPX Adieresis T -90 -KPX Adieresis Tcaron -90 -KPX Adieresis Tcommaaccent -90 -KPX Adieresis U -50 -KPX Adieresis Uacute -50 -KPX Adieresis Ucircumflex -50 -KPX Adieresis Udieresis -50 -KPX Adieresis Ugrave -50 -KPX Adieresis Uhungarumlaut -50 -KPX Adieresis Umacron -50 -KPX Adieresis Uogonek -50 -KPX Adieresis Uring -50 -KPX Adieresis V -80 -KPX Adieresis W -60 -KPX Adieresis Y -110 -KPX Adieresis Yacute -110 -KPX Adieresis Ydieresis -110 -KPX Adieresis u -30 -KPX Adieresis uacute -30 -KPX Adieresis ucircumflex -30 -KPX Adieresis udieresis -30 -KPX Adieresis ugrave -30 -KPX Adieresis uhungarumlaut -30 -KPX Adieresis umacron -30 -KPX Adieresis uogonek -30 -KPX Adieresis uring -30 -KPX Adieresis v -40 -KPX Adieresis w -30 -KPX Adieresis y -30 -KPX Adieresis yacute -30 -KPX Adieresis ydieresis -30 -KPX Agrave C -40 -KPX Agrave Cacute -40 -KPX Agrave Ccaron -40 -KPX Agrave Ccedilla -40 -KPX Agrave G -50 -KPX Agrave Gbreve -50 -KPX Agrave Gcommaaccent -50 -KPX Agrave O -40 -KPX Agrave Oacute -40 -KPX Agrave Ocircumflex -40 -KPX Agrave Odieresis -40 -KPX Agrave Ograve -40 -KPX Agrave Ohungarumlaut -40 -KPX Agrave Omacron -40 -KPX Agrave Oslash -40 -KPX Agrave Otilde -40 -KPX Agrave Q -40 -KPX Agrave T -90 -KPX Agrave Tcaron -90 -KPX Agrave Tcommaaccent -90 -KPX Agrave U -50 -KPX Agrave Uacute -50 -KPX Agrave Ucircumflex -50 -KPX Agrave Udieresis -50 -KPX Agrave Ugrave -50 -KPX Agrave Uhungarumlaut -50 -KPX Agrave Umacron -50 -KPX Agrave Uogonek -50 -KPX Agrave Uring -50 -KPX Agrave V -80 -KPX Agrave W -60 -KPX Agrave Y -110 -KPX Agrave Yacute -110 -KPX Agrave Ydieresis -110 -KPX Agrave u -30 -KPX Agrave uacute -30 -KPX Agrave ucircumflex -30 -KPX Agrave udieresis -30 -KPX Agrave ugrave -30 -KPX Agrave uhungarumlaut -30 -KPX Agrave umacron -30 -KPX Agrave uogonek -30 -KPX Agrave uring -30 -KPX Agrave v -40 -KPX Agrave w -30 -KPX Agrave y -30 -KPX Agrave yacute -30 -KPX Agrave ydieresis -30 -KPX Amacron C -40 -KPX Amacron Cacute -40 -KPX Amacron Ccaron -40 -KPX Amacron Ccedilla -40 -KPX Amacron G -50 -KPX Amacron Gbreve -50 -KPX Amacron Gcommaaccent -50 -KPX Amacron O -40 -KPX Amacron Oacute -40 -KPX Amacron Ocircumflex -40 -KPX Amacron Odieresis -40 -KPX Amacron Ograve -40 -KPX Amacron Ohungarumlaut -40 -KPX Amacron Omacron -40 -KPX Amacron Oslash -40 -KPX Amacron Otilde -40 -KPX Amacron Q -40 -KPX Amacron T -90 -KPX Amacron Tcaron -90 -KPX Amacron Tcommaaccent -90 -KPX Amacron U -50 -KPX Amacron Uacute -50 -KPX Amacron Ucircumflex -50 -KPX Amacron Udieresis -50 -KPX Amacron Ugrave -50 -KPX Amacron Uhungarumlaut -50 -KPX Amacron Umacron -50 -KPX Amacron Uogonek -50 -KPX Amacron Uring -50 -KPX Amacron V -80 -KPX Amacron W -60 -KPX Amacron Y -110 -KPX Amacron Yacute -110 -KPX Amacron Ydieresis -110 -KPX Amacron u -30 -KPX Amacron uacute -30 -KPX Amacron ucircumflex -30 -KPX Amacron udieresis -30 -KPX Amacron ugrave -30 -KPX Amacron uhungarumlaut -30 -KPX Amacron umacron -30 -KPX Amacron uogonek -30 -KPX Amacron uring -30 -KPX Amacron v -40 -KPX Amacron w -30 -KPX Amacron y -30 -KPX Amacron yacute -30 -KPX Amacron ydieresis -30 -KPX Aogonek C -40 -KPX Aogonek Cacute -40 -KPX Aogonek Ccaron -40 -KPX Aogonek Ccedilla -40 -KPX Aogonek G -50 -KPX Aogonek Gbreve -50 -KPX Aogonek Gcommaaccent -50 -KPX Aogonek O -40 -KPX Aogonek Oacute -40 -KPX Aogonek Ocircumflex -40 -KPX Aogonek Odieresis -40 -KPX Aogonek Ograve -40 -KPX Aogonek Ohungarumlaut -40 -KPX Aogonek Omacron -40 -KPX Aogonek Oslash -40 -KPX Aogonek Otilde -40 -KPX Aogonek Q -40 -KPX Aogonek T -90 -KPX Aogonek Tcaron -90 -KPX Aogonek Tcommaaccent -90 -KPX Aogonek U -50 -KPX Aogonek Uacute -50 -KPX Aogonek Ucircumflex -50 -KPX Aogonek Udieresis -50 -KPX Aogonek Ugrave -50 -KPX Aogonek Uhungarumlaut -50 -KPX Aogonek Umacron -50 -KPX Aogonek Uogonek -50 -KPX Aogonek Uring -50 -KPX Aogonek V -80 -KPX Aogonek W -60 -KPX Aogonek Y -110 -KPX Aogonek Yacute -110 -KPX Aogonek Ydieresis -110 -KPX Aogonek u -30 -KPX Aogonek uacute -30 -KPX Aogonek ucircumflex -30 -KPX Aogonek udieresis -30 -KPX Aogonek ugrave -30 -KPX Aogonek uhungarumlaut -30 -KPX Aogonek umacron -30 -KPX Aogonek uogonek -30 -KPX Aogonek uring -30 -KPX Aogonek v -40 -KPX Aogonek w -30 -KPX Aogonek y -30 -KPX Aogonek yacute -30 -KPX Aogonek ydieresis -30 -KPX Aring C -40 -KPX Aring Cacute -40 -KPX Aring Ccaron -40 -KPX Aring Ccedilla -40 -KPX Aring G -50 -KPX Aring Gbreve -50 -KPX Aring Gcommaaccent -50 -KPX Aring O -40 -KPX Aring Oacute -40 -KPX Aring Ocircumflex -40 -KPX Aring Odieresis -40 -KPX Aring Ograve -40 -KPX Aring Ohungarumlaut -40 -KPX Aring Omacron -40 -KPX Aring Oslash -40 -KPX Aring Otilde -40 -KPX Aring Q -40 -KPX Aring T -90 -KPX Aring Tcaron -90 -KPX Aring Tcommaaccent -90 -KPX Aring U -50 -KPX Aring Uacute -50 -KPX Aring Ucircumflex -50 -KPX Aring Udieresis -50 -KPX Aring Ugrave -50 -KPX Aring Uhungarumlaut -50 -KPX Aring Umacron -50 -KPX Aring Uogonek -50 -KPX Aring Uring -50 -KPX Aring V -80 -KPX Aring W -60 -KPX Aring Y -110 -KPX Aring Yacute -110 -KPX Aring Ydieresis -110 -KPX Aring u -30 -KPX Aring uacute -30 -KPX Aring ucircumflex -30 -KPX Aring udieresis -30 -KPX Aring ugrave -30 -KPX Aring uhungarumlaut -30 -KPX Aring umacron -30 -KPX Aring uogonek -30 -KPX Aring uring -30 -KPX Aring v -40 -KPX Aring w -30 -KPX Aring y -30 -KPX Aring yacute -30 -KPX Aring ydieresis -30 -KPX Atilde C -40 -KPX Atilde Cacute -40 -KPX Atilde Ccaron -40 -KPX Atilde Ccedilla -40 -KPX Atilde G -50 -KPX Atilde Gbreve -50 -KPX Atilde Gcommaaccent -50 -KPX Atilde O -40 -KPX Atilde Oacute -40 -KPX Atilde Ocircumflex -40 -KPX Atilde Odieresis -40 -KPX Atilde Ograve -40 -KPX Atilde Ohungarumlaut -40 -KPX Atilde Omacron -40 -KPX Atilde Oslash -40 -KPX Atilde Otilde -40 -KPX Atilde Q -40 -KPX Atilde T -90 -KPX Atilde Tcaron -90 -KPX Atilde Tcommaaccent -90 -KPX Atilde U -50 -KPX Atilde Uacute -50 -KPX Atilde Ucircumflex -50 -KPX Atilde Udieresis -50 -KPX Atilde Ugrave -50 -KPX Atilde Uhungarumlaut -50 -KPX Atilde Umacron -50 -KPX Atilde Uogonek -50 -KPX Atilde Uring -50 -KPX Atilde V -80 -KPX Atilde W -60 -KPX Atilde Y -110 -KPX Atilde Yacute -110 -KPX Atilde Ydieresis -110 -KPX Atilde u -30 -KPX Atilde uacute -30 -KPX Atilde ucircumflex -30 -KPX Atilde udieresis -30 -KPX Atilde ugrave -30 -KPX Atilde uhungarumlaut -30 -KPX Atilde umacron -30 -KPX Atilde uogonek -30 -KPX Atilde uring -30 -KPX Atilde v -40 -KPX Atilde w -30 -KPX Atilde y -30 -KPX Atilde yacute -30 -KPX Atilde ydieresis -30 -KPX B A -30 -KPX B Aacute -30 -KPX B Abreve -30 -KPX B Acircumflex -30 -KPX B Adieresis -30 -KPX B Agrave -30 -KPX B Amacron -30 -KPX B Aogonek -30 -KPX B Aring -30 -KPX B Atilde -30 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX D A -40 -KPX D Aacute -40 -KPX D Abreve -40 -KPX D Acircumflex -40 -KPX D Adieresis -40 -KPX D Agrave -40 -KPX D Amacron -40 -KPX D Aogonek -40 -KPX D Aring -40 -KPX D Atilde -40 -KPX D V -40 -KPX D W -40 -KPX D Y -70 -KPX D Yacute -70 -KPX D Ydieresis -70 -KPX D comma -30 -KPX D period -30 -KPX Dcaron A -40 -KPX Dcaron Aacute -40 -KPX Dcaron Abreve -40 -KPX Dcaron Acircumflex -40 -KPX Dcaron Adieresis -40 -KPX Dcaron Agrave -40 -KPX Dcaron Amacron -40 -KPX Dcaron Aogonek -40 -KPX Dcaron Aring -40 -KPX Dcaron Atilde -40 -KPX Dcaron V -40 -KPX Dcaron W -40 -KPX Dcaron Y -70 -KPX Dcaron Yacute -70 -KPX Dcaron Ydieresis -70 -KPX Dcaron comma -30 -KPX Dcaron period -30 -KPX Dcroat A -40 -KPX Dcroat Aacute -40 -KPX Dcroat Abreve -40 -KPX Dcroat Acircumflex -40 -KPX Dcroat Adieresis -40 -KPX Dcroat Agrave -40 -KPX Dcroat Amacron -40 -KPX Dcroat Aogonek -40 -KPX Dcroat Aring -40 -KPX Dcroat Atilde -40 -KPX Dcroat V -40 -KPX Dcroat W -40 -KPX Dcroat Y -70 -KPX Dcroat Yacute -70 -KPX Dcroat Ydieresis -70 -KPX Dcroat comma -30 -KPX Dcroat period -30 -KPX F A -80 -KPX F Aacute -80 -KPX F Abreve -80 -KPX F Acircumflex -80 -KPX F Adieresis -80 -KPX F Agrave -80 -KPX F Amacron -80 -KPX F Aogonek -80 -KPX F Aring -80 -KPX F Atilde -80 -KPX F a -20 -KPX F aacute -20 -KPX F abreve -20 -KPX F acircumflex -20 -KPX F adieresis -20 -KPX F agrave -20 -KPX F amacron -20 -KPX F aogonek -20 -KPX F aring -20 -KPX F atilde -20 -KPX F comma -100 -KPX F period -100 -KPX J A -20 -KPX J Aacute -20 -KPX J Abreve -20 -KPX J Acircumflex -20 -KPX J Adieresis -20 -KPX J Agrave -20 -KPX J Amacron -20 -KPX J Aogonek -20 -KPX J Aring -20 -KPX J Atilde -20 -KPX J comma -20 -KPX J period -20 -KPX J u -20 -KPX J uacute -20 -KPX J ucircumflex -20 -KPX J udieresis -20 -KPX J ugrave -20 -KPX J uhungarumlaut -20 -KPX J umacron -20 -KPX J uogonek -20 -KPX J uring -20 -KPX K O -30 -KPX K Oacute -30 -KPX K Ocircumflex -30 -KPX K Odieresis -30 -KPX K Ograve -30 -KPX K Ohungarumlaut -30 -KPX K Omacron -30 -KPX K Oslash -30 -KPX K Otilde -30 -KPX K e -15 -KPX K eacute -15 -KPX K ecaron -15 -KPX K ecircumflex -15 -KPX K edieresis -15 -KPX K edotaccent -15 -KPX K egrave -15 -KPX K emacron -15 -KPX K eogonek -15 -KPX K o -35 -KPX K oacute -35 -KPX K ocircumflex -35 -KPX K odieresis -35 -KPX K ograve -35 -KPX K ohungarumlaut -35 -KPX K omacron -35 -KPX K oslash -35 -KPX K otilde -35 -KPX K u -30 -KPX K uacute -30 -KPX K ucircumflex -30 -KPX K udieresis -30 -KPX K ugrave -30 -KPX K uhungarumlaut -30 -KPX K umacron -30 -KPX K uogonek -30 -KPX K uring -30 -KPX K y -40 -KPX K yacute -40 -KPX K ydieresis -40 -KPX Kcommaaccent O -30 -KPX Kcommaaccent Oacute -30 -KPX Kcommaaccent Ocircumflex -30 -KPX Kcommaaccent Odieresis -30 -KPX Kcommaaccent Ograve -30 -KPX Kcommaaccent Ohungarumlaut -30 -KPX Kcommaaccent Omacron -30 -KPX Kcommaaccent Oslash -30 -KPX Kcommaaccent Otilde -30 -KPX Kcommaaccent e -15 -KPX Kcommaaccent eacute -15 -KPX Kcommaaccent ecaron -15 -KPX Kcommaaccent ecircumflex -15 -KPX Kcommaaccent edieresis -15 -KPX Kcommaaccent edotaccent -15 -KPX Kcommaaccent egrave -15 -KPX Kcommaaccent emacron -15 -KPX Kcommaaccent eogonek -15 -KPX Kcommaaccent o -35 -KPX Kcommaaccent oacute -35 -KPX Kcommaaccent ocircumflex -35 -KPX Kcommaaccent odieresis -35 -KPX Kcommaaccent ograve -35 -KPX Kcommaaccent ohungarumlaut -35 -KPX Kcommaaccent omacron -35 -KPX Kcommaaccent oslash -35 -KPX Kcommaaccent otilde -35 -KPX Kcommaaccent u -30 -KPX Kcommaaccent uacute -30 -KPX Kcommaaccent ucircumflex -30 -KPX Kcommaaccent udieresis -30 -KPX Kcommaaccent ugrave -30 -KPX Kcommaaccent uhungarumlaut -30 -KPX Kcommaaccent umacron -30 -KPX Kcommaaccent uogonek -30 -KPX Kcommaaccent uring -30 -KPX Kcommaaccent y -40 -KPX Kcommaaccent yacute -40 -KPX Kcommaaccent ydieresis -40 -KPX L T -90 -KPX L Tcaron -90 -KPX L Tcommaaccent -90 -KPX L V -110 -KPX L W -80 -KPX L Y -120 -KPX L Yacute -120 -KPX L Ydieresis -120 -KPX L quotedblright -140 -KPX L quoteright -140 -KPX L y -30 -KPX L yacute -30 -KPX L ydieresis -30 -KPX Lacute T -90 -KPX Lacute Tcaron -90 -KPX Lacute Tcommaaccent -90 -KPX Lacute V -110 -KPX Lacute W -80 -KPX Lacute Y -120 -KPX Lacute Yacute -120 -KPX Lacute Ydieresis -120 -KPX Lacute quotedblright -140 -KPX Lacute quoteright -140 -KPX Lacute y -30 -KPX Lacute yacute -30 -KPX Lacute ydieresis -30 -KPX Lcommaaccent T -90 -KPX Lcommaaccent Tcaron -90 -KPX Lcommaaccent Tcommaaccent -90 -KPX Lcommaaccent V -110 -KPX Lcommaaccent W -80 -KPX Lcommaaccent Y -120 -KPX Lcommaaccent Yacute -120 -KPX Lcommaaccent Ydieresis -120 -KPX Lcommaaccent quotedblright -140 -KPX Lcommaaccent quoteright -140 -KPX Lcommaaccent y -30 -KPX Lcommaaccent yacute -30 -KPX Lcommaaccent ydieresis -30 -KPX Lslash T -90 -KPX Lslash Tcaron -90 -KPX Lslash Tcommaaccent -90 -KPX Lslash V -110 -KPX Lslash W -80 -KPX Lslash Y -120 -KPX Lslash Yacute -120 -KPX Lslash Ydieresis -120 -KPX Lslash quotedblright -140 -KPX Lslash quoteright -140 -KPX Lslash y -30 -KPX Lslash yacute -30 -KPX Lslash ydieresis -30 -KPX O A -50 -KPX O Aacute -50 -KPX O Abreve -50 -KPX O Acircumflex -50 -KPX O Adieresis -50 -KPX O Agrave -50 -KPX O Amacron -50 -KPX O Aogonek -50 -KPX O Aring -50 -KPX O Atilde -50 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -50 -KPX O X -50 -KPX O Y -70 -KPX O Yacute -70 -KPX O Ydieresis -70 -KPX O comma -40 -KPX O period -40 -KPX Oacute A -50 -KPX Oacute Aacute -50 -KPX Oacute Abreve -50 -KPX Oacute Acircumflex -50 -KPX Oacute Adieresis -50 -KPX Oacute Agrave -50 -KPX Oacute Amacron -50 -KPX Oacute Aogonek -50 -KPX Oacute Aring -50 -KPX Oacute Atilde -50 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -50 -KPX Oacute X -50 -KPX Oacute Y -70 -KPX Oacute Yacute -70 -KPX Oacute Ydieresis -70 -KPX Oacute comma -40 -KPX Oacute period -40 -KPX Ocircumflex A -50 -KPX Ocircumflex Aacute -50 -KPX Ocircumflex Abreve -50 -KPX Ocircumflex Acircumflex -50 -KPX Ocircumflex Adieresis -50 -KPX Ocircumflex Agrave -50 -KPX Ocircumflex Amacron -50 -KPX Ocircumflex Aogonek -50 -KPX Ocircumflex Aring -50 -KPX Ocircumflex Atilde -50 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -50 -KPX Ocircumflex X -50 -KPX Ocircumflex Y -70 -KPX Ocircumflex Yacute -70 -KPX Ocircumflex Ydieresis -70 -KPX Ocircumflex comma -40 -KPX Ocircumflex period -40 -KPX Odieresis A -50 -KPX Odieresis Aacute -50 -KPX Odieresis Abreve -50 -KPX Odieresis Acircumflex -50 -KPX Odieresis Adieresis -50 -KPX Odieresis Agrave -50 -KPX Odieresis Amacron -50 -KPX Odieresis Aogonek -50 -KPX Odieresis Aring -50 -KPX Odieresis Atilde -50 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -50 -KPX Odieresis X -50 -KPX Odieresis Y -70 -KPX Odieresis Yacute -70 -KPX Odieresis Ydieresis -70 -KPX Odieresis comma -40 -KPX Odieresis period -40 -KPX Ograve A -50 -KPX Ograve Aacute -50 -KPX Ograve Abreve -50 -KPX Ograve Acircumflex -50 -KPX Ograve Adieresis -50 -KPX Ograve Agrave -50 -KPX Ograve Amacron -50 -KPX Ograve Aogonek -50 -KPX Ograve Aring -50 -KPX Ograve Atilde -50 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -50 -KPX Ograve X -50 -KPX Ograve Y -70 -KPX Ograve Yacute -70 -KPX Ograve Ydieresis -70 -KPX Ograve comma -40 -KPX Ograve period -40 -KPX Ohungarumlaut A -50 -KPX Ohungarumlaut Aacute -50 -KPX Ohungarumlaut Abreve -50 -KPX Ohungarumlaut Acircumflex -50 -KPX Ohungarumlaut Adieresis -50 -KPX Ohungarumlaut Agrave -50 -KPX Ohungarumlaut Amacron -50 -KPX Ohungarumlaut Aogonek -50 -KPX Ohungarumlaut Aring -50 -KPX Ohungarumlaut Atilde -50 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -50 -KPX Ohungarumlaut X -50 -KPX Ohungarumlaut Y -70 -KPX Ohungarumlaut Yacute -70 -KPX Ohungarumlaut Ydieresis -70 -KPX Ohungarumlaut comma -40 -KPX Ohungarumlaut period -40 -KPX Omacron A -50 -KPX Omacron Aacute -50 -KPX Omacron Abreve -50 -KPX Omacron Acircumflex -50 -KPX Omacron Adieresis -50 -KPX Omacron Agrave -50 -KPX Omacron Amacron -50 -KPX Omacron Aogonek -50 -KPX Omacron Aring -50 -KPX Omacron Atilde -50 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -50 -KPX Omacron X -50 -KPX Omacron Y -70 -KPX Omacron Yacute -70 -KPX Omacron Ydieresis -70 -KPX Omacron comma -40 -KPX Omacron period -40 -KPX Oslash A -50 -KPX Oslash Aacute -50 -KPX Oslash Abreve -50 -KPX Oslash Acircumflex -50 -KPX Oslash Adieresis -50 -KPX Oslash Agrave -50 -KPX Oslash Amacron -50 -KPX Oslash Aogonek -50 -KPX Oslash Aring -50 -KPX Oslash Atilde -50 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -50 -KPX Oslash X -50 -KPX Oslash Y -70 -KPX Oslash Yacute -70 -KPX Oslash Ydieresis -70 -KPX Oslash comma -40 -KPX Oslash period -40 -KPX Otilde A -50 -KPX Otilde Aacute -50 -KPX Otilde Abreve -50 -KPX Otilde Acircumflex -50 -KPX Otilde Adieresis -50 -KPX Otilde Agrave -50 -KPX Otilde Amacron -50 -KPX Otilde Aogonek -50 -KPX Otilde Aring -50 -KPX Otilde Atilde -50 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -50 -KPX Otilde X -50 -KPX Otilde Y -70 -KPX Otilde Yacute -70 -KPX Otilde Ydieresis -70 -KPX Otilde comma -40 -KPX Otilde period -40 -KPX P A -100 -KPX P Aacute -100 -KPX P Abreve -100 -KPX P Acircumflex -100 -KPX P Adieresis -100 -KPX P Agrave -100 -KPX P Amacron -100 -KPX P Aogonek -100 -KPX P Aring -100 -KPX P Atilde -100 -KPX P a -30 -KPX P aacute -30 -KPX P abreve -30 -KPX P acircumflex -30 -KPX P adieresis -30 -KPX P agrave -30 -KPX P amacron -30 -KPX P aogonek -30 -KPX P aring -30 -KPX P atilde -30 -KPX P comma -120 -KPX P e -30 -KPX P eacute -30 -KPX P ecaron -30 -KPX P ecircumflex -30 -KPX P edieresis -30 -KPX P edotaccent -30 -KPX P egrave -30 -KPX P emacron -30 -KPX P eogonek -30 -KPX P o -40 -KPX P oacute -40 -KPX P ocircumflex -40 -KPX P odieresis -40 -KPX P ograve -40 -KPX P ohungarumlaut -40 -KPX P omacron -40 -KPX P oslash -40 -KPX P otilde -40 -KPX P period -120 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX Q comma 20 -KPX Q period 20 -KPX R O -20 -KPX R Oacute -20 -KPX R Ocircumflex -20 -KPX R Odieresis -20 -KPX R Ograve -20 -KPX R Ohungarumlaut -20 -KPX R Omacron -20 -KPX R Oslash -20 -KPX R Otilde -20 -KPX R T -20 -KPX R Tcaron -20 -KPX R Tcommaaccent -20 -KPX R U -20 -KPX R Uacute -20 -KPX R Ucircumflex -20 -KPX R Udieresis -20 -KPX R Ugrave -20 -KPX R Uhungarumlaut -20 -KPX R Umacron -20 -KPX R Uogonek -20 -KPX R Uring -20 -KPX R V -50 -KPX R W -40 -KPX R Y -50 -KPX R Yacute -50 -KPX R Ydieresis -50 -KPX Racute O -20 -KPX Racute Oacute -20 -KPX Racute Ocircumflex -20 -KPX Racute Odieresis -20 -KPX Racute Ograve -20 -KPX Racute Ohungarumlaut -20 -KPX Racute Omacron -20 -KPX Racute Oslash -20 -KPX Racute Otilde -20 -KPX Racute T -20 -KPX Racute Tcaron -20 -KPX Racute Tcommaaccent -20 -KPX Racute U -20 -KPX Racute Uacute -20 -KPX Racute Ucircumflex -20 -KPX Racute Udieresis -20 -KPX Racute Ugrave -20 -KPX Racute Uhungarumlaut -20 -KPX Racute Umacron -20 -KPX Racute Uogonek -20 -KPX Racute Uring -20 -KPX Racute V -50 -KPX Racute W -40 -KPX Racute Y -50 -KPX Racute Yacute -50 -KPX Racute Ydieresis -50 -KPX Rcaron O -20 -KPX Rcaron Oacute -20 -KPX Rcaron Ocircumflex -20 -KPX Rcaron Odieresis -20 -KPX Rcaron Ograve -20 -KPX Rcaron Ohungarumlaut -20 -KPX Rcaron Omacron -20 -KPX Rcaron Oslash -20 -KPX Rcaron Otilde -20 -KPX Rcaron T -20 -KPX Rcaron Tcaron -20 -KPX Rcaron Tcommaaccent -20 -KPX Rcaron U -20 -KPX Rcaron Uacute -20 -KPX Rcaron Ucircumflex -20 -KPX Rcaron Udieresis -20 -KPX Rcaron Ugrave -20 -KPX Rcaron Uhungarumlaut -20 -KPX Rcaron Umacron -20 -KPX Rcaron Uogonek -20 -KPX Rcaron Uring -20 -KPX Rcaron V -50 -KPX Rcaron W -40 -KPX Rcaron Y -50 -KPX Rcaron Yacute -50 -KPX Rcaron Ydieresis -50 -KPX Rcommaaccent O -20 -KPX Rcommaaccent Oacute -20 -KPX Rcommaaccent Ocircumflex -20 -KPX Rcommaaccent Odieresis -20 -KPX Rcommaaccent Ograve -20 -KPX Rcommaaccent Ohungarumlaut -20 -KPX Rcommaaccent Omacron -20 -KPX Rcommaaccent Oslash -20 -KPX Rcommaaccent Otilde -20 -KPX Rcommaaccent T -20 -KPX Rcommaaccent Tcaron -20 -KPX Rcommaaccent Tcommaaccent -20 -KPX Rcommaaccent U -20 -KPX Rcommaaccent Uacute -20 -KPX Rcommaaccent Ucircumflex -20 -KPX Rcommaaccent Udieresis -20 -KPX Rcommaaccent Ugrave -20 -KPX Rcommaaccent Uhungarumlaut -20 -KPX Rcommaaccent Umacron -20 -KPX Rcommaaccent Uogonek -20 -KPX Rcommaaccent Uring -20 -KPX Rcommaaccent V -50 -KPX Rcommaaccent W -40 -KPX Rcommaaccent Y -50 -KPX Rcommaaccent Yacute -50 -KPX Rcommaaccent Ydieresis -50 -KPX T A -90 -KPX T Aacute -90 -KPX T Abreve -90 -KPX T Acircumflex -90 -KPX T Adieresis -90 -KPX T Agrave -90 -KPX T Amacron -90 -KPX T Aogonek -90 -KPX T Aring -90 -KPX T Atilde -90 -KPX T O -40 -KPX T Oacute -40 -KPX T Ocircumflex -40 -KPX T Odieresis -40 -KPX T Ograve -40 -KPX T Ohungarumlaut -40 -KPX T Omacron -40 -KPX T Oslash -40 -KPX T Otilde -40 -KPX T a -80 -KPX T aacute -80 -KPX T abreve -80 -KPX T acircumflex -80 -KPX T adieresis -80 -KPX T agrave -80 -KPX T amacron -80 -KPX T aogonek -80 -KPX T aring -80 -KPX T atilde -80 -KPX T colon -40 -KPX T comma -80 -KPX T e -60 -KPX T eacute -60 -KPX T ecaron -60 -KPX T ecircumflex -60 -KPX T edieresis -60 -KPX T edotaccent -60 -KPX T egrave -60 -KPX T emacron -60 -KPX T eogonek -60 -KPX T hyphen -120 -KPX T o -80 -KPX T oacute -80 -KPX T ocircumflex -80 -KPX T odieresis -80 -KPX T ograve -80 -KPX T ohungarumlaut -80 -KPX T omacron -80 -KPX T oslash -80 -KPX T otilde -80 -KPX T period -80 -KPX T r -80 -KPX T racute -80 -KPX T rcommaaccent -80 -KPX T semicolon -40 -KPX T u -90 -KPX T uacute -90 -KPX T ucircumflex -90 -KPX T udieresis -90 -KPX T ugrave -90 -KPX T uhungarumlaut -90 -KPX T umacron -90 -KPX T uogonek -90 -KPX T uring -90 -KPX T w -60 -KPX T y -60 -KPX T yacute -60 -KPX T ydieresis -60 -KPX Tcaron A -90 -KPX Tcaron Aacute -90 -KPX Tcaron Abreve -90 -KPX Tcaron Acircumflex -90 -KPX Tcaron Adieresis -90 -KPX Tcaron Agrave -90 -KPX Tcaron Amacron -90 -KPX Tcaron Aogonek -90 -KPX Tcaron Aring -90 -KPX Tcaron Atilde -90 -KPX Tcaron O -40 -KPX Tcaron Oacute -40 -KPX Tcaron Ocircumflex -40 -KPX Tcaron Odieresis -40 -KPX Tcaron Ograve -40 -KPX Tcaron Ohungarumlaut -40 -KPX Tcaron Omacron -40 -KPX Tcaron Oslash -40 -KPX Tcaron Otilde -40 -KPX Tcaron a -80 -KPX Tcaron aacute -80 -KPX Tcaron abreve -80 -KPX Tcaron acircumflex -80 -KPX Tcaron adieresis -80 -KPX Tcaron agrave -80 -KPX Tcaron amacron -80 -KPX Tcaron aogonek -80 -KPX Tcaron aring -80 -KPX Tcaron atilde -80 -KPX Tcaron colon -40 -KPX Tcaron comma -80 -KPX Tcaron e -60 -KPX Tcaron eacute -60 -KPX Tcaron ecaron -60 -KPX Tcaron ecircumflex -60 -KPX Tcaron edieresis -60 -KPX Tcaron edotaccent -60 -KPX Tcaron egrave -60 -KPX Tcaron emacron -60 -KPX Tcaron eogonek -60 -KPX Tcaron hyphen -120 -KPX Tcaron o -80 -KPX Tcaron oacute -80 -KPX Tcaron ocircumflex -80 -KPX Tcaron odieresis -80 -KPX Tcaron ograve -80 -KPX Tcaron ohungarumlaut -80 -KPX Tcaron omacron -80 -KPX Tcaron oslash -80 -KPX Tcaron otilde -80 -KPX Tcaron period -80 -KPX Tcaron r -80 -KPX Tcaron racute -80 -KPX Tcaron rcommaaccent -80 -KPX Tcaron semicolon -40 -KPX Tcaron u -90 -KPX Tcaron uacute -90 -KPX Tcaron ucircumflex -90 -KPX Tcaron udieresis -90 -KPX Tcaron ugrave -90 -KPX Tcaron uhungarumlaut -90 -KPX Tcaron umacron -90 -KPX Tcaron uogonek -90 -KPX Tcaron uring -90 -KPX Tcaron w -60 -KPX Tcaron y -60 -KPX Tcaron yacute -60 -KPX Tcaron ydieresis -60 -KPX Tcommaaccent A -90 -KPX Tcommaaccent Aacute -90 -KPX Tcommaaccent Abreve -90 -KPX Tcommaaccent Acircumflex -90 -KPX Tcommaaccent Adieresis -90 -KPX Tcommaaccent Agrave -90 -KPX Tcommaaccent Amacron -90 -KPX Tcommaaccent Aogonek -90 -KPX Tcommaaccent Aring -90 -KPX Tcommaaccent Atilde -90 -KPX Tcommaaccent O -40 -KPX Tcommaaccent Oacute -40 -KPX Tcommaaccent Ocircumflex -40 -KPX Tcommaaccent Odieresis -40 -KPX Tcommaaccent Ograve -40 -KPX Tcommaaccent Ohungarumlaut -40 -KPX Tcommaaccent Omacron -40 -KPX Tcommaaccent Oslash -40 -KPX Tcommaaccent Otilde -40 -KPX Tcommaaccent a -80 -KPX Tcommaaccent aacute -80 -KPX Tcommaaccent abreve -80 -KPX Tcommaaccent acircumflex -80 -KPX Tcommaaccent adieresis -80 -KPX Tcommaaccent agrave -80 -KPX Tcommaaccent amacron -80 -KPX Tcommaaccent aogonek -80 -KPX Tcommaaccent aring -80 -KPX Tcommaaccent atilde -80 -KPX Tcommaaccent colon -40 -KPX Tcommaaccent comma -80 -KPX Tcommaaccent e -60 -KPX Tcommaaccent eacute -60 -KPX Tcommaaccent ecaron -60 -KPX Tcommaaccent ecircumflex -60 -KPX Tcommaaccent edieresis -60 -KPX Tcommaaccent edotaccent -60 -KPX Tcommaaccent egrave -60 -KPX Tcommaaccent emacron -60 -KPX Tcommaaccent eogonek -60 -KPX Tcommaaccent hyphen -120 -KPX Tcommaaccent o -80 -KPX Tcommaaccent oacute -80 -KPX Tcommaaccent ocircumflex -80 -KPX Tcommaaccent odieresis -80 -KPX Tcommaaccent ograve -80 -KPX Tcommaaccent ohungarumlaut -80 -KPX Tcommaaccent omacron -80 -KPX Tcommaaccent oslash -80 -KPX Tcommaaccent otilde -80 -KPX Tcommaaccent period -80 -KPX Tcommaaccent r -80 -KPX Tcommaaccent racute -80 -KPX Tcommaaccent rcommaaccent -80 -KPX Tcommaaccent semicolon -40 -KPX Tcommaaccent u -90 -KPX Tcommaaccent uacute -90 -KPX Tcommaaccent ucircumflex -90 -KPX Tcommaaccent udieresis -90 -KPX Tcommaaccent ugrave -90 -KPX Tcommaaccent uhungarumlaut -90 -KPX Tcommaaccent umacron -90 -KPX Tcommaaccent uogonek -90 -KPX Tcommaaccent uring -90 -KPX Tcommaaccent w -60 -KPX Tcommaaccent y -60 -KPX Tcommaaccent yacute -60 -KPX Tcommaaccent ydieresis -60 -KPX U A -50 -KPX U Aacute -50 -KPX U Abreve -50 -KPX U Acircumflex -50 -KPX U Adieresis -50 -KPX U Agrave -50 -KPX U Amacron -50 -KPX U Aogonek -50 -KPX U Aring -50 -KPX U Atilde -50 -KPX U comma -30 -KPX U period -30 -KPX Uacute A -50 -KPX Uacute Aacute -50 -KPX Uacute Abreve -50 -KPX Uacute Acircumflex -50 -KPX Uacute Adieresis -50 -KPX Uacute Agrave -50 -KPX Uacute Amacron -50 -KPX Uacute Aogonek -50 -KPX Uacute Aring -50 -KPX Uacute Atilde -50 -KPX Uacute comma -30 -KPX Uacute period -30 -KPX Ucircumflex A -50 -KPX Ucircumflex Aacute -50 -KPX Ucircumflex Abreve -50 -KPX Ucircumflex Acircumflex -50 -KPX Ucircumflex Adieresis -50 -KPX Ucircumflex Agrave -50 -KPX Ucircumflex Amacron -50 -KPX Ucircumflex Aogonek -50 -KPX Ucircumflex Aring -50 -KPX Ucircumflex Atilde -50 -KPX Ucircumflex comma -30 -KPX Ucircumflex period -30 -KPX Udieresis A -50 -KPX Udieresis Aacute -50 -KPX Udieresis Abreve -50 -KPX Udieresis Acircumflex -50 -KPX Udieresis Adieresis -50 -KPX Udieresis Agrave -50 -KPX Udieresis Amacron -50 -KPX Udieresis Aogonek -50 -KPX Udieresis Aring -50 -KPX Udieresis Atilde -50 -KPX Udieresis comma -30 -KPX Udieresis period -30 -KPX Ugrave A -50 -KPX Ugrave Aacute -50 -KPX Ugrave Abreve -50 -KPX Ugrave Acircumflex -50 -KPX Ugrave Adieresis -50 -KPX Ugrave Agrave -50 -KPX Ugrave Amacron -50 -KPX Ugrave Aogonek -50 -KPX Ugrave Aring -50 -KPX Ugrave Atilde -50 -KPX Ugrave comma -30 -KPX Ugrave period -30 -KPX Uhungarumlaut A -50 -KPX Uhungarumlaut Aacute -50 -KPX Uhungarumlaut Abreve -50 -KPX Uhungarumlaut Acircumflex -50 -KPX Uhungarumlaut Adieresis -50 -KPX Uhungarumlaut Agrave -50 -KPX Uhungarumlaut Amacron -50 -KPX Uhungarumlaut Aogonek -50 -KPX Uhungarumlaut Aring -50 -KPX Uhungarumlaut Atilde -50 -KPX Uhungarumlaut comma -30 -KPX Uhungarumlaut period -30 -KPX Umacron A -50 -KPX Umacron Aacute -50 -KPX Umacron Abreve -50 -KPX Umacron Acircumflex -50 -KPX Umacron Adieresis -50 -KPX Umacron Agrave -50 -KPX Umacron Amacron -50 -KPX Umacron Aogonek -50 -KPX Umacron Aring -50 -KPX Umacron Atilde -50 -KPX Umacron comma -30 -KPX Umacron period -30 -KPX Uogonek A -50 -KPX Uogonek Aacute -50 -KPX Uogonek Abreve -50 -KPX Uogonek Acircumflex -50 -KPX Uogonek Adieresis -50 -KPX Uogonek Agrave -50 -KPX Uogonek Amacron -50 -KPX Uogonek Aogonek -50 -KPX Uogonek Aring -50 -KPX Uogonek Atilde -50 -KPX Uogonek comma -30 -KPX Uogonek period -30 -KPX Uring A -50 -KPX Uring Aacute -50 -KPX Uring Abreve -50 -KPX Uring Acircumflex -50 -KPX Uring Adieresis -50 -KPX Uring Agrave -50 -KPX Uring Amacron -50 -KPX Uring Aogonek -50 -KPX Uring Aring -50 -KPX Uring Atilde -50 -KPX Uring comma -30 -KPX Uring period -30 -KPX V A -80 -KPX V Aacute -80 -KPX V Abreve -80 -KPX V Acircumflex -80 -KPX V Adieresis -80 -KPX V Agrave -80 -KPX V Amacron -80 -KPX V Aogonek -80 -KPX V Aring -80 -KPX V Atilde -80 -KPX V G -50 -KPX V Gbreve -50 -KPX V Gcommaaccent -50 -KPX V O -50 -KPX V Oacute -50 -KPX V Ocircumflex -50 -KPX V Odieresis -50 -KPX V Ograve -50 -KPX V Ohungarumlaut -50 -KPX V Omacron -50 -KPX V Oslash -50 -KPX V Otilde -50 -KPX V a -60 -KPX V aacute -60 -KPX V abreve -60 -KPX V acircumflex -60 -KPX V adieresis -60 -KPX V agrave -60 -KPX V amacron -60 -KPX V aogonek -60 -KPX V aring -60 -KPX V atilde -60 -KPX V colon -40 -KPX V comma -120 -KPX V e -50 -KPX V eacute -50 -KPX V ecaron -50 -KPX V ecircumflex -50 -KPX V edieresis -50 -KPX V edotaccent -50 -KPX V egrave -50 -KPX V emacron -50 -KPX V eogonek -50 -KPX V hyphen -80 -KPX V o -90 -KPX V oacute -90 -KPX V ocircumflex -90 -KPX V odieresis -90 -KPX V ograve -90 -KPX V ohungarumlaut -90 -KPX V omacron -90 -KPX V oslash -90 -KPX V otilde -90 -KPX V period -120 -KPX V semicolon -40 -KPX V u -60 -KPX V uacute -60 -KPX V ucircumflex -60 -KPX V udieresis -60 -KPX V ugrave -60 -KPX V uhungarumlaut -60 -KPX V umacron -60 -KPX V uogonek -60 -KPX V uring -60 -KPX W A -60 -KPX W Aacute -60 -KPX W Abreve -60 -KPX W Acircumflex -60 -KPX W Adieresis -60 -KPX W Agrave -60 -KPX W Amacron -60 -KPX W Aogonek -60 -KPX W Aring -60 -KPX W Atilde -60 -KPX W O -20 -KPX W Oacute -20 -KPX W Ocircumflex -20 -KPX W Odieresis -20 -KPX W Ograve -20 -KPX W Ohungarumlaut -20 -KPX W Omacron -20 -KPX W Oslash -20 -KPX W Otilde -20 -KPX W a -40 -KPX W aacute -40 -KPX W abreve -40 -KPX W acircumflex -40 -KPX W adieresis -40 -KPX W agrave -40 -KPX W amacron -40 -KPX W aogonek -40 -KPX W aring -40 -KPX W atilde -40 -KPX W colon -10 -KPX W comma -80 -KPX W e -35 -KPX W eacute -35 -KPX W ecaron -35 -KPX W ecircumflex -35 -KPX W edieresis -35 -KPX W edotaccent -35 -KPX W egrave -35 -KPX W emacron -35 -KPX W eogonek -35 -KPX W hyphen -40 -KPX W o -60 -KPX W oacute -60 -KPX W ocircumflex -60 -KPX W odieresis -60 -KPX W ograve -60 -KPX W ohungarumlaut -60 -KPX W omacron -60 -KPX W oslash -60 -KPX W otilde -60 -KPX W period -80 -KPX W semicolon -10 -KPX W u -45 -KPX W uacute -45 -KPX W ucircumflex -45 -KPX W udieresis -45 -KPX W ugrave -45 -KPX W uhungarumlaut -45 -KPX W umacron -45 -KPX W uogonek -45 -KPX W uring -45 -KPX W y -20 -KPX W yacute -20 -KPX W ydieresis -20 -KPX Y A -110 -KPX Y Aacute -110 -KPX Y Abreve -110 -KPX Y Acircumflex -110 -KPX Y Adieresis -110 -KPX Y Agrave -110 -KPX Y Amacron -110 -KPX Y Aogonek -110 -KPX Y Aring -110 -KPX Y Atilde -110 -KPX Y O -70 -KPX Y Oacute -70 -KPX Y Ocircumflex -70 -KPX Y Odieresis -70 -KPX Y Ograve -70 -KPX Y Ohungarumlaut -70 -KPX Y Omacron -70 -KPX Y Oslash -70 -KPX Y Otilde -70 -KPX Y a -90 -KPX Y aacute -90 -KPX Y abreve -90 -KPX Y acircumflex -90 -KPX Y adieresis -90 -KPX Y agrave -90 -KPX Y amacron -90 -KPX Y aogonek -90 -KPX Y aring -90 -KPX Y atilde -90 -KPX Y colon -50 -KPX Y comma -100 -KPX Y e -80 -KPX Y eacute -80 -KPX Y ecaron -80 -KPX Y ecircumflex -80 -KPX Y edieresis -80 -KPX Y edotaccent -80 -KPX Y egrave -80 -KPX Y emacron -80 -KPX Y eogonek -80 -KPX Y o -100 -KPX Y oacute -100 -KPX Y ocircumflex -100 -KPX Y odieresis -100 -KPX Y ograve -100 -KPX Y ohungarumlaut -100 -KPX Y omacron -100 -KPX Y oslash -100 -KPX Y otilde -100 -KPX Y period -100 -KPX Y semicolon -50 -KPX Y u -100 -KPX Y uacute -100 -KPX Y ucircumflex -100 -KPX Y udieresis -100 -KPX Y ugrave -100 -KPX Y uhungarumlaut -100 -KPX Y umacron -100 -KPX Y uogonek -100 -KPX Y uring -100 -KPX Yacute A -110 -KPX Yacute Aacute -110 -KPX Yacute Abreve -110 -KPX Yacute Acircumflex -110 -KPX Yacute Adieresis -110 -KPX Yacute Agrave -110 -KPX Yacute Amacron -110 -KPX Yacute Aogonek -110 -KPX Yacute Aring -110 -KPX Yacute Atilde -110 -KPX Yacute O -70 -KPX Yacute Oacute -70 -KPX Yacute Ocircumflex -70 -KPX Yacute Odieresis -70 -KPX Yacute Ograve -70 -KPX Yacute Ohungarumlaut -70 -KPX Yacute Omacron -70 -KPX Yacute Oslash -70 -KPX Yacute Otilde -70 -KPX Yacute a -90 -KPX Yacute aacute -90 -KPX Yacute abreve -90 -KPX Yacute acircumflex -90 -KPX Yacute adieresis -90 -KPX Yacute agrave -90 -KPX Yacute amacron -90 -KPX Yacute aogonek -90 -KPX Yacute aring -90 -KPX Yacute atilde -90 -KPX Yacute colon -50 -KPX Yacute comma -100 -KPX Yacute e -80 -KPX Yacute eacute -80 -KPX Yacute ecaron -80 -KPX Yacute ecircumflex -80 -KPX Yacute edieresis -80 -KPX Yacute edotaccent -80 -KPX Yacute egrave -80 -KPX Yacute emacron -80 -KPX Yacute eogonek -80 -KPX Yacute o -100 -KPX Yacute oacute -100 -KPX Yacute ocircumflex -100 -KPX Yacute odieresis -100 -KPX Yacute ograve -100 -KPX Yacute ohungarumlaut -100 -KPX Yacute omacron -100 -KPX Yacute oslash -100 -KPX Yacute otilde -100 -KPX Yacute period -100 -KPX Yacute semicolon -50 -KPX Yacute u -100 -KPX Yacute uacute -100 -KPX Yacute ucircumflex -100 -KPX Yacute udieresis -100 -KPX Yacute ugrave -100 -KPX Yacute uhungarumlaut -100 -KPX Yacute umacron -100 -KPX Yacute uogonek -100 -KPX Yacute uring -100 -KPX Ydieresis A -110 -KPX Ydieresis Aacute -110 -KPX Ydieresis Abreve -110 -KPX Ydieresis Acircumflex -110 -KPX Ydieresis Adieresis -110 -KPX Ydieresis Agrave -110 -KPX Ydieresis Amacron -110 -KPX Ydieresis Aogonek -110 -KPX Ydieresis Aring -110 -KPX Ydieresis Atilde -110 -KPX Ydieresis O -70 -KPX Ydieresis Oacute -70 -KPX Ydieresis Ocircumflex -70 -KPX Ydieresis Odieresis -70 -KPX Ydieresis Ograve -70 -KPX Ydieresis Ohungarumlaut -70 -KPX Ydieresis Omacron -70 -KPX Ydieresis Oslash -70 -KPX Ydieresis Otilde -70 -KPX Ydieresis a -90 -KPX Ydieresis aacute -90 -KPX Ydieresis abreve -90 -KPX Ydieresis acircumflex -90 -KPX Ydieresis adieresis -90 -KPX Ydieresis agrave -90 -KPX Ydieresis amacron -90 -KPX Ydieresis aogonek -90 -KPX Ydieresis aring -90 -KPX Ydieresis atilde -90 -KPX Ydieresis colon -50 -KPX Ydieresis comma -100 -KPX Ydieresis e -80 -KPX Ydieresis eacute -80 -KPX Ydieresis ecaron -80 -KPX Ydieresis ecircumflex -80 -KPX Ydieresis edieresis -80 -KPX Ydieresis edotaccent -80 -KPX Ydieresis egrave -80 -KPX Ydieresis emacron -80 -KPX Ydieresis eogonek -80 -KPX Ydieresis o -100 -KPX Ydieresis oacute -100 -KPX Ydieresis ocircumflex -100 -KPX Ydieresis odieresis -100 -KPX Ydieresis ograve -100 -KPX Ydieresis ohungarumlaut -100 -KPX Ydieresis omacron -100 -KPX Ydieresis oslash -100 -KPX Ydieresis otilde -100 -KPX Ydieresis period -100 -KPX Ydieresis semicolon -50 -KPX Ydieresis u -100 -KPX Ydieresis uacute -100 -KPX Ydieresis ucircumflex -100 -KPX Ydieresis udieresis -100 -KPX Ydieresis ugrave -100 -KPX Ydieresis uhungarumlaut -100 -KPX Ydieresis umacron -100 -KPX Ydieresis uogonek -100 -KPX Ydieresis uring -100 -KPX a g -10 -KPX a gbreve -10 -KPX a gcommaaccent -10 -KPX a v -15 -KPX a w -15 -KPX a y -20 -KPX a yacute -20 -KPX a ydieresis -20 -KPX aacute g -10 -KPX aacute gbreve -10 -KPX aacute gcommaaccent -10 -KPX aacute v -15 -KPX aacute w -15 -KPX aacute y -20 -KPX aacute yacute -20 -KPX aacute ydieresis -20 -KPX abreve g -10 -KPX abreve gbreve -10 -KPX abreve gcommaaccent -10 -KPX abreve v -15 -KPX abreve w -15 -KPX abreve y -20 -KPX abreve yacute -20 -KPX abreve ydieresis -20 -KPX acircumflex g -10 -KPX acircumflex gbreve -10 -KPX acircumflex gcommaaccent -10 -KPX acircumflex v -15 -KPX acircumflex w -15 -KPX acircumflex y -20 -KPX acircumflex yacute -20 -KPX acircumflex ydieresis -20 -KPX adieresis g -10 -KPX adieresis gbreve -10 -KPX adieresis gcommaaccent -10 -KPX adieresis v -15 -KPX adieresis w -15 -KPX adieresis y -20 -KPX adieresis yacute -20 -KPX adieresis ydieresis -20 -KPX agrave g -10 -KPX agrave gbreve -10 -KPX agrave gcommaaccent -10 -KPX agrave v -15 -KPX agrave w -15 -KPX agrave y -20 -KPX agrave yacute -20 -KPX agrave ydieresis -20 -KPX amacron g -10 -KPX amacron gbreve -10 -KPX amacron gcommaaccent -10 -KPX amacron v -15 -KPX amacron w -15 -KPX amacron y -20 -KPX amacron yacute -20 -KPX amacron ydieresis -20 -KPX aogonek g -10 -KPX aogonek gbreve -10 -KPX aogonek gcommaaccent -10 -KPX aogonek v -15 -KPX aogonek w -15 -KPX aogonek y -20 -KPX aogonek yacute -20 -KPX aogonek ydieresis -20 -KPX aring g -10 -KPX aring gbreve -10 -KPX aring gcommaaccent -10 -KPX aring v -15 -KPX aring w -15 -KPX aring y -20 -KPX aring yacute -20 -KPX aring ydieresis -20 -KPX atilde g -10 -KPX atilde gbreve -10 -KPX atilde gcommaaccent -10 -KPX atilde v -15 -KPX atilde w -15 -KPX atilde y -20 -KPX atilde yacute -20 -KPX atilde ydieresis -20 -KPX b l -10 -KPX b lacute -10 -KPX b lcommaaccent -10 -KPX b lslash -10 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX b v -20 -KPX b y -20 -KPX b yacute -20 -KPX b ydieresis -20 -KPX c h -10 -KPX c k -20 -KPX c kcommaaccent -20 -KPX c l -20 -KPX c lacute -20 -KPX c lcommaaccent -20 -KPX c lslash -20 -KPX c y -10 -KPX c yacute -10 -KPX c ydieresis -10 -KPX cacute h -10 -KPX cacute k -20 -KPX cacute kcommaaccent -20 -KPX cacute l -20 -KPX cacute lacute -20 -KPX cacute lcommaaccent -20 -KPX cacute lslash -20 -KPX cacute y -10 -KPX cacute yacute -10 -KPX cacute ydieresis -10 -KPX ccaron h -10 -KPX ccaron k -20 -KPX ccaron kcommaaccent -20 -KPX ccaron l -20 -KPX ccaron lacute -20 -KPX ccaron lcommaaccent -20 -KPX ccaron lslash -20 -KPX ccaron y -10 -KPX ccaron yacute -10 -KPX ccaron ydieresis -10 -KPX ccedilla h -10 -KPX ccedilla k -20 -KPX ccedilla kcommaaccent -20 -KPX ccedilla l -20 -KPX ccedilla lacute -20 -KPX ccedilla lcommaaccent -20 -KPX ccedilla lslash -20 -KPX ccedilla y -10 -KPX ccedilla yacute -10 -KPX ccedilla ydieresis -10 -KPX colon space -40 -KPX comma quotedblright -120 -KPX comma quoteright -120 -KPX comma space -40 -KPX d d -10 -KPX d dcroat -10 -KPX d v -15 -KPX d w -15 -KPX d y -15 -KPX d yacute -15 -KPX d ydieresis -15 -KPX dcroat d -10 -KPX dcroat dcroat -10 -KPX dcroat v -15 -KPX dcroat w -15 -KPX dcroat y -15 -KPX dcroat yacute -15 -KPX dcroat ydieresis -15 -KPX e comma 10 -KPX e period 20 -KPX e v -15 -KPX e w -15 -KPX e x -15 -KPX e y -15 -KPX e yacute -15 -KPX e ydieresis -15 -KPX eacute comma 10 -KPX eacute period 20 -KPX eacute v -15 -KPX eacute w -15 -KPX eacute x -15 -KPX eacute y -15 -KPX eacute yacute -15 -KPX eacute ydieresis -15 -KPX ecaron comma 10 -KPX ecaron period 20 -KPX ecaron v -15 -KPX ecaron w -15 -KPX ecaron x -15 -KPX ecaron y -15 -KPX ecaron yacute -15 -KPX ecaron ydieresis -15 -KPX ecircumflex comma 10 -KPX ecircumflex period 20 -KPX ecircumflex v -15 -KPX ecircumflex w -15 -KPX ecircumflex x -15 -KPX ecircumflex y -15 -KPX ecircumflex yacute -15 -KPX ecircumflex ydieresis -15 -KPX edieresis comma 10 -KPX edieresis period 20 -KPX edieresis v -15 -KPX edieresis w -15 -KPX edieresis x -15 -KPX edieresis y -15 -KPX edieresis yacute -15 -KPX edieresis ydieresis -15 -KPX edotaccent comma 10 -KPX edotaccent period 20 -KPX edotaccent v -15 -KPX edotaccent w -15 -KPX edotaccent x -15 -KPX edotaccent y -15 -KPX edotaccent yacute -15 -KPX edotaccent ydieresis -15 -KPX egrave comma 10 -KPX egrave period 20 -KPX egrave v -15 -KPX egrave w -15 -KPX egrave x -15 -KPX egrave y -15 -KPX egrave yacute -15 -KPX egrave ydieresis -15 -KPX emacron comma 10 -KPX emacron period 20 -KPX emacron v -15 -KPX emacron w -15 -KPX emacron x -15 -KPX emacron y -15 -KPX emacron yacute -15 -KPX emacron ydieresis -15 -KPX eogonek comma 10 -KPX eogonek period 20 -KPX eogonek v -15 -KPX eogonek w -15 -KPX eogonek x -15 -KPX eogonek y -15 -KPX eogonek yacute -15 -KPX eogonek ydieresis -15 -KPX f comma -10 -KPX f e -10 -KPX f eacute -10 -KPX f ecaron -10 -KPX f ecircumflex -10 -KPX f edieresis -10 -KPX f edotaccent -10 -KPX f egrave -10 -KPX f emacron -10 -KPX f eogonek -10 -KPX f o -20 -KPX f oacute -20 -KPX f ocircumflex -20 -KPX f odieresis -20 -KPX f ograve -20 -KPX f ohungarumlaut -20 -KPX f omacron -20 -KPX f oslash -20 -KPX f otilde -20 -KPX f period -10 -KPX f quotedblright 30 -KPX f quoteright 30 -KPX g e 10 -KPX g eacute 10 -KPX g ecaron 10 -KPX g ecircumflex 10 -KPX g edieresis 10 -KPX g edotaccent 10 -KPX g egrave 10 -KPX g emacron 10 -KPX g eogonek 10 -KPX g g -10 -KPX g gbreve -10 -KPX g gcommaaccent -10 -KPX gbreve e 10 -KPX gbreve eacute 10 -KPX gbreve ecaron 10 -KPX gbreve ecircumflex 10 -KPX gbreve edieresis 10 -KPX gbreve edotaccent 10 -KPX gbreve egrave 10 -KPX gbreve emacron 10 -KPX gbreve eogonek 10 -KPX gbreve g -10 -KPX gbreve gbreve -10 -KPX gbreve gcommaaccent -10 -KPX gcommaaccent e 10 -KPX gcommaaccent eacute 10 -KPX gcommaaccent ecaron 10 -KPX gcommaaccent ecircumflex 10 -KPX gcommaaccent edieresis 10 -KPX gcommaaccent edotaccent 10 -KPX gcommaaccent egrave 10 -KPX gcommaaccent emacron 10 -KPX gcommaaccent eogonek 10 -KPX gcommaaccent g -10 -KPX gcommaaccent gbreve -10 -KPX gcommaaccent gcommaaccent -10 -KPX h y -20 -KPX h yacute -20 -KPX h ydieresis -20 -KPX k o -15 -KPX k oacute -15 -KPX k ocircumflex -15 -KPX k odieresis -15 -KPX k ograve -15 -KPX k ohungarumlaut -15 -KPX k omacron -15 -KPX k oslash -15 -KPX k otilde -15 -KPX kcommaaccent o -15 -KPX kcommaaccent oacute -15 -KPX kcommaaccent ocircumflex -15 -KPX kcommaaccent odieresis -15 -KPX kcommaaccent ograve -15 -KPX kcommaaccent ohungarumlaut -15 -KPX kcommaaccent omacron -15 -KPX kcommaaccent oslash -15 -KPX kcommaaccent otilde -15 -KPX l w -15 -KPX l y -15 -KPX l yacute -15 -KPX l ydieresis -15 -KPX lacute w -15 -KPX lacute y -15 -KPX lacute yacute -15 -KPX lacute ydieresis -15 -KPX lcommaaccent w -15 -KPX lcommaaccent y -15 -KPX lcommaaccent yacute -15 -KPX lcommaaccent ydieresis -15 -KPX lslash w -15 -KPX lslash y -15 -KPX lslash yacute -15 -KPX lslash ydieresis -15 -KPX m u -20 -KPX m uacute -20 -KPX m ucircumflex -20 -KPX m udieresis -20 -KPX m ugrave -20 -KPX m uhungarumlaut -20 -KPX m umacron -20 -KPX m uogonek -20 -KPX m uring -20 -KPX m y -30 -KPX m yacute -30 -KPX m ydieresis -30 -KPX n u -10 -KPX n uacute -10 -KPX n ucircumflex -10 -KPX n udieresis -10 -KPX n ugrave -10 -KPX n uhungarumlaut -10 -KPX n umacron -10 -KPX n uogonek -10 -KPX n uring -10 -KPX n v -40 -KPX n y -20 -KPX n yacute -20 -KPX n ydieresis -20 -KPX nacute u -10 -KPX nacute uacute -10 -KPX nacute ucircumflex -10 -KPX nacute udieresis -10 -KPX nacute ugrave -10 -KPX nacute uhungarumlaut -10 -KPX nacute umacron -10 -KPX nacute uogonek -10 -KPX nacute uring -10 -KPX nacute v -40 -KPX nacute y -20 -KPX nacute yacute -20 -KPX nacute ydieresis -20 -KPX ncaron u -10 -KPX ncaron uacute -10 -KPX ncaron ucircumflex -10 -KPX ncaron udieresis -10 -KPX ncaron ugrave -10 -KPX ncaron uhungarumlaut -10 -KPX ncaron umacron -10 -KPX ncaron uogonek -10 -KPX ncaron uring -10 -KPX ncaron v -40 -KPX ncaron y -20 -KPX ncaron yacute -20 -KPX ncaron ydieresis -20 -KPX ncommaaccent u -10 -KPX ncommaaccent uacute -10 -KPX ncommaaccent ucircumflex -10 -KPX ncommaaccent udieresis -10 -KPX ncommaaccent ugrave -10 -KPX ncommaaccent uhungarumlaut -10 -KPX ncommaaccent umacron -10 -KPX ncommaaccent uogonek -10 -KPX ncommaaccent uring -10 -KPX ncommaaccent v -40 -KPX ncommaaccent y -20 -KPX ncommaaccent yacute -20 -KPX ncommaaccent ydieresis -20 -KPX ntilde u -10 -KPX ntilde uacute -10 -KPX ntilde ucircumflex -10 -KPX ntilde udieresis -10 -KPX ntilde ugrave -10 -KPX ntilde uhungarumlaut -10 -KPX ntilde umacron -10 -KPX ntilde uogonek -10 -KPX ntilde uring -10 -KPX ntilde v -40 -KPX ntilde y -20 -KPX ntilde yacute -20 -KPX ntilde ydieresis -20 -KPX o v -20 -KPX o w -15 -KPX o x -30 -KPX o y -20 -KPX o yacute -20 -KPX o ydieresis -20 -KPX oacute v -20 -KPX oacute w -15 -KPX oacute x -30 -KPX oacute y -20 -KPX oacute yacute -20 -KPX oacute ydieresis -20 -KPX ocircumflex v -20 -KPX ocircumflex w -15 -KPX ocircumflex x -30 -KPX ocircumflex y -20 -KPX ocircumflex yacute -20 -KPX ocircumflex ydieresis -20 -KPX odieresis v -20 -KPX odieresis w -15 -KPX odieresis x -30 -KPX odieresis y -20 -KPX odieresis yacute -20 -KPX odieresis ydieresis -20 -KPX ograve v -20 -KPX ograve w -15 -KPX ograve x -30 -KPX ograve y -20 -KPX ograve yacute -20 -KPX ograve ydieresis -20 -KPX ohungarumlaut v -20 -KPX ohungarumlaut w -15 -KPX ohungarumlaut x -30 -KPX ohungarumlaut y -20 -KPX ohungarumlaut yacute -20 -KPX ohungarumlaut ydieresis -20 -KPX omacron v -20 -KPX omacron w -15 -KPX omacron x -30 -KPX omacron y -20 -KPX omacron yacute -20 -KPX omacron ydieresis -20 -KPX oslash v -20 -KPX oslash w -15 -KPX oslash x -30 -KPX oslash y -20 -KPX oslash yacute -20 -KPX oslash ydieresis -20 -KPX otilde v -20 -KPX otilde w -15 -KPX otilde x -30 -KPX otilde y -20 -KPX otilde yacute -20 -KPX otilde ydieresis -20 -KPX p y -15 -KPX p yacute -15 -KPX p ydieresis -15 -KPX period quotedblright -120 -KPX period quoteright -120 -KPX period space -40 -KPX quotedblright space -80 -KPX quoteleft quoteleft -46 -KPX quoteright d -80 -KPX quoteright dcroat -80 -KPX quoteright l -20 -KPX quoteright lacute -20 -KPX quoteright lcommaaccent -20 -KPX quoteright lslash -20 -KPX quoteright quoteright -46 -KPX quoteright r -40 -KPX quoteright racute -40 -KPX quoteright rcaron -40 -KPX quoteright rcommaaccent -40 -KPX quoteright s -60 -KPX quoteright sacute -60 -KPX quoteright scaron -60 -KPX quoteright scedilla -60 -KPX quoteright scommaaccent -60 -KPX quoteright space -80 -KPX quoteright v -20 -KPX r c -20 -KPX r cacute -20 -KPX r ccaron -20 -KPX r ccedilla -20 -KPX r comma -60 -KPX r d -20 -KPX r dcroat -20 -KPX r g -15 -KPX r gbreve -15 -KPX r gcommaaccent -15 -KPX r hyphen -20 -KPX r o -20 -KPX r oacute -20 -KPX r ocircumflex -20 -KPX r odieresis -20 -KPX r ograve -20 -KPX r ohungarumlaut -20 -KPX r omacron -20 -KPX r oslash -20 -KPX r otilde -20 -KPX r period -60 -KPX r q -20 -KPX r s -15 -KPX r sacute -15 -KPX r scaron -15 -KPX r scedilla -15 -KPX r scommaaccent -15 -KPX r t 20 -KPX r tcommaaccent 20 -KPX r v 10 -KPX r y 10 -KPX r yacute 10 -KPX r ydieresis 10 -KPX racute c -20 -KPX racute cacute -20 -KPX racute ccaron -20 -KPX racute ccedilla -20 -KPX racute comma -60 -KPX racute d -20 -KPX racute dcroat -20 -KPX racute g -15 -KPX racute gbreve -15 -KPX racute gcommaaccent -15 -KPX racute hyphen -20 -KPX racute o -20 -KPX racute oacute -20 -KPX racute ocircumflex -20 -KPX racute odieresis -20 -KPX racute ograve -20 -KPX racute ohungarumlaut -20 -KPX racute omacron -20 -KPX racute oslash -20 -KPX racute otilde -20 -KPX racute period -60 -KPX racute q -20 -KPX racute s -15 -KPX racute sacute -15 -KPX racute scaron -15 -KPX racute scedilla -15 -KPX racute scommaaccent -15 -KPX racute t 20 -KPX racute tcommaaccent 20 -KPX racute v 10 -KPX racute y 10 -KPX racute yacute 10 -KPX racute ydieresis 10 -KPX rcaron c -20 -KPX rcaron cacute -20 -KPX rcaron ccaron -20 -KPX rcaron ccedilla -20 -KPX rcaron comma -60 -KPX rcaron d -20 -KPX rcaron dcroat -20 -KPX rcaron g -15 -KPX rcaron gbreve -15 -KPX rcaron gcommaaccent -15 -KPX rcaron hyphen -20 -KPX rcaron o -20 -KPX rcaron oacute -20 -KPX rcaron ocircumflex -20 -KPX rcaron odieresis -20 -KPX rcaron ograve -20 -KPX rcaron ohungarumlaut -20 -KPX rcaron omacron -20 -KPX rcaron oslash -20 -KPX rcaron otilde -20 -KPX rcaron period -60 -KPX rcaron q -20 -KPX rcaron s -15 -KPX rcaron sacute -15 -KPX rcaron scaron -15 -KPX rcaron scedilla -15 -KPX rcaron scommaaccent -15 -KPX rcaron t 20 -KPX rcaron tcommaaccent 20 -KPX rcaron v 10 -KPX rcaron y 10 -KPX rcaron yacute 10 -KPX rcaron ydieresis 10 -KPX rcommaaccent c -20 -KPX rcommaaccent cacute -20 -KPX rcommaaccent ccaron -20 -KPX rcommaaccent ccedilla -20 -KPX rcommaaccent comma -60 -KPX rcommaaccent d -20 -KPX rcommaaccent dcroat -20 -KPX rcommaaccent g -15 -KPX rcommaaccent gbreve -15 -KPX rcommaaccent gcommaaccent -15 -KPX rcommaaccent hyphen -20 -KPX rcommaaccent o -20 -KPX rcommaaccent oacute -20 -KPX rcommaaccent ocircumflex -20 -KPX rcommaaccent odieresis -20 -KPX rcommaaccent ograve -20 -KPX rcommaaccent ohungarumlaut -20 -KPX rcommaaccent omacron -20 -KPX rcommaaccent oslash -20 -KPX rcommaaccent otilde -20 -KPX rcommaaccent period -60 -KPX rcommaaccent q -20 -KPX rcommaaccent s -15 -KPX rcommaaccent sacute -15 -KPX rcommaaccent scaron -15 -KPX rcommaaccent scedilla -15 -KPX rcommaaccent scommaaccent -15 -KPX rcommaaccent t 20 -KPX rcommaaccent tcommaaccent 20 -KPX rcommaaccent v 10 -KPX rcommaaccent y 10 -KPX rcommaaccent yacute 10 -KPX rcommaaccent ydieresis 10 -KPX s w -15 -KPX sacute w -15 -KPX scaron w -15 -KPX scedilla w -15 -KPX scommaaccent w -15 -KPX semicolon space -40 -KPX space T -100 -KPX space Tcaron -100 -KPX space Tcommaaccent -100 -KPX space V -80 -KPX space W -80 -KPX space Y -120 -KPX space Yacute -120 -KPX space Ydieresis -120 -KPX space quotedblleft -80 -KPX space quoteleft -60 -KPX v a -20 -KPX v aacute -20 -KPX v abreve -20 -KPX v acircumflex -20 -KPX v adieresis -20 -KPX v agrave -20 -KPX v amacron -20 -KPX v aogonek -20 -KPX v aring -20 -KPX v atilde -20 -KPX v comma -80 -KPX v o -30 -KPX v oacute -30 -KPX v ocircumflex -30 -KPX v odieresis -30 -KPX v ograve -30 -KPX v ohungarumlaut -30 -KPX v omacron -30 -KPX v oslash -30 -KPX v otilde -30 -KPX v period -80 -KPX w comma -40 -KPX w o -20 -KPX w oacute -20 -KPX w ocircumflex -20 -KPX w odieresis -20 -KPX w ograve -20 -KPX w ohungarumlaut -20 -KPX w omacron -20 -KPX w oslash -20 -KPX w otilde -20 -KPX w period -40 -KPX x e -10 -KPX x eacute -10 -KPX x ecaron -10 -KPX x ecircumflex -10 -KPX x edieresis -10 -KPX x edotaccent -10 -KPX x egrave -10 -KPX x emacron -10 -KPX x eogonek -10 -KPX y a -30 -KPX y aacute -30 -KPX y abreve -30 -KPX y acircumflex -30 -KPX y adieresis -30 -KPX y agrave -30 -KPX y amacron -30 -KPX y aogonek -30 -KPX y aring -30 -KPX y atilde -30 -KPX y comma -80 -KPX y e -10 -KPX y eacute -10 -KPX y ecaron -10 -KPX y ecircumflex -10 -KPX y edieresis -10 -KPX y edotaccent -10 -KPX y egrave -10 -KPX y emacron -10 -KPX y eogonek -10 -KPX y o -25 -KPX y oacute -25 -KPX y ocircumflex -25 -KPX y odieresis -25 -KPX y ograve -25 -KPX y ohungarumlaut -25 -KPX y omacron -25 -KPX y oslash -25 -KPX y otilde -25 -KPX y period -80 -KPX yacute a -30 -KPX yacute aacute -30 -KPX yacute abreve -30 -KPX yacute acircumflex -30 -KPX yacute adieresis -30 -KPX yacute agrave -30 -KPX yacute amacron -30 -KPX yacute aogonek -30 -KPX yacute aring -30 -KPX yacute atilde -30 -KPX yacute comma -80 -KPX yacute e -10 -KPX yacute eacute -10 -KPX yacute ecaron -10 -KPX yacute ecircumflex -10 -KPX yacute edieresis -10 -KPX yacute edotaccent -10 -KPX yacute egrave -10 -KPX yacute emacron -10 -KPX yacute eogonek -10 -KPX yacute o -25 -KPX yacute oacute -25 -KPX yacute ocircumflex -25 -KPX yacute odieresis -25 -KPX yacute ograve -25 -KPX yacute ohungarumlaut -25 -KPX yacute omacron -25 -KPX yacute oslash -25 -KPX yacute otilde -25 -KPX yacute period -80 -KPX ydieresis a -30 -KPX ydieresis aacute -30 -KPX ydieresis abreve -30 -KPX ydieresis acircumflex -30 -KPX ydieresis adieresis -30 -KPX ydieresis agrave -30 -KPX ydieresis amacron -30 -KPX ydieresis aogonek -30 -KPX ydieresis aring -30 -KPX ydieresis atilde -30 -KPX ydieresis comma -80 -KPX ydieresis e -10 -KPX ydieresis eacute -10 -KPX ydieresis ecaron -10 -KPX ydieresis ecircumflex -10 -KPX ydieresis edieresis -10 -KPX ydieresis edotaccent -10 -KPX ydieresis egrave -10 -KPX ydieresis emacron -10 -KPX ydieresis eogonek -10 -KPX ydieresis o -25 -KPX ydieresis oacute -25 -KPX ydieresis ocircumflex -25 -KPX ydieresis odieresis -25 -KPX ydieresis ograve -25 -KPX ydieresis ohungarumlaut -25 -KPX ydieresis omacron -25 -KPX ydieresis oslash -25 -KPX ydieresis otilde -25 -KPX ydieresis period -80 -KPX z e 10 -KPX z eacute 10 -KPX z ecaron 10 -KPX z ecircumflex 10 -KPX z edieresis 10 -KPX z edotaccent 10 -KPX z egrave 10 -KPX z emacron 10 -KPX z eogonek 10 -KPX zacute e 10 -KPX zacute eacute 10 -KPX zacute ecaron 10 -KPX zacute ecircumflex 10 -KPX zacute edieresis 10 -KPX zacute edotaccent 10 -KPX zacute egrave 10 -KPX zacute emacron 10 -KPX zacute eogonek 10 -KPX zcaron e 10 -KPX zcaron eacute 10 -KPX zcaron ecaron 10 -KPX zcaron ecircumflex 10 -KPX zcaron edieresis 10 -KPX zcaron edotaccent 10 -KPX zcaron egrave 10 -KPX zcaron emacron 10 -KPX zcaron eogonek 10 -KPX zdotaccent e 10 -KPX zdotaccent eacute 10 -KPX zdotaccent ecaron 10 -KPX zdotaccent ecircumflex 10 -KPX zdotaccent edieresis 10 -KPX zdotaccent edotaccent 10 -KPX zdotaccent egrave 10 -KPX zdotaccent emacron 10 -KPX zdotaccent eogonek 10 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-BoldOblique.afm b/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-BoldOblique.afm deleted file mode 100644 index 1715b210..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-BoldOblique.afm +++ /dev/null @@ -1,2827 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 12:45:12 1997 -Comment UniqueID 43053 -Comment VMusage 14482 68586 -FontName Helvetica-BoldOblique -FullName Helvetica Bold Oblique -FamilyName Helvetica -Weight Bold -ItalicAngle -12 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -174 -228 1114 962 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 718 -XHeight 532 -Ascender 718 -Descender -207 -StdHW 118 -StdVW 140 -StartCharMetrics 315 -C 32 ; WX 278 ; N space ; B 0 0 0 0 ; -C 33 ; WX 333 ; N exclam ; B 94 0 397 718 ; -C 34 ; WX 474 ; N quotedbl ; B 193 447 529 718 ; -C 35 ; WX 556 ; N numbersign ; B 60 0 644 698 ; -C 36 ; WX 556 ; N dollar ; B 67 -115 622 775 ; -C 37 ; WX 889 ; N percent ; B 136 -19 901 710 ; -C 38 ; WX 722 ; N ampersand ; B 89 -19 732 718 ; -C 39 ; WX 278 ; N quoteright ; B 167 445 362 718 ; -C 40 ; WX 333 ; N parenleft ; B 76 -208 470 734 ; -C 41 ; WX 333 ; N parenright ; B -25 -208 369 734 ; -C 42 ; WX 389 ; N asterisk ; B 146 387 481 718 ; -C 43 ; WX 584 ; N plus ; B 82 0 610 506 ; -C 44 ; WX 278 ; N comma ; B 28 -168 245 146 ; -C 45 ; WX 333 ; N hyphen ; B 73 215 379 345 ; -C 46 ; WX 278 ; N period ; B 64 0 245 146 ; -C 47 ; WX 278 ; N slash ; B -37 -19 468 737 ; -C 48 ; WX 556 ; N zero ; B 86 -19 617 710 ; -C 49 ; WX 556 ; N one ; B 173 0 529 710 ; -C 50 ; WX 556 ; N two ; B 26 0 619 710 ; -C 51 ; WX 556 ; N three ; B 65 -19 608 710 ; -C 52 ; WX 556 ; N four ; B 60 0 598 710 ; -C 53 ; WX 556 ; N five ; B 64 -19 636 698 ; -C 54 ; WX 556 ; N six ; B 85 -19 619 710 ; -C 55 ; WX 556 ; N seven ; B 125 0 676 698 ; -C 56 ; WX 556 ; N eight ; B 69 -19 616 710 ; -C 57 ; WX 556 ; N nine ; B 78 -19 615 710 ; -C 58 ; WX 333 ; N colon ; B 92 0 351 512 ; -C 59 ; WX 333 ; N semicolon ; B 56 -168 351 512 ; -C 60 ; WX 584 ; N less ; B 82 -8 655 514 ; -C 61 ; WX 584 ; N equal ; B 58 87 633 419 ; -C 62 ; WX 584 ; N greater ; B 36 -8 609 514 ; -C 63 ; WX 611 ; N question ; B 165 0 671 727 ; -C 64 ; WX 975 ; N at ; B 186 -19 954 737 ; -C 65 ; WX 722 ; N A ; B 20 0 702 718 ; -C 66 ; WX 722 ; N B ; B 76 0 764 718 ; -C 67 ; WX 722 ; N C ; B 107 -19 789 737 ; -C 68 ; WX 722 ; N D ; B 76 0 777 718 ; -C 69 ; WX 667 ; N E ; B 76 0 757 718 ; -C 70 ; WX 611 ; N F ; B 76 0 740 718 ; -C 71 ; WX 778 ; N G ; B 108 -19 817 737 ; -C 72 ; WX 722 ; N H ; B 71 0 804 718 ; -C 73 ; WX 278 ; N I ; B 64 0 367 718 ; -C 74 ; WX 556 ; N J ; B 60 -18 637 718 ; -C 75 ; WX 722 ; N K ; B 87 0 858 718 ; -C 76 ; WX 611 ; N L ; B 76 0 611 718 ; -C 77 ; WX 833 ; N M ; B 69 0 918 718 ; -C 78 ; WX 722 ; N N ; B 69 0 807 718 ; -C 79 ; WX 778 ; N O ; B 107 -19 823 737 ; -C 80 ; WX 667 ; N P ; B 76 0 738 718 ; -C 81 ; WX 778 ; N Q ; B 107 -52 823 737 ; -C 82 ; WX 722 ; N R ; B 76 0 778 718 ; -C 83 ; WX 667 ; N S ; B 81 -19 718 737 ; -C 84 ; WX 611 ; N T ; B 140 0 751 718 ; -C 85 ; WX 722 ; N U ; B 116 -19 804 718 ; -C 86 ; WX 667 ; N V ; B 172 0 801 718 ; -C 87 ; WX 944 ; N W ; B 169 0 1082 718 ; -C 88 ; WX 667 ; N X ; B 14 0 791 718 ; -C 89 ; WX 667 ; N Y ; B 168 0 806 718 ; -C 90 ; WX 611 ; N Z ; B 25 0 737 718 ; -C 91 ; WX 333 ; N bracketleft ; B 21 -196 462 722 ; -C 92 ; WX 278 ; N backslash ; B 124 -19 307 737 ; -C 93 ; WX 333 ; N bracketright ; B -18 -196 423 722 ; -C 94 ; WX 584 ; N asciicircum ; B 131 323 591 698 ; -C 95 ; WX 556 ; N underscore ; B -27 -125 540 -75 ; -C 96 ; WX 278 ; N quoteleft ; B 165 454 361 727 ; -C 97 ; WX 556 ; N a ; B 55 -14 583 546 ; -C 98 ; WX 611 ; N b ; B 61 -14 645 718 ; -C 99 ; WX 556 ; N c ; B 79 -14 599 546 ; -C 100 ; WX 611 ; N d ; B 82 -14 704 718 ; -C 101 ; WX 556 ; N e ; B 70 -14 593 546 ; -C 102 ; WX 333 ; N f ; B 87 0 469 727 ; L i fi ; L l fl ; -C 103 ; WX 611 ; N g ; B 38 -217 666 546 ; -C 104 ; WX 611 ; N h ; B 65 0 629 718 ; -C 105 ; WX 278 ; N i ; B 69 0 363 725 ; -C 106 ; WX 278 ; N j ; B -42 -214 363 725 ; -C 107 ; WX 556 ; N k ; B 69 0 670 718 ; -C 108 ; WX 278 ; N l ; B 69 0 362 718 ; -C 109 ; WX 889 ; N m ; B 64 0 909 546 ; -C 110 ; WX 611 ; N n ; B 65 0 629 546 ; -C 111 ; WX 611 ; N o ; B 82 -14 643 546 ; -C 112 ; WX 611 ; N p ; B 18 -207 645 546 ; -C 113 ; WX 611 ; N q ; B 80 -207 665 546 ; -C 114 ; WX 389 ; N r ; B 64 0 489 546 ; -C 115 ; WX 556 ; N s ; B 63 -14 584 546 ; -C 116 ; WX 333 ; N t ; B 100 -6 422 676 ; -C 117 ; WX 611 ; N u ; B 98 -14 658 532 ; -C 118 ; WX 556 ; N v ; B 126 0 656 532 ; -C 119 ; WX 778 ; N w ; B 123 0 882 532 ; -C 120 ; WX 556 ; N x ; B 15 0 648 532 ; -C 121 ; WX 556 ; N y ; B 42 -214 652 532 ; -C 122 ; WX 500 ; N z ; B 20 0 583 532 ; -C 123 ; WX 389 ; N braceleft ; B 94 -196 518 722 ; -C 124 ; WX 280 ; N bar ; B 36 -225 361 775 ; -C 125 ; WX 389 ; N braceright ; B -18 -196 407 722 ; -C 126 ; WX 584 ; N asciitilde ; B 115 163 577 343 ; -C 161 ; WX 333 ; N exclamdown ; B 50 -186 353 532 ; -C 162 ; WX 556 ; N cent ; B 79 -118 599 628 ; -C 163 ; WX 556 ; N sterling ; B 50 -16 635 718 ; -C 164 ; WX 167 ; N fraction ; B -174 -19 487 710 ; -C 165 ; WX 556 ; N yen ; B 60 0 713 698 ; -C 166 ; WX 556 ; N florin ; B -50 -210 669 737 ; -C 167 ; WX 556 ; N section ; B 61 -184 598 727 ; -C 168 ; WX 556 ; N currency ; B 27 76 680 636 ; -C 169 ; WX 238 ; N quotesingle ; B 165 447 321 718 ; -C 170 ; WX 500 ; N quotedblleft ; B 160 454 588 727 ; -C 171 ; WX 556 ; N guillemotleft ; B 135 76 571 484 ; -C 172 ; WX 333 ; N guilsinglleft ; B 130 76 353 484 ; -C 173 ; WX 333 ; N guilsinglright ; B 99 76 322 484 ; -C 174 ; WX 611 ; N fi ; B 87 0 696 727 ; -C 175 ; WX 611 ; N fl ; B 87 0 695 727 ; -C 177 ; WX 556 ; N endash ; B 48 227 627 333 ; -C 178 ; WX 556 ; N dagger ; B 118 -171 626 718 ; -C 179 ; WX 556 ; N daggerdbl ; B 46 -171 628 718 ; -C 180 ; WX 278 ; N periodcentered ; B 110 172 276 334 ; -C 182 ; WX 556 ; N paragraph ; B 98 -191 688 700 ; -C 183 ; WX 350 ; N bullet ; B 83 194 420 524 ; -C 184 ; WX 278 ; N quotesinglbase ; B 41 -146 236 127 ; -C 185 ; WX 500 ; N quotedblbase ; B 36 -146 463 127 ; -C 186 ; WX 500 ; N quotedblright ; B 162 445 589 718 ; -C 187 ; WX 556 ; N guillemotright ; B 104 76 540 484 ; -C 188 ; WX 1000 ; N ellipsis ; B 92 0 939 146 ; -C 189 ; WX 1000 ; N perthousand ; B 76 -19 1038 710 ; -C 191 ; WX 611 ; N questiondown ; B 53 -195 559 532 ; -C 193 ; WX 333 ; N grave ; B 136 604 353 750 ; -C 194 ; WX 333 ; N acute ; B 236 604 515 750 ; -C 195 ; WX 333 ; N circumflex ; B 118 604 471 750 ; -C 196 ; WX 333 ; N tilde ; B 113 610 507 737 ; -C 197 ; WX 333 ; N macron ; B 122 604 483 678 ; -C 198 ; WX 333 ; N breve ; B 156 604 494 750 ; -C 199 ; WX 333 ; N dotaccent ; B 235 614 385 729 ; -C 200 ; WX 333 ; N dieresis ; B 137 614 482 729 ; -C 202 ; WX 333 ; N ring ; B 200 568 420 776 ; -C 203 ; WX 333 ; N cedilla ; B -37 -228 220 0 ; -C 205 ; WX 333 ; N hungarumlaut ; B 137 604 645 750 ; -C 206 ; WX 333 ; N ogonek ; B 41 -228 264 0 ; -C 207 ; WX 333 ; N caron ; B 149 604 502 750 ; -C 208 ; WX 1000 ; N emdash ; B 48 227 1071 333 ; -C 225 ; WX 1000 ; N AE ; B 5 0 1100 718 ; -C 227 ; WX 370 ; N ordfeminine ; B 125 401 465 737 ; -C 232 ; WX 611 ; N Lslash ; B 34 0 611 718 ; -C 233 ; WX 778 ; N Oslash ; B 35 -27 894 745 ; -C 234 ; WX 1000 ; N OE ; B 99 -19 1114 737 ; -C 235 ; WX 365 ; N ordmasculine ; B 123 401 485 737 ; -C 241 ; WX 889 ; N ae ; B 56 -14 923 546 ; -C 245 ; WX 278 ; N dotlessi ; B 69 0 322 532 ; -C 248 ; WX 278 ; N lslash ; B 40 0 407 718 ; -C 249 ; WX 611 ; N oslash ; B 22 -29 701 560 ; -C 250 ; WX 944 ; N oe ; B 82 -14 977 546 ; -C 251 ; WX 611 ; N germandbls ; B 69 -14 657 731 ; -C -1 ; WX 278 ; N Idieresis ; B 64 0 494 915 ; -C -1 ; WX 556 ; N eacute ; B 70 -14 627 750 ; -C -1 ; WX 556 ; N abreve ; B 55 -14 606 750 ; -C -1 ; WX 611 ; N uhungarumlaut ; B 98 -14 784 750 ; -C -1 ; WX 556 ; N ecaron ; B 70 -14 614 750 ; -C -1 ; WX 667 ; N Ydieresis ; B 168 0 806 915 ; -C -1 ; WX 584 ; N divide ; B 82 -42 610 548 ; -C -1 ; WX 667 ; N Yacute ; B 168 0 806 936 ; -C -1 ; WX 722 ; N Acircumflex ; B 20 0 706 936 ; -C -1 ; WX 556 ; N aacute ; B 55 -14 627 750 ; -C -1 ; WX 722 ; N Ucircumflex ; B 116 -19 804 936 ; -C -1 ; WX 556 ; N yacute ; B 42 -214 652 750 ; -C -1 ; WX 556 ; N scommaaccent ; B 63 -228 584 546 ; -C -1 ; WX 556 ; N ecircumflex ; B 70 -14 593 750 ; -C -1 ; WX 722 ; N Uring ; B 116 -19 804 962 ; -C -1 ; WX 722 ; N Udieresis ; B 116 -19 804 915 ; -C -1 ; WX 556 ; N aogonek ; B 55 -224 583 546 ; -C -1 ; WX 722 ; N Uacute ; B 116 -19 804 936 ; -C -1 ; WX 611 ; N uogonek ; B 98 -228 658 532 ; -C -1 ; WX 667 ; N Edieresis ; B 76 0 757 915 ; -C -1 ; WX 722 ; N Dcroat ; B 62 0 777 718 ; -C -1 ; WX 250 ; N commaaccent ; B 16 -228 188 -50 ; -C -1 ; WX 737 ; N copyright ; B 56 -19 835 737 ; -C -1 ; WX 667 ; N Emacron ; B 76 0 757 864 ; -C -1 ; WX 556 ; N ccaron ; B 79 -14 614 750 ; -C -1 ; WX 556 ; N aring ; B 55 -14 583 776 ; -C -1 ; WX 722 ; N Ncommaaccent ; B 69 -228 807 718 ; -C -1 ; WX 278 ; N lacute ; B 69 0 528 936 ; -C -1 ; WX 556 ; N agrave ; B 55 -14 583 750 ; -C -1 ; WX 611 ; N Tcommaaccent ; B 140 -228 751 718 ; -C -1 ; WX 722 ; N Cacute ; B 107 -19 789 936 ; -C -1 ; WX 556 ; N atilde ; B 55 -14 619 737 ; -C -1 ; WX 667 ; N Edotaccent ; B 76 0 757 915 ; -C -1 ; WX 556 ; N scaron ; B 63 -14 614 750 ; -C -1 ; WX 556 ; N scedilla ; B 63 -228 584 546 ; -C -1 ; WX 278 ; N iacute ; B 69 0 488 750 ; -C -1 ; WX 494 ; N lozenge ; B 90 0 564 745 ; -C -1 ; WX 722 ; N Rcaron ; B 76 0 778 936 ; -C -1 ; WX 778 ; N Gcommaaccent ; B 108 -228 817 737 ; -C -1 ; WX 611 ; N ucircumflex ; B 98 -14 658 750 ; -C -1 ; WX 556 ; N acircumflex ; B 55 -14 583 750 ; -C -1 ; WX 722 ; N Amacron ; B 20 0 718 864 ; -C -1 ; WX 389 ; N rcaron ; B 64 0 530 750 ; -C -1 ; WX 556 ; N ccedilla ; B 79 -228 599 546 ; -C -1 ; WX 611 ; N Zdotaccent ; B 25 0 737 915 ; -C -1 ; WX 667 ; N Thorn ; B 76 0 716 718 ; -C -1 ; WX 778 ; N Omacron ; B 107 -19 823 864 ; -C -1 ; WX 722 ; N Racute ; B 76 0 778 936 ; -C -1 ; WX 667 ; N Sacute ; B 81 -19 722 936 ; -C -1 ; WX 743 ; N dcaron ; B 82 -14 903 718 ; -C -1 ; WX 722 ; N Umacron ; B 116 -19 804 864 ; -C -1 ; WX 611 ; N uring ; B 98 -14 658 776 ; -C -1 ; WX 333 ; N threesuperior ; B 91 271 441 710 ; -C -1 ; WX 778 ; N Ograve ; B 107 -19 823 936 ; -C -1 ; WX 722 ; N Agrave ; B 20 0 702 936 ; -C -1 ; WX 722 ; N Abreve ; B 20 0 729 936 ; -C -1 ; WX 584 ; N multiply ; B 57 1 635 505 ; -C -1 ; WX 611 ; N uacute ; B 98 -14 658 750 ; -C -1 ; WX 611 ; N Tcaron ; B 140 0 751 936 ; -C -1 ; WX 494 ; N partialdiff ; B 43 -21 585 750 ; -C -1 ; WX 556 ; N ydieresis ; B 42 -214 652 729 ; -C -1 ; WX 722 ; N Nacute ; B 69 0 807 936 ; -C -1 ; WX 278 ; N icircumflex ; B 69 0 444 750 ; -C -1 ; WX 667 ; N Ecircumflex ; B 76 0 757 936 ; -C -1 ; WX 556 ; N adieresis ; B 55 -14 594 729 ; -C -1 ; WX 556 ; N edieresis ; B 70 -14 594 729 ; -C -1 ; WX 556 ; N cacute ; B 79 -14 627 750 ; -C -1 ; WX 611 ; N nacute ; B 65 0 654 750 ; -C -1 ; WX 611 ; N umacron ; B 98 -14 658 678 ; -C -1 ; WX 722 ; N Ncaron ; B 69 0 807 936 ; -C -1 ; WX 278 ; N Iacute ; B 64 0 528 936 ; -C -1 ; WX 584 ; N plusminus ; B 40 0 625 506 ; -C -1 ; WX 280 ; N brokenbar ; B 52 -150 345 700 ; -C -1 ; WX 737 ; N registered ; B 55 -19 834 737 ; -C -1 ; WX 778 ; N Gbreve ; B 108 -19 817 936 ; -C -1 ; WX 278 ; N Idotaccent ; B 64 0 397 915 ; -C -1 ; WX 600 ; N summation ; B 14 -10 670 706 ; -C -1 ; WX 667 ; N Egrave ; B 76 0 757 936 ; -C -1 ; WX 389 ; N racute ; B 64 0 543 750 ; -C -1 ; WX 611 ; N omacron ; B 82 -14 643 678 ; -C -1 ; WX 611 ; N Zacute ; B 25 0 737 936 ; -C -1 ; WX 611 ; N Zcaron ; B 25 0 737 936 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 629 704 ; -C -1 ; WX 722 ; N Eth ; B 62 0 777 718 ; -C -1 ; WX 722 ; N Ccedilla ; B 107 -228 789 737 ; -C -1 ; WX 278 ; N lcommaaccent ; B 30 -228 362 718 ; -C -1 ; WX 389 ; N tcaron ; B 100 -6 608 878 ; -C -1 ; WX 556 ; N eogonek ; B 70 -228 593 546 ; -C -1 ; WX 722 ; N Uogonek ; B 116 -228 804 718 ; -C -1 ; WX 722 ; N Aacute ; B 20 0 750 936 ; -C -1 ; WX 722 ; N Adieresis ; B 20 0 716 915 ; -C -1 ; WX 556 ; N egrave ; B 70 -14 593 750 ; -C -1 ; WX 500 ; N zacute ; B 20 0 599 750 ; -C -1 ; WX 278 ; N iogonek ; B -14 -224 363 725 ; -C -1 ; WX 778 ; N Oacute ; B 107 -19 823 936 ; -C -1 ; WX 611 ; N oacute ; B 82 -14 654 750 ; -C -1 ; WX 556 ; N amacron ; B 55 -14 595 678 ; -C -1 ; WX 556 ; N sacute ; B 63 -14 627 750 ; -C -1 ; WX 278 ; N idieresis ; B 69 0 455 729 ; -C -1 ; WX 778 ; N Ocircumflex ; B 107 -19 823 936 ; -C -1 ; WX 722 ; N Ugrave ; B 116 -19 804 936 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 611 ; N thorn ; B 18 -208 645 718 ; -C -1 ; WX 333 ; N twosuperior ; B 69 283 449 710 ; -C -1 ; WX 778 ; N Odieresis ; B 107 -19 823 915 ; -C -1 ; WX 611 ; N mu ; B 22 -207 658 532 ; -C -1 ; WX 278 ; N igrave ; B 69 0 326 750 ; -C -1 ; WX 611 ; N ohungarumlaut ; B 82 -14 784 750 ; -C -1 ; WX 667 ; N Eogonek ; B 76 -224 757 718 ; -C -1 ; WX 611 ; N dcroat ; B 82 -14 789 718 ; -C -1 ; WX 834 ; N threequarters ; B 99 -19 839 710 ; -C -1 ; WX 667 ; N Scedilla ; B 81 -228 718 737 ; -C -1 ; WX 400 ; N lcaron ; B 69 0 561 718 ; -C -1 ; WX 722 ; N Kcommaaccent ; B 87 -228 858 718 ; -C -1 ; WX 611 ; N Lacute ; B 76 0 611 936 ; -C -1 ; WX 1000 ; N trademark ; B 179 306 1109 718 ; -C -1 ; WX 556 ; N edotaccent ; B 70 -14 593 729 ; -C -1 ; WX 278 ; N Igrave ; B 64 0 367 936 ; -C -1 ; WX 278 ; N Imacron ; B 64 0 496 864 ; -C -1 ; WX 611 ; N Lcaron ; B 76 0 643 718 ; -C -1 ; WX 834 ; N onehalf ; B 132 -19 858 710 ; -C -1 ; WX 549 ; N lessequal ; B 29 0 676 704 ; -C -1 ; WX 611 ; N ocircumflex ; B 82 -14 643 750 ; -C -1 ; WX 611 ; N ntilde ; B 65 0 646 737 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 116 -19 880 936 ; -C -1 ; WX 667 ; N Eacute ; B 76 0 757 936 ; -C -1 ; WX 556 ; N emacron ; B 70 -14 595 678 ; -C -1 ; WX 611 ; N gbreve ; B 38 -217 666 750 ; -C -1 ; WX 834 ; N onequarter ; B 132 -19 806 710 ; -C -1 ; WX 667 ; N Scaron ; B 81 -19 718 936 ; -C -1 ; WX 667 ; N Scommaaccent ; B 81 -228 718 737 ; -C -1 ; WX 778 ; N Ohungarumlaut ; B 107 -19 908 936 ; -C -1 ; WX 400 ; N degree ; B 175 426 467 712 ; -C -1 ; WX 611 ; N ograve ; B 82 -14 643 750 ; -C -1 ; WX 722 ; N Ccaron ; B 107 -19 789 936 ; -C -1 ; WX 611 ; N ugrave ; B 98 -14 658 750 ; -C -1 ; WX 549 ; N radical ; B 112 -46 689 850 ; -C -1 ; WX 722 ; N Dcaron ; B 76 0 777 936 ; -C -1 ; WX 389 ; N rcommaaccent ; B 26 -228 489 546 ; -C -1 ; WX 722 ; N Ntilde ; B 69 0 807 923 ; -C -1 ; WX 611 ; N otilde ; B 82 -14 646 737 ; -C -1 ; WX 722 ; N Rcommaaccent ; B 76 -228 778 718 ; -C -1 ; WX 611 ; N Lcommaaccent ; B 76 -228 611 718 ; -C -1 ; WX 722 ; N Atilde ; B 20 0 741 923 ; -C -1 ; WX 722 ; N Aogonek ; B 20 -224 702 718 ; -C -1 ; WX 722 ; N Aring ; B 20 0 702 962 ; -C -1 ; WX 778 ; N Otilde ; B 107 -19 823 923 ; -C -1 ; WX 500 ; N zdotaccent ; B 20 0 583 729 ; -C -1 ; WX 667 ; N Ecaron ; B 76 0 757 936 ; -C -1 ; WX 278 ; N Iogonek ; B -41 -228 367 718 ; -C -1 ; WX 556 ; N kcommaaccent ; B 69 -228 670 718 ; -C -1 ; WX 584 ; N minus ; B 82 197 610 309 ; -C -1 ; WX 278 ; N Icircumflex ; B 64 0 484 936 ; -C -1 ; WX 611 ; N ncaron ; B 65 0 641 750 ; -C -1 ; WX 333 ; N tcommaaccent ; B 58 -228 422 676 ; -C -1 ; WX 584 ; N logicalnot ; B 105 108 633 419 ; -C -1 ; WX 611 ; N odieresis ; B 82 -14 643 729 ; -C -1 ; WX 611 ; N udieresis ; B 98 -14 658 729 ; -C -1 ; WX 549 ; N notequal ; B 32 -49 630 570 ; -C -1 ; WX 611 ; N gcommaaccent ; B 38 -217 666 850 ; -C -1 ; WX 611 ; N eth ; B 82 -14 670 737 ; -C -1 ; WX 500 ; N zcaron ; B 20 0 586 750 ; -C -1 ; WX 611 ; N ncommaaccent ; B 65 -228 629 546 ; -C -1 ; WX 333 ; N onesuperior ; B 148 283 388 710 ; -C -1 ; WX 278 ; N imacron ; B 69 0 429 678 ; -C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2481 -KPX A C -40 -KPX A Cacute -40 -KPX A Ccaron -40 -KPX A Ccedilla -40 -KPX A G -50 -KPX A Gbreve -50 -KPX A Gcommaaccent -50 -KPX A O -40 -KPX A Oacute -40 -KPX A Ocircumflex -40 -KPX A Odieresis -40 -KPX A Ograve -40 -KPX A Ohungarumlaut -40 -KPX A Omacron -40 -KPX A Oslash -40 -KPX A Otilde -40 -KPX A Q -40 -KPX A T -90 -KPX A Tcaron -90 -KPX A Tcommaaccent -90 -KPX A U -50 -KPX A Uacute -50 -KPX A Ucircumflex -50 -KPX A Udieresis -50 -KPX A Ugrave -50 -KPX A Uhungarumlaut -50 -KPX A Umacron -50 -KPX A Uogonek -50 -KPX A Uring -50 -KPX A V -80 -KPX A W -60 -KPX A Y -110 -KPX A Yacute -110 -KPX A Ydieresis -110 -KPX A u -30 -KPX A uacute -30 -KPX A ucircumflex -30 -KPX A udieresis -30 -KPX A ugrave -30 -KPX A uhungarumlaut -30 -KPX A umacron -30 -KPX A uogonek -30 -KPX A uring -30 -KPX A v -40 -KPX A w -30 -KPX A y -30 -KPX A yacute -30 -KPX A ydieresis -30 -KPX Aacute C -40 -KPX Aacute Cacute -40 -KPX Aacute Ccaron -40 -KPX Aacute Ccedilla -40 -KPX Aacute G -50 -KPX Aacute Gbreve -50 -KPX Aacute Gcommaaccent -50 -KPX Aacute O -40 -KPX Aacute Oacute -40 -KPX Aacute Ocircumflex -40 -KPX Aacute Odieresis -40 -KPX Aacute Ograve -40 -KPX Aacute Ohungarumlaut -40 -KPX Aacute Omacron -40 -KPX Aacute Oslash -40 -KPX Aacute Otilde -40 -KPX Aacute Q -40 -KPX Aacute T -90 -KPX Aacute Tcaron -90 -KPX Aacute Tcommaaccent -90 -KPX Aacute U -50 -KPX Aacute Uacute -50 -KPX Aacute Ucircumflex -50 -KPX Aacute Udieresis -50 -KPX Aacute Ugrave -50 -KPX Aacute Uhungarumlaut -50 -KPX Aacute Umacron -50 -KPX Aacute Uogonek -50 -KPX Aacute Uring -50 -KPX Aacute V -80 -KPX Aacute W -60 -KPX Aacute Y -110 -KPX Aacute Yacute -110 -KPX Aacute Ydieresis -110 -KPX Aacute u -30 -KPX Aacute uacute -30 -KPX Aacute ucircumflex -30 -KPX Aacute udieresis -30 -KPX Aacute ugrave -30 -KPX Aacute uhungarumlaut -30 -KPX Aacute umacron -30 -KPX Aacute uogonek -30 -KPX Aacute uring -30 -KPX Aacute v -40 -KPX Aacute w -30 -KPX Aacute y -30 -KPX Aacute yacute -30 -KPX Aacute ydieresis -30 -KPX Abreve C -40 -KPX Abreve Cacute -40 -KPX Abreve Ccaron -40 -KPX Abreve Ccedilla -40 -KPX Abreve G -50 -KPX Abreve Gbreve -50 -KPX Abreve Gcommaaccent -50 -KPX Abreve O -40 -KPX Abreve Oacute -40 -KPX Abreve Ocircumflex -40 -KPX Abreve Odieresis -40 -KPX Abreve Ograve -40 -KPX Abreve Ohungarumlaut -40 -KPX Abreve Omacron -40 -KPX Abreve Oslash -40 -KPX Abreve Otilde -40 -KPX Abreve Q -40 -KPX Abreve T -90 -KPX Abreve Tcaron -90 -KPX Abreve Tcommaaccent -90 -KPX Abreve U -50 -KPX Abreve Uacute -50 -KPX Abreve Ucircumflex -50 -KPX Abreve Udieresis -50 -KPX Abreve Ugrave -50 -KPX Abreve Uhungarumlaut -50 -KPX Abreve Umacron -50 -KPX Abreve Uogonek -50 -KPX Abreve Uring -50 -KPX Abreve V -80 -KPX Abreve W -60 -KPX Abreve Y -110 -KPX Abreve Yacute -110 -KPX Abreve Ydieresis -110 -KPX Abreve u -30 -KPX Abreve uacute -30 -KPX Abreve ucircumflex -30 -KPX Abreve udieresis -30 -KPX Abreve ugrave -30 -KPX Abreve uhungarumlaut -30 -KPX Abreve umacron -30 -KPX Abreve uogonek -30 -KPX Abreve uring -30 -KPX Abreve v -40 -KPX Abreve w -30 -KPX Abreve y -30 -KPX Abreve yacute -30 -KPX Abreve ydieresis -30 -KPX Acircumflex C -40 -KPX Acircumflex Cacute -40 -KPX Acircumflex Ccaron -40 -KPX Acircumflex Ccedilla -40 -KPX Acircumflex G -50 -KPX Acircumflex Gbreve -50 -KPX Acircumflex Gcommaaccent -50 -KPX Acircumflex O -40 -KPX Acircumflex Oacute -40 -KPX Acircumflex Ocircumflex -40 -KPX Acircumflex Odieresis -40 -KPX Acircumflex Ograve -40 -KPX Acircumflex Ohungarumlaut -40 -KPX Acircumflex Omacron -40 -KPX Acircumflex Oslash -40 -KPX Acircumflex Otilde -40 -KPX Acircumflex Q -40 -KPX Acircumflex T -90 -KPX Acircumflex Tcaron -90 -KPX Acircumflex Tcommaaccent -90 -KPX Acircumflex U -50 -KPX Acircumflex Uacute -50 -KPX Acircumflex Ucircumflex -50 -KPX Acircumflex Udieresis -50 -KPX Acircumflex Ugrave -50 -KPX Acircumflex Uhungarumlaut -50 -KPX Acircumflex Umacron -50 -KPX Acircumflex Uogonek -50 -KPX Acircumflex Uring -50 -KPX Acircumflex V -80 -KPX Acircumflex W -60 -KPX Acircumflex Y -110 -KPX Acircumflex Yacute -110 -KPX Acircumflex Ydieresis -110 -KPX Acircumflex u -30 -KPX Acircumflex uacute -30 -KPX Acircumflex ucircumflex -30 -KPX Acircumflex udieresis -30 -KPX Acircumflex ugrave -30 -KPX Acircumflex uhungarumlaut -30 -KPX Acircumflex umacron -30 -KPX Acircumflex uogonek -30 -KPX Acircumflex uring -30 -KPX Acircumflex v -40 -KPX Acircumflex w -30 -KPX Acircumflex y -30 -KPX Acircumflex yacute -30 -KPX Acircumflex ydieresis -30 -KPX Adieresis C -40 -KPX Adieresis Cacute -40 -KPX Adieresis Ccaron -40 -KPX Adieresis Ccedilla -40 -KPX Adieresis G -50 -KPX Adieresis Gbreve -50 -KPX Adieresis Gcommaaccent -50 -KPX Adieresis O -40 -KPX Adieresis Oacute -40 -KPX Adieresis Ocircumflex -40 -KPX Adieresis Odieresis -40 -KPX Adieresis Ograve -40 -KPX Adieresis Ohungarumlaut -40 -KPX Adieresis Omacron -40 -KPX Adieresis Oslash -40 -KPX Adieresis Otilde -40 -KPX Adieresis Q -40 -KPX Adieresis T -90 -KPX Adieresis Tcaron -90 -KPX Adieresis Tcommaaccent -90 -KPX Adieresis U -50 -KPX Adieresis Uacute -50 -KPX Adieresis Ucircumflex -50 -KPX Adieresis Udieresis -50 -KPX Adieresis Ugrave -50 -KPX Adieresis Uhungarumlaut -50 -KPX Adieresis Umacron -50 -KPX Adieresis Uogonek -50 -KPX Adieresis Uring -50 -KPX Adieresis V -80 -KPX Adieresis W -60 -KPX Adieresis Y -110 -KPX Adieresis Yacute -110 -KPX Adieresis Ydieresis -110 -KPX Adieresis u -30 -KPX Adieresis uacute -30 -KPX Adieresis ucircumflex -30 -KPX Adieresis udieresis -30 -KPX Adieresis ugrave -30 -KPX Adieresis uhungarumlaut -30 -KPX Adieresis umacron -30 -KPX Adieresis uogonek -30 -KPX Adieresis uring -30 -KPX Adieresis v -40 -KPX Adieresis w -30 -KPX Adieresis y -30 -KPX Adieresis yacute -30 -KPX Adieresis ydieresis -30 -KPX Agrave C -40 -KPX Agrave Cacute -40 -KPX Agrave Ccaron -40 -KPX Agrave Ccedilla -40 -KPX Agrave G -50 -KPX Agrave Gbreve -50 -KPX Agrave Gcommaaccent -50 -KPX Agrave O -40 -KPX Agrave Oacute -40 -KPX Agrave Ocircumflex -40 -KPX Agrave Odieresis -40 -KPX Agrave Ograve -40 -KPX Agrave Ohungarumlaut -40 -KPX Agrave Omacron -40 -KPX Agrave Oslash -40 -KPX Agrave Otilde -40 -KPX Agrave Q -40 -KPX Agrave T -90 -KPX Agrave Tcaron -90 -KPX Agrave Tcommaaccent -90 -KPX Agrave U -50 -KPX Agrave Uacute -50 -KPX Agrave Ucircumflex -50 -KPX Agrave Udieresis -50 -KPX Agrave Ugrave -50 -KPX Agrave Uhungarumlaut -50 -KPX Agrave Umacron -50 -KPX Agrave Uogonek -50 -KPX Agrave Uring -50 -KPX Agrave V -80 -KPX Agrave W -60 -KPX Agrave Y -110 -KPX Agrave Yacute -110 -KPX Agrave Ydieresis -110 -KPX Agrave u -30 -KPX Agrave uacute -30 -KPX Agrave ucircumflex -30 -KPX Agrave udieresis -30 -KPX Agrave ugrave -30 -KPX Agrave uhungarumlaut -30 -KPX Agrave umacron -30 -KPX Agrave uogonek -30 -KPX Agrave uring -30 -KPX Agrave v -40 -KPX Agrave w -30 -KPX Agrave y -30 -KPX Agrave yacute -30 -KPX Agrave ydieresis -30 -KPX Amacron C -40 -KPX Amacron Cacute -40 -KPX Amacron Ccaron -40 -KPX Amacron Ccedilla -40 -KPX Amacron G -50 -KPX Amacron Gbreve -50 -KPX Amacron Gcommaaccent -50 -KPX Amacron O -40 -KPX Amacron Oacute -40 -KPX Amacron Ocircumflex -40 -KPX Amacron Odieresis -40 -KPX Amacron Ograve -40 -KPX Amacron Ohungarumlaut -40 -KPX Amacron Omacron -40 -KPX Amacron Oslash -40 -KPX Amacron Otilde -40 -KPX Amacron Q -40 -KPX Amacron T -90 -KPX Amacron Tcaron -90 -KPX Amacron Tcommaaccent -90 -KPX Amacron U -50 -KPX Amacron Uacute -50 -KPX Amacron Ucircumflex -50 -KPX Amacron Udieresis -50 -KPX Amacron Ugrave -50 -KPX Amacron Uhungarumlaut -50 -KPX Amacron Umacron -50 -KPX Amacron Uogonek -50 -KPX Amacron Uring -50 -KPX Amacron V -80 -KPX Amacron W -60 -KPX Amacron Y -110 -KPX Amacron Yacute -110 -KPX Amacron Ydieresis -110 -KPX Amacron u -30 -KPX Amacron uacute -30 -KPX Amacron ucircumflex -30 -KPX Amacron udieresis -30 -KPX Amacron ugrave -30 -KPX Amacron uhungarumlaut -30 -KPX Amacron umacron -30 -KPX Amacron uogonek -30 -KPX Amacron uring -30 -KPX Amacron v -40 -KPX Amacron w -30 -KPX Amacron y -30 -KPX Amacron yacute -30 -KPX Amacron ydieresis -30 -KPX Aogonek C -40 -KPX Aogonek Cacute -40 -KPX Aogonek Ccaron -40 -KPX Aogonek Ccedilla -40 -KPX Aogonek G -50 -KPX Aogonek Gbreve -50 -KPX Aogonek Gcommaaccent -50 -KPX Aogonek O -40 -KPX Aogonek Oacute -40 -KPX Aogonek Ocircumflex -40 -KPX Aogonek Odieresis -40 -KPX Aogonek Ograve -40 -KPX Aogonek Ohungarumlaut -40 -KPX Aogonek Omacron -40 -KPX Aogonek Oslash -40 -KPX Aogonek Otilde -40 -KPX Aogonek Q -40 -KPX Aogonek T -90 -KPX Aogonek Tcaron -90 -KPX Aogonek Tcommaaccent -90 -KPX Aogonek U -50 -KPX Aogonek Uacute -50 -KPX Aogonek Ucircumflex -50 -KPX Aogonek Udieresis -50 -KPX Aogonek Ugrave -50 -KPX Aogonek Uhungarumlaut -50 -KPX Aogonek Umacron -50 -KPX Aogonek Uogonek -50 -KPX Aogonek Uring -50 -KPX Aogonek V -80 -KPX Aogonek W -60 -KPX Aogonek Y -110 -KPX Aogonek Yacute -110 -KPX Aogonek Ydieresis -110 -KPX Aogonek u -30 -KPX Aogonek uacute -30 -KPX Aogonek ucircumflex -30 -KPX Aogonek udieresis -30 -KPX Aogonek ugrave -30 -KPX Aogonek uhungarumlaut -30 -KPX Aogonek umacron -30 -KPX Aogonek uogonek -30 -KPX Aogonek uring -30 -KPX Aogonek v -40 -KPX Aogonek w -30 -KPX Aogonek y -30 -KPX Aogonek yacute -30 -KPX Aogonek ydieresis -30 -KPX Aring C -40 -KPX Aring Cacute -40 -KPX Aring Ccaron -40 -KPX Aring Ccedilla -40 -KPX Aring G -50 -KPX Aring Gbreve -50 -KPX Aring Gcommaaccent -50 -KPX Aring O -40 -KPX Aring Oacute -40 -KPX Aring Ocircumflex -40 -KPX Aring Odieresis -40 -KPX Aring Ograve -40 -KPX Aring Ohungarumlaut -40 -KPX Aring Omacron -40 -KPX Aring Oslash -40 -KPX Aring Otilde -40 -KPX Aring Q -40 -KPX Aring T -90 -KPX Aring Tcaron -90 -KPX Aring Tcommaaccent -90 -KPX Aring U -50 -KPX Aring Uacute -50 -KPX Aring Ucircumflex -50 -KPX Aring Udieresis -50 -KPX Aring Ugrave -50 -KPX Aring Uhungarumlaut -50 -KPX Aring Umacron -50 -KPX Aring Uogonek -50 -KPX Aring Uring -50 -KPX Aring V -80 -KPX Aring W -60 -KPX Aring Y -110 -KPX Aring Yacute -110 -KPX Aring Ydieresis -110 -KPX Aring u -30 -KPX Aring uacute -30 -KPX Aring ucircumflex -30 -KPX Aring udieresis -30 -KPX Aring ugrave -30 -KPX Aring uhungarumlaut -30 -KPX Aring umacron -30 -KPX Aring uogonek -30 -KPX Aring uring -30 -KPX Aring v -40 -KPX Aring w -30 -KPX Aring y -30 -KPX Aring yacute -30 -KPX Aring ydieresis -30 -KPX Atilde C -40 -KPX Atilde Cacute -40 -KPX Atilde Ccaron -40 -KPX Atilde Ccedilla -40 -KPX Atilde G -50 -KPX Atilde Gbreve -50 -KPX Atilde Gcommaaccent -50 -KPX Atilde O -40 -KPX Atilde Oacute -40 -KPX Atilde Ocircumflex -40 -KPX Atilde Odieresis -40 -KPX Atilde Ograve -40 -KPX Atilde Ohungarumlaut -40 -KPX Atilde Omacron -40 -KPX Atilde Oslash -40 -KPX Atilde Otilde -40 -KPX Atilde Q -40 -KPX Atilde T -90 -KPX Atilde Tcaron -90 -KPX Atilde Tcommaaccent -90 -KPX Atilde U -50 -KPX Atilde Uacute -50 -KPX Atilde Ucircumflex -50 -KPX Atilde Udieresis -50 -KPX Atilde Ugrave -50 -KPX Atilde Uhungarumlaut -50 -KPX Atilde Umacron -50 -KPX Atilde Uogonek -50 -KPX Atilde Uring -50 -KPX Atilde V -80 -KPX Atilde W -60 -KPX Atilde Y -110 -KPX Atilde Yacute -110 -KPX Atilde Ydieresis -110 -KPX Atilde u -30 -KPX Atilde uacute -30 -KPX Atilde ucircumflex -30 -KPX Atilde udieresis -30 -KPX Atilde ugrave -30 -KPX Atilde uhungarumlaut -30 -KPX Atilde umacron -30 -KPX Atilde uogonek -30 -KPX Atilde uring -30 -KPX Atilde v -40 -KPX Atilde w -30 -KPX Atilde y -30 -KPX Atilde yacute -30 -KPX Atilde ydieresis -30 -KPX B A -30 -KPX B Aacute -30 -KPX B Abreve -30 -KPX B Acircumflex -30 -KPX B Adieresis -30 -KPX B Agrave -30 -KPX B Amacron -30 -KPX B Aogonek -30 -KPX B Aring -30 -KPX B Atilde -30 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX D A -40 -KPX D Aacute -40 -KPX D Abreve -40 -KPX D Acircumflex -40 -KPX D Adieresis -40 -KPX D Agrave -40 -KPX D Amacron -40 -KPX D Aogonek -40 -KPX D Aring -40 -KPX D Atilde -40 -KPX D V -40 -KPX D W -40 -KPX D Y -70 -KPX D Yacute -70 -KPX D Ydieresis -70 -KPX D comma -30 -KPX D period -30 -KPX Dcaron A -40 -KPX Dcaron Aacute -40 -KPX Dcaron Abreve -40 -KPX Dcaron Acircumflex -40 -KPX Dcaron Adieresis -40 -KPX Dcaron Agrave -40 -KPX Dcaron Amacron -40 -KPX Dcaron Aogonek -40 -KPX Dcaron Aring -40 -KPX Dcaron Atilde -40 -KPX Dcaron V -40 -KPX Dcaron W -40 -KPX Dcaron Y -70 -KPX Dcaron Yacute -70 -KPX Dcaron Ydieresis -70 -KPX Dcaron comma -30 -KPX Dcaron period -30 -KPX Dcroat A -40 -KPX Dcroat Aacute -40 -KPX Dcroat Abreve -40 -KPX Dcroat Acircumflex -40 -KPX Dcroat Adieresis -40 -KPX Dcroat Agrave -40 -KPX Dcroat Amacron -40 -KPX Dcroat Aogonek -40 -KPX Dcroat Aring -40 -KPX Dcroat Atilde -40 -KPX Dcroat V -40 -KPX Dcroat W -40 -KPX Dcroat Y -70 -KPX Dcroat Yacute -70 -KPX Dcroat Ydieresis -70 -KPX Dcroat comma -30 -KPX Dcroat period -30 -KPX F A -80 -KPX F Aacute -80 -KPX F Abreve -80 -KPX F Acircumflex -80 -KPX F Adieresis -80 -KPX F Agrave -80 -KPX F Amacron -80 -KPX F Aogonek -80 -KPX F Aring -80 -KPX F Atilde -80 -KPX F a -20 -KPX F aacute -20 -KPX F abreve -20 -KPX F acircumflex -20 -KPX F adieresis -20 -KPX F agrave -20 -KPX F amacron -20 -KPX F aogonek -20 -KPX F aring -20 -KPX F atilde -20 -KPX F comma -100 -KPX F period -100 -KPX J A -20 -KPX J Aacute -20 -KPX J Abreve -20 -KPX J Acircumflex -20 -KPX J Adieresis -20 -KPX J Agrave -20 -KPX J Amacron -20 -KPX J Aogonek -20 -KPX J Aring -20 -KPX J Atilde -20 -KPX J comma -20 -KPX J period -20 -KPX J u -20 -KPX J uacute -20 -KPX J ucircumflex -20 -KPX J udieresis -20 -KPX J ugrave -20 -KPX J uhungarumlaut -20 -KPX J umacron -20 -KPX J uogonek -20 -KPX J uring -20 -KPX K O -30 -KPX K Oacute -30 -KPX K Ocircumflex -30 -KPX K Odieresis -30 -KPX K Ograve -30 -KPX K Ohungarumlaut -30 -KPX K Omacron -30 -KPX K Oslash -30 -KPX K Otilde -30 -KPX K e -15 -KPX K eacute -15 -KPX K ecaron -15 -KPX K ecircumflex -15 -KPX K edieresis -15 -KPX K edotaccent -15 -KPX K egrave -15 -KPX K emacron -15 -KPX K eogonek -15 -KPX K o -35 -KPX K oacute -35 -KPX K ocircumflex -35 -KPX K odieresis -35 -KPX K ograve -35 -KPX K ohungarumlaut -35 -KPX K omacron -35 -KPX K oslash -35 -KPX K otilde -35 -KPX K u -30 -KPX K uacute -30 -KPX K ucircumflex -30 -KPX K udieresis -30 -KPX K ugrave -30 -KPX K uhungarumlaut -30 -KPX K umacron -30 -KPX K uogonek -30 -KPX K uring -30 -KPX K y -40 -KPX K yacute -40 -KPX K ydieresis -40 -KPX Kcommaaccent O -30 -KPX Kcommaaccent Oacute -30 -KPX Kcommaaccent Ocircumflex -30 -KPX Kcommaaccent Odieresis -30 -KPX Kcommaaccent Ograve -30 -KPX Kcommaaccent Ohungarumlaut -30 -KPX Kcommaaccent Omacron -30 -KPX Kcommaaccent Oslash -30 -KPX Kcommaaccent Otilde -30 -KPX Kcommaaccent e -15 -KPX Kcommaaccent eacute -15 -KPX Kcommaaccent ecaron -15 -KPX Kcommaaccent ecircumflex -15 -KPX Kcommaaccent edieresis -15 -KPX Kcommaaccent edotaccent -15 -KPX Kcommaaccent egrave -15 -KPX Kcommaaccent emacron -15 -KPX Kcommaaccent eogonek -15 -KPX Kcommaaccent o -35 -KPX Kcommaaccent oacute -35 -KPX Kcommaaccent ocircumflex -35 -KPX Kcommaaccent odieresis -35 -KPX Kcommaaccent ograve -35 -KPX Kcommaaccent ohungarumlaut -35 -KPX Kcommaaccent omacron -35 -KPX Kcommaaccent oslash -35 -KPX Kcommaaccent otilde -35 -KPX Kcommaaccent u -30 -KPX Kcommaaccent uacute -30 -KPX Kcommaaccent ucircumflex -30 -KPX Kcommaaccent udieresis -30 -KPX Kcommaaccent ugrave -30 -KPX Kcommaaccent uhungarumlaut -30 -KPX Kcommaaccent umacron -30 -KPX Kcommaaccent uogonek -30 -KPX Kcommaaccent uring -30 -KPX Kcommaaccent y -40 -KPX Kcommaaccent yacute -40 -KPX Kcommaaccent ydieresis -40 -KPX L T -90 -KPX L Tcaron -90 -KPX L Tcommaaccent -90 -KPX L V -110 -KPX L W -80 -KPX L Y -120 -KPX L Yacute -120 -KPX L Ydieresis -120 -KPX L quotedblright -140 -KPX L quoteright -140 -KPX L y -30 -KPX L yacute -30 -KPX L ydieresis -30 -KPX Lacute T -90 -KPX Lacute Tcaron -90 -KPX Lacute Tcommaaccent -90 -KPX Lacute V -110 -KPX Lacute W -80 -KPX Lacute Y -120 -KPX Lacute Yacute -120 -KPX Lacute Ydieresis -120 -KPX Lacute quotedblright -140 -KPX Lacute quoteright -140 -KPX Lacute y -30 -KPX Lacute yacute -30 -KPX Lacute ydieresis -30 -KPX Lcommaaccent T -90 -KPX Lcommaaccent Tcaron -90 -KPX Lcommaaccent Tcommaaccent -90 -KPX Lcommaaccent V -110 -KPX Lcommaaccent W -80 -KPX Lcommaaccent Y -120 -KPX Lcommaaccent Yacute -120 -KPX Lcommaaccent Ydieresis -120 -KPX Lcommaaccent quotedblright -140 -KPX Lcommaaccent quoteright -140 -KPX Lcommaaccent y -30 -KPX Lcommaaccent yacute -30 -KPX Lcommaaccent ydieresis -30 -KPX Lslash T -90 -KPX Lslash Tcaron -90 -KPX Lslash Tcommaaccent -90 -KPX Lslash V -110 -KPX Lslash W -80 -KPX Lslash Y -120 -KPX Lslash Yacute -120 -KPX Lslash Ydieresis -120 -KPX Lslash quotedblright -140 -KPX Lslash quoteright -140 -KPX Lslash y -30 -KPX Lslash yacute -30 -KPX Lslash ydieresis -30 -KPX O A -50 -KPX O Aacute -50 -KPX O Abreve -50 -KPX O Acircumflex -50 -KPX O Adieresis -50 -KPX O Agrave -50 -KPX O Amacron -50 -KPX O Aogonek -50 -KPX O Aring -50 -KPX O Atilde -50 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -50 -KPX O X -50 -KPX O Y -70 -KPX O Yacute -70 -KPX O Ydieresis -70 -KPX O comma -40 -KPX O period -40 -KPX Oacute A -50 -KPX Oacute Aacute -50 -KPX Oacute Abreve -50 -KPX Oacute Acircumflex -50 -KPX Oacute Adieresis -50 -KPX Oacute Agrave -50 -KPX Oacute Amacron -50 -KPX Oacute Aogonek -50 -KPX Oacute Aring -50 -KPX Oacute Atilde -50 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -50 -KPX Oacute X -50 -KPX Oacute Y -70 -KPX Oacute Yacute -70 -KPX Oacute Ydieresis -70 -KPX Oacute comma -40 -KPX Oacute period -40 -KPX Ocircumflex A -50 -KPX Ocircumflex Aacute -50 -KPX Ocircumflex Abreve -50 -KPX Ocircumflex Acircumflex -50 -KPX Ocircumflex Adieresis -50 -KPX Ocircumflex Agrave -50 -KPX Ocircumflex Amacron -50 -KPX Ocircumflex Aogonek -50 -KPX Ocircumflex Aring -50 -KPX Ocircumflex Atilde -50 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -50 -KPX Ocircumflex X -50 -KPX Ocircumflex Y -70 -KPX Ocircumflex Yacute -70 -KPX Ocircumflex Ydieresis -70 -KPX Ocircumflex comma -40 -KPX Ocircumflex period -40 -KPX Odieresis A -50 -KPX Odieresis Aacute -50 -KPX Odieresis Abreve -50 -KPX Odieresis Acircumflex -50 -KPX Odieresis Adieresis -50 -KPX Odieresis Agrave -50 -KPX Odieresis Amacron -50 -KPX Odieresis Aogonek -50 -KPX Odieresis Aring -50 -KPX Odieresis Atilde -50 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -50 -KPX Odieresis X -50 -KPX Odieresis Y -70 -KPX Odieresis Yacute -70 -KPX Odieresis Ydieresis -70 -KPX Odieresis comma -40 -KPX Odieresis period -40 -KPX Ograve A -50 -KPX Ograve Aacute -50 -KPX Ograve Abreve -50 -KPX Ograve Acircumflex -50 -KPX Ograve Adieresis -50 -KPX Ograve Agrave -50 -KPX Ograve Amacron -50 -KPX Ograve Aogonek -50 -KPX Ograve Aring -50 -KPX Ograve Atilde -50 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -50 -KPX Ograve X -50 -KPX Ograve Y -70 -KPX Ograve Yacute -70 -KPX Ograve Ydieresis -70 -KPX Ograve comma -40 -KPX Ograve period -40 -KPX Ohungarumlaut A -50 -KPX Ohungarumlaut Aacute -50 -KPX Ohungarumlaut Abreve -50 -KPX Ohungarumlaut Acircumflex -50 -KPX Ohungarumlaut Adieresis -50 -KPX Ohungarumlaut Agrave -50 -KPX Ohungarumlaut Amacron -50 -KPX Ohungarumlaut Aogonek -50 -KPX Ohungarumlaut Aring -50 -KPX Ohungarumlaut Atilde -50 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -50 -KPX Ohungarumlaut X -50 -KPX Ohungarumlaut Y -70 -KPX Ohungarumlaut Yacute -70 -KPX Ohungarumlaut Ydieresis -70 -KPX Ohungarumlaut comma -40 -KPX Ohungarumlaut period -40 -KPX Omacron A -50 -KPX Omacron Aacute -50 -KPX Omacron Abreve -50 -KPX Omacron Acircumflex -50 -KPX Omacron Adieresis -50 -KPX Omacron Agrave -50 -KPX Omacron Amacron -50 -KPX Omacron Aogonek -50 -KPX Omacron Aring -50 -KPX Omacron Atilde -50 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -50 -KPX Omacron X -50 -KPX Omacron Y -70 -KPX Omacron Yacute -70 -KPX Omacron Ydieresis -70 -KPX Omacron comma -40 -KPX Omacron period -40 -KPX Oslash A -50 -KPX Oslash Aacute -50 -KPX Oslash Abreve -50 -KPX Oslash Acircumflex -50 -KPX Oslash Adieresis -50 -KPX Oslash Agrave -50 -KPX Oslash Amacron -50 -KPX Oslash Aogonek -50 -KPX Oslash Aring -50 -KPX Oslash Atilde -50 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -50 -KPX Oslash X -50 -KPX Oslash Y -70 -KPX Oslash Yacute -70 -KPX Oslash Ydieresis -70 -KPX Oslash comma -40 -KPX Oslash period -40 -KPX Otilde A -50 -KPX Otilde Aacute -50 -KPX Otilde Abreve -50 -KPX Otilde Acircumflex -50 -KPX Otilde Adieresis -50 -KPX Otilde Agrave -50 -KPX Otilde Amacron -50 -KPX Otilde Aogonek -50 -KPX Otilde Aring -50 -KPX Otilde Atilde -50 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -50 -KPX Otilde X -50 -KPX Otilde Y -70 -KPX Otilde Yacute -70 -KPX Otilde Ydieresis -70 -KPX Otilde comma -40 -KPX Otilde period -40 -KPX P A -100 -KPX P Aacute -100 -KPX P Abreve -100 -KPX P Acircumflex -100 -KPX P Adieresis -100 -KPX P Agrave -100 -KPX P Amacron -100 -KPX P Aogonek -100 -KPX P Aring -100 -KPX P Atilde -100 -KPX P a -30 -KPX P aacute -30 -KPX P abreve -30 -KPX P acircumflex -30 -KPX P adieresis -30 -KPX P agrave -30 -KPX P amacron -30 -KPX P aogonek -30 -KPX P aring -30 -KPX P atilde -30 -KPX P comma -120 -KPX P e -30 -KPX P eacute -30 -KPX P ecaron -30 -KPX P ecircumflex -30 -KPX P edieresis -30 -KPX P edotaccent -30 -KPX P egrave -30 -KPX P emacron -30 -KPX P eogonek -30 -KPX P o -40 -KPX P oacute -40 -KPX P ocircumflex -40 -KPX P odieresis -40 -KPX P ograve -40 -KPX P ohungarumlaut -40 -KPX P omacron -40 -KPX P oslash -40 -KPX P otilde -40 -KPX P period -120 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX Q comma 20 -KPX Q period 20 -KPX R O -20 -KPX R Oacute -20 -KPX R Ocircumflex -20 -KPX R Odieresis -20 -KPX R Ograve -20 -KPX R Ohungarumlaut -20 -KPX R Omacron -20 -KPX R Oslash -20 -KPX R Otilde -20 -KPX R T -20 -KPX R Tcaron -20 -KPX R Tcommaaccent -20 -KPX R U -20 -KPX R Uacute -20 -KPX R Ucircumflex -20 -KPX R Udieresis -20 -KPX R Ugrave -20 -KPX R Uhungarumlaut -20 -KPX R Umacron -20 -KPX R Uogonek -20 -KPX R Uring -20 -KPX R V -50 -KPX R W -40 -KPX R Y -50 -KPX R Yacute -50 -KPX R Ydieresis -50 -KPX Racute O -20 -KPX Racute Oacute -20 -KPX Racute Ocircumflex -20 -KPX Racute Odieresis -20 -KPX Racute Ograve -20 -KPX Racute Ohungarumlaut -20 -KPX Racute Omacron -20 -KPX Racute Oslash -20 -KPX Racute Otilde -20 -KPX Racute T -20 -KPX Racute Tcaron -20 -KPX Racute Tcommaaccent -20 -KPX Racute U -20 -KPX Racute Uacute -20 -KPX Racute Ucircumflex -20 -KPX Racute Udieresis -20 -KPX Racute Ugrave -20 -KPX Racute Uhungarumlaut -20 -KPX Racute Umacron -20 -KPX Racute Uogonek -20 -KPX Racute Uring -20 -KPX Racute V -50 -KPX Racute W -40 -KPX Racute Y -50 -KPX Racute Yacute -50 -KPX Racute Ydieresis -50 -KPX Rcaron O -20 -KPX Rcaron Oacute -20 -KPX Rcaron Ocircumflex -20 -KPX Rcaron Odieresis -20 -KPX Rcaron Ograve -20 -KPX Rcaron Ohungarumlaut -20 -KPX Rcaron Omacron -20 -KPX Rcaron Oslash -20 -KPX Rcaron Otilde -20 -KPX Rcaron T -20 -KPX Rcaron Tcaron -20 -KPX Rcaron Tcommaaccent -20 -KPX Rcaron U -20 -KPX Rcaron Uacute -20 -KPX Rcaron Ucircumflex -20 -KPX Rcaron Udieresis -20 -KPX Rcaron Ugrave -20 -KPX Rcaron Uhungarumlaut -20 -KPX Rcaron Umacron -20 -KPX Rcaron Uogonek -20 -KPX Rcaron Uring -20 -KPX Rcaron V -50 -KPX Rcaron W -40 -KPX Rcaron Y -50 -KPX Rcaron Yacute -50 -KPX Rcaron Ydieresis -50 -KPX Rcommaaccent O -20 -KPX Rcommaaccent Oacute -20 -KPX Rcommaaccent Ocircumflex -20 -KPX Rcommaaccent Odieresis -20 -KPX Rcommaaccent Ograve -20 -KPX Rcommaaccent Ohungarumlaut -20 -KPX Rcommaaccent Omacron -20 -KPX Rcommaaccent Oslash -20 -KPX Rcommaaccent Otilde -20 -KPX Rcommaaccent T -20 -KPX Rcommaaccent Tcaron -20 -KPX Rcommaaccent Tcommaaccent -20 -KPX Rcommaaccent U -20 -KPX Rcommaaccent Uacute -20 -KPX Rcommaaccent Ucircumflex -20 -KPX Rcommaaccent Udieresis -20 -KPX Rcommaaccent Ugrave -20 -KPX Rcommaaccent Uhungarumlaut -20 -KPX Rcommaaccent Umacron -20 -KPX Rcommaaccent Uogonek -20 -KPX Rcommaaccent Uring -20 -KPX Rcommaaccent V -50 -KPX Rcommaaccent W -40 -KPX Rcommaaccent Y -50 -KPX Rcommaaccent Yacute -50 -KPX Rcommaaccent Ydieresis -50 -KPX T A -90 -KPX T Aacute -90 -KPX T Abreve -90 -KPX T Acircumflex -90 -KPX T Adieresis -90 -KPX T Agrave -90 -KPX T Amacron -90 -KPX T Aogonek -90 -KPX T Aring -90 -KPX T Atilde -90 -KPX T O -40 -KPX T Oacute -40 -KPX T Ocircumflex -40 -KPX T Odieresis -40 -KPX T Ograve -40 -KPX T Ohungarumlaut -40 -KPX T Omacron -40 -KPX T Oslash -40 -KPX T Otilde -40 -KPX T a -80 -KPX T aacute -80 -KPX T abreve -80 -KPX T acircumflex -80 -KPX T adieresis -80 -KPX T agrave -80 -KPX T amacron -80 -KPX T aogonek -80 -KPX T aring -80 -KPX T atilde -80 -KPX T colon -40 -KPX T comma -80 -KPX T e -60 -KPX T eacute -60 -KPX T ecaron -60 -KPX T ecircumflex -60 -KPX T edieresis -60 -KPX T edotaccent -60 -KPX T egrave -60 -KPX T emacron -60 -KPX T eogonek -60 -KPX T hyphen -120 -KPX T o -80 -KPX T oacute -80 -KPX T ocircumflex -80 -KPX T odieresis -80 -KPX T ograve -80 -KPX T ohungarumlaut -80 -KPX T omacron -80 -KPX T oslash -80 -KPX T otilde -80 -KPX T period -80 -KPX T r -80 -KPX T racute -80 -KPX T rcommaaccent -80 -KPX T semicolon -40 -KPX T u -90 -KPX T uacute -90 -KPX T ucircumflex -90 -KPX T udieresis -90 -KPX T ugrave -90 -KPX T uhungarumlaut -90 -KPX T umacron -90 -KPX T uogonek -90 -KPX T uring -90 -KPX T w -60 -KPX T y -60 -KPX T yacute -60 -KPX T ydieresis -60 -KPX Tcaron A -90 -KPX Tcaron Aacute -90 -KPX Tcaron Abreve -90 -KPX Tcaron Acircumflex -90 -KPX Tcaron Adieresis -90 -KPX Tcaron Agrave -90 -KPX Tcaron Amacron -90 -KPX Tcaron Aogonek -90 -KPX Tcaron Aring -90 -KPX Tcaron Atilde -90 -KPX Tcaron O -40 -KPX Tcaron Oacute -40 -KPX Tcaron Ocircumflex -40 -KPX Tcaron Odieresis -40 -KPX Tcaron Ograve -40 -KPX Tcaron Ohungarumlaut -40 -KPX Tcaron Omacron -40 -KPX Tcaron Oslash -40 -KPX Tcaron Otilde -40 -KPX Tcaron a -80 -KPX Tcaron aacute -80 -KPX Tcaron abreve -80 -KPX Tcaron acircumflex -80 -KPX Tcaron adieresis -80 -KPX Tcaron agrave -80 -KPX Tcaron amacron -80 -KPX Tcaron aogonek -80 -KPX Tcaron aring -80 -KPX Tcaron atilde -80 -KPX Tcaron colon -40 -KPX Tcaron comma -80 -KPX Tcaron e -60 -KPX Tcaron eacute -60 -KPX Tcaron ecaron -60 -KPX Tcaron ecircumflex -60 -KPX Tcaron edieresis -60 -KPX Tcaron edotaccent -60 -KPX Tcaron egrave -60 -KPX Tcaron emacron -60 -KPX Tcaron eogonek -60 -KPX Tcaron hyphen -120 -KPX Tcaron o -80 -KPX Tcaron oacute -80 -KPX Tcaron ocircumflex -80 -KPX Tcaron odieresis -80 -KPX Tcaron ograve -80 -KPX Tcaron ohungarumlaut -80 -KPX Tcaron omacron -80 -KPX Tcaron oslash -80 -KPX Tcaron otilde -80 -KPX Tcaron period -80 -KPX Tcaron r -80 -KPX Tcaron racute -80 -KPX Tcaron rcommaaccent -80 -KPX Tcaron semicolon -40 -KPX Tcaron u -90 -KPX Tcaron uacute -90 -KPX Tcaron ucircumflex -90 -KPX Tcaron udieresis -90 -KPX Tcaron ugrave -90 -KPX Tcaron uhungarumlaut -90 -KPX Tcaron umacron -90 -KPX Tcaron uogonek -90 -KPX Tcaron uring -90 -KPX Tcaron w -60 -KPX Tcaron y -60 -KPX Tcaron yacute -60 -KPX Tcaron ydieresis -60 -KPX Tcommaaccent A -90 -KPX Tcommaaccent Aacute -90 -KPX Tcommaaccent Abreve -90 -KPX Tcommaaccent Acircumflex -90 -KPX Tcommaaccent Adieresis -90 -KPX Tcommaaccent Agrave -90 -KPX Tcommaaccent Amacron -90 -KPX Tcommaaccent Aogonek -90 -KPX Tcommaaccent Aring -90 -KPX Tcommaaccent Atilde -90 -KPX Tcommaaccent O -40 -KPX Tcommaaccent Oacute -40 -KPX Tcommaaccent Ocircumflex -40 -KPX Tcommaaccent Odieresis -40 -KPX Tcommaaccent Ograve -40 -KPX Tcommaaccent Ohungarumlaut -40 -KPX Tcommaaccent Omacron -40 -KPX Tcommaaccent Oslash -40 -KPX Tcommaaccent Otilde -40 -KPX Tcommaaccent a -80 -KPX Tcommaaccent aacute -80 -KPX Tcommaaccent abreve -80 -KPX Tcommaaccent acircumflex -80 -KPX Tcommaaccent adieresis -80 -KPX Tcommaaccent agrave -80 -KPX Tcommaaccent amacron -80 -KPX Tcommaaccent aogonek -80 -KPX Tcommaaccent aring -80 -KPX Tcommaaccent atilde -80 -KPX Tcommaaccent colon -40 -KPX Tcommaaccent comma -80 -KPX Tcommaaccent e -60 -KPX Tcommaaccent eacute -60 -KPX Tcommaaccent ecaron -60 -KPX Tcommaaccent ecircumflex -60 -KPX Tcommaaccent edieresis -60 -KPX Tcommaaccent edotaccent -60 -KPX Tcommaaccent egrave -60 -KPX Tcommaaccent emacron -60 -KPX Tcommaaccent eogonek -60 -KPX Tcommaaccent hyphen -120 -KPX Tcommaaccent o -80 -KPX Tcommaaccent oacute -80 -KPX Tcommaaccent ocircumflex -80 -KPX Tcommaaccent odieresis -80 -KPX Tcommaaccent ograve -80 -KPX Tcommaaccent ohungarumlaut -80 -KPX Tcommaaccent omacron -80 -KPX Tcommaaccent oslash -80 -KPX Tcommaaccent otilde -80 -KPX Tcommaaccent period -80 -KPX Tcommaaccent r -80 -KPX Tcommaaccent racute -80 -KPX Tcommaaccent rcommaaccent -80 -KPX Tcommaaccent semicolon -40 -KPX Tcommaaccent u -90 -KPX Tcommaaccent uacute -90 -KPX Tcommaaccent ucircumflex -90 -KPX Tcommaaccent udieresis -90 -KPX Tcommaaccent ugrave -90 -KPX Tcommaaccent uhungarumlaut -90 -KPX Tcommaaccent umacron -90 -KPX Tcommaaccent uogonek -90 -KPX Tcommaaccent uring -90 -KPX Tcommaaccent w -60 -KPX Tcommaaccent y -60 -KPX Tcommaaccent yacute -60 -KPX Tcommaaccent ydieresis -60 -KPX U A -50 -KPX U Aacute -50 -KPX U Abreve -50 -KPX U Acircumflex -50 -KPX U Adieresis -50 -KPX U Agrave -50 -KPX U Amacron -50 -KPX U Aogonek -50 -KPX U Aring -50 -KPX U Atilde -50 -KPX U comma -30 -KPX U period -30 -KPX Uacute A -50 -KPX Uacute Aacute -50 -KPX Uacute Abreve -50 -KPX Uacute Acircumflex -50 -KPX Uacute Adieresis -50 -KPX Uacute Agrave -50 -KPX Uacute Amacron -50 -KPX Uacute Aogonek -50 -KPX Uacute Aring -50 -KPX Uacute Atilde -50 -KPX Uacute comma -30 -KPX Uacute period -30 -KPX Ucircumflex A -50 -KPX Ucircumflex Aacute -50 -KPX Ucircumflex Abreve -50 -KPX Ucircumflex Acircumflex -50 -KPX Ucircumflex Adieresis -50 -KPX Ucircumflex Agrave -50 -KPX Ucircumflex Amacron -50 -KPX Ucircumflex Aogonek -50 -KPX Ucircumflex Aring -50 -KPX Ucircumflex Atilde -50 -KPX Ucircumflex comma -30 -KPX Ucircumflex period -30 -KPX Udieresis A -50 -KPX Udieresis Aacute -50 -KPX Udieresis Abreve -50 -KPX Udieresis Acircumflex -50 -KPX Udieresis Adieresis -50 -KPX Udieresis Agrave -50 -KPX Udieresis Amacron -50 -KPX Udieresis Aogonek -50 -KPX Udieresis Aring -50 -KPX Udieresis Atilde -50 -KPX Udieresis comma -30 -KPX Udieresis period -30 -KPX Ugrave A -50 -KPX Ugrave Aacute -50 -KPX Ugrave Abreve -50 -KPX Ugrave Acircumflex -50 -KPX Ugrave Adieresis -50 -KPX Ugrave Agrave -50 -KPX Ugrave Amacron -50 -KPX Ugrave Aogonek -50 -KPX Ugrave Aring -50 -KPX Ugrave Atilde -50 -KPX Ugrave comma -30 -KPX Ugrave period -30 -KPX Uhungarumlaut A -50 -KPX Uhungarumlaut Aacute -50 -KPX Uhungarumlaut Abreve -50 -KPX Uhungarumlaut Acircumflex -50 -KPX Uhungarumlaut Adieresis -50 -KPX Uhungarumlaut Agrave -50 -KPX Uhungarumlaut Amacron -50 -KPX Uhungarumlaut Aogonek -50 -KPX Uhungarumlaut Aring -50 -KPX Uhungarumlaut Atilde -50 -KPX Uhungarumlaut comma -30 -KPX Uhungarumlaut period -30 -KPX Umacron A -50 -KPX Umacron Aacute -50 -KPX Umacron Abreve -50 -KPX Umacron Acircumflex -50 -KPX Umacron Adieresis -50 -KPX Umacron Agrave -50 -KPX Umacron Amacron -50 -KPX Umacron Aogonek -50 -KPX Umacron Aring -50 -KPX Umacron Atilde -50 -KPX Umacron comma -30 -KPX Umacron period -30 -KPX Uogonek A -50 -KPX Uogonek Aacute -50 -KPX Uogonek Abreve -50 -KPX Uogonek Acircumflex -50 -KPX Uogonek Adieresis -50 -KPX Uogonek Agrave -50 -KPX Uogonek Amacron -50 -KPX Uogonek Aogonek -50 -KPX Uogonek Aring -50 -KPX Uogonek Atilde -50 -KPX Uogonek comma -30 -KPX Uogonek period -30 -KPX Uring A -50 -KPX Uring Aacute -50 -KPX Uring Abreve -50 -KPX Uring Acircumflex -50 -KPX Uring Adieresis -50 -KPX Uring Agrave -50 -KPX Uring Amacron -50 -KPX Uring Aogonek -50 -KPX Uring Aring -50 -KPX Uring Atilde -50 -KPX Uring comma -30 -KPX Uring period -30 -KPX V A -80 -KPX V Aacute -80 -KPX V Abreve -80 -KPX V Acircumflex -80 -KPX V Adieresis -80 -KPX V Agrave -80 -KPX V Amacron -80 -KPX V Aogonek -80 -KPX V Aring -80 -KPX V Atilde -80 -KPX V G -50 -KPX V Gbreve -50 -KPX V Gcommaaccent -50 -KPX V O -50 -KPX V Oacute -50 -KPX V Ocircumflex -50 -KPX V Odieresis -50 -KPX V Ograve -50 -KPX V Ohungarumlaut -50 -KPX V Omacron -50 -KPX V Oslash -50 -KPX V Otilde -50 -KPX V a -60 -KPX V aacute -60 -KPX V abreve -60 -KPX V acircumflex -60 -KPX V adieresis -60 -KPX V agrave -60 -KPX V amacron -60 -KPX V aogonek -60 -KPX V aring -60 -KPX V atilde -60 -KPX V colon -40 -KPX V comma -120 -KPX V e -50 -KPX V eacute -50 -KPX V ecaron -50 -KPX V ecircumflex -50 -KPX V edieresis -50 -KPX V edotaccent -50 -KPX V egrave -50 -KPX V emacron -50 -KPX V eogonek -50 -KPX V hyphen -80 -KPX V o -90 -KPX V oacute -90 -KPX V ocircumflex -90 -KPX V odieresis -90 -KPX V ograve -90 -KPX V ohungarumlaut -90 -KPX V omacron -90 -KPX V oslash -90 -KPX V otilde -90 -KPX V period -120 -KPX V semicolon -40 -KPX V u -60 -KPX V uacute -60 -KPX V ucircumflex -60 -KPX V udieresis -60 -KPX V ugrave -60 -KPX V uhungarumlaut -60 -KPX V umacron -60 -KPX V uogonek -60 -KPX V uring -60 -KPX W A -60 -KPX W Aacute -60 -KPX W Abreve -60 -KPX W Acircumflex -60 -KPX W Adieresis -60 -KPX W Agrave -60 -KPX W Amacron -60 -KPX W Aogonek -60 -KPX W Aring -60 -KPX W Atilde -60 -KPX W O -20 -KPX W Oacute -20 -KPX W Ocircumflex -20 -KPX W Odieresis -20 -KPX W Ograve -20 -KPX W Ohungarumlaut -20 -KPX W Omacron -20 -KPX W Oslash -20 -KPX W Otilde -20 -KPX W a -40 -KPX W aacute -40 -KPX W abreve -40 -KPX W acircumflex -40 -KPX W adieresis -40 -KPX W agrave -40 -KPX W amacron -40 -KPX W aogonek -40 -KPX W aring -40 -KPX W atilde -40 -KPX W colon -10 -KPX W comma -80 -KPX W e -35 -KPX W eacute -35 -KPX W ecaron -35 -KPX W ecircumflex -35 -KPX W edieresis -35 -KPX W edotaccent -35 -KPX W egrave -35 -KPX W emacron -35 -KPX W eogonek -35 -KPX W hyphen -40 -KPX W o -60 -KPX W oacute -60 -KPX W ocircumflex -60 -KPX W odieresis -60 -KPX W ograve -60 -KPX W ohungarumlaut -60 -KPX W omacron -60 -KPX W oslash -60 -KPX W otilde -60 -KPX W period -80 -KPX W semicolon -10 -KPX W u -45 -KPX W uacute -45 -KPX W ucircumflex -45 -KPX W udieresis -45 -KPX W ugrave -45 -KPX W uhungarumlaut -45 -KPX W umacron -45 -KPX W uogonek -45 -KPX W uring -45 -KPX W y -20 -KPX W yacute -20 -KPX W ydieresis -20 -KPX Y A -110 -KPX Y Aacute -110 -KPX Y Abreve -110 -KPX Y Acircumflex -110 -KPX Y Adieresis -110 -KPX Y Agrave -110 -KPX Y Amacron -110 -KPX Y Aogonek -110 -KPX Y Aring -110 -KPX Y Atilde -110 -KPX Y O -70 -KPX Y Oacute -70 -KPX Y Ocircumflex -70 -KPX Y Odieresis -70 -KPX Y Ograve -70 -KPX Y Ohungarumlaut -70 -KPX Y Omacron -70 -KPX Y Oslash -70 -KPX Y Otilde -70 -KPX Y a -90 -KPX Y aacute -90 -KPX Y abreve -90 -KPX Y acircumflex -90 -KPX Y adieresis -90 -KPX Y agrave -90 -KPX Y amacron -90 -KPX Y aogonek -90 -KPX Y aring -90 -KPX Y atilde -90 -KPX Y colon -50 -KPX Y comma -100 -KPX Y e -80 -KPX Y eacute -80 -KPX Y ecaron -80 -KPX Y ecircumflex -80 -KPX Y edieresis -80 -KPX Y edotaccent -80 -KPX Y egrave -80 -KPX Y emacron -80 -KPX Y eogonek -80 -KPX Y o -100 -KPX Y oacute -100 -KPX Y ocircumflex -100 -KPX Y odieresis -100 -KPX Y ograve -100 -KPX Y ohungarumlaut -100 -KPX Y omacron -100 -KPX Y oslash -100 -KPX Y otilde -100 -KPX Y period -100 -KPX Y semicolon -50 -KPX Y u -100 -KPX Y uacute -100 -KPX Y ucircumflex -100 -KPX Y udieresis -100 -KPX Y ugrave -100 -KPX Y uhungarumlaut -100 -KPX Y umacron -100 -KPX Y uogonek -100 -KPX Y uring -100 -KPX Yacute A -110 -KPX Yacute Aacute -110 -KPX Yacute Abreve -110 -KPX Yacute Acircumflex -110 -KPX Yacute Adieresis -110 -KPX Yacute Agrave -110 -KPX Yacute Amacron -110 -KPX Yacute Aogonek -110 -KPX Yacute Aring -110 -KPX Yacute Atilde -110 -KPX Yacute O -70 -KPX Yacute Oacute -70 -KPX Yacute Ocircumflex -70 -KPX Yacute Odieresis -70 -KPX Yacute Ograve -70 -KPX Yacute Ohungarumlaut -70 -KPX Yacute Omacron -70 -KPX Yacute Oslash -70 -KPX Yacute Otilde -70 -KPX Yacute a -90 -KPX Yacute aacute -90 -KPX Yacute abreve -90 -KPX Yacute acircumflex -90 -KPX Yacute adieresis -90 -KPX Yacute agrave -90 -KPX Yacute amacron -90 -KPX Yacute aogonek -90 -KPX Yacute aring -90 -KPX Yacute atilde -90 -KPX Yacute colon -50 -KPX Yacute comma -100 -KPX Yacute e -80 -KPX Yacute eacute -80 -KPX Yacute ecaron -80 -KPX Yacute ecircumflex -80 -KPX Yacute edieresis -80 -KPX Yacute edotaccent -80 -KPX Yacute egrave -80 -KPX Yacute emacron -80 -KPX Yacute eogonek -80 -KPX Yacute o -100 -KPX Yacute oacute -100 -KPX Yacute ocircumflex -100 -KPX Yacute odieresis -100 -KPX Yacute ograve -100 -KPX Yacute ohungarumlaut -100 -KPX Yacute omacron -100 -KPX Yacute oslash -100 -KPX Yacute otilde -100 -KPX Yacute period -100 -KPX Yacute semicolon -50 -KPX Yacute u -100 -KPX Yacute uacute -100 -KPX Yacute ucircumflex -100 -KPX Yacute udieresis -100 -KPX Yacute ugrave -100 -KPX Yacute uhungarumlaut -100 -KPX Yacute umacron -100 -KPX Yacute uogonek -100 -KPX Yacute uring -100 -KPX Ydieresis A -110 -KPX Ydieresis Aacute -110 -KPX Ydieresis Abreve -110 -KPX Ydieresis Acircumflex -110 -KPX Ydieresis Adieresis -110 -KPX Ydieresis Agrave -110 -KPX Ydieresis Amacron -110 -KPX Ydieresis Aogonek -110 -KPX Ydieresis Aring -110 -KPX Ydieresis Atilde -110 -KPX Ydieresis O -70 -KPX Ydieresis Oacute -70 -KPX Ydieresis Ocircumflex -70 -KPX Ydieresis Odieresis -70 -KPX Ydieresis Ograve -70 -KPX Ydieresis Ohungarumlaut -70 -KPX Ydieresis Omacron -70 -KPX Ydieresis Oslash -70 -KPX Ydieresis Otilde -70 -KPX Ydieresis a -90 -KPX Ydieresis aacute -90 -KPX Ydieresis abreve -90 -KPX Ydieresis acircumflex -90 -KPX Ydieresis adieresis -90 -KPX Ydieresis agrave -90 -KPX Ydieresis amacron -90 -KPX Ydieresis aogonek -90 -KPX Ydieresis aring -90 -KPX Ydieresis atilde -90 -KPX Ydieresis colon -50 -KPX Ydieresis comma -100 -KPX Ydieresis e -80 -KPX Ydieresis eacute -80 -KPX Ydieresis ecaron -80 -KPX Ydieresis ecircumflex -80 -KPX Ydieresis edieresis -80 -KPX Ydieresis edotaccent -80 -KPX Ydieresis egrave -80 -KPX Ydieresis emacron -80 -KPX Ydieresis eogonek -80 -KPX Ydieresis o -100 -KPX Ydieresis oacute -100 -KPX Ydieresis ocircumflex -100 -KPX Ydieresis odieresis -100 -KPX Ydieresis ograve -100 -KPX Ydieresis ohungarumlaut -100 -KPX Ydieresis omacron -100 -KPX Ydieresis oslash -100 -KPX Ydieresis otilde -100 -KPX Ydieresis period -100 -KPX Ydieresis semicolon -50 -KPX Ydieresis u -100 -KPX Ydieresis uacute -100 -KPX Ydieresis ucircumflex -100 -KPX Ydieresis udieresis -100 -KPX Ydieresis ugrave -100 -KPX Ydieresis uhungarumlaut -100 -KPX Ydieresis umacron -100 -KPX Ydieresis uogonek -100 -KPX Ydieresis uring -100 -KPX a g -10 -KPX a gbreve -10 -KPX a gcommaaccent -10 -KPX a v -15 -KPX a w -15 -KPX a y -20 -KPX a yacute -20 -KPX a ydieresis -20 -KPX aacute g -10 -KPX aacute gbreve -10 -KPX aacute gcommaaccent -10 -KPX aacute v -15 -KPX aacute w -15 -KPX aacute y -20 -KPX aacute yacute -20 -KPX aacute ydieresis -20 -KPX abreve g -10 -KPX abreve gbreve -10 -KPX abreve gcommaaccent -10 -KPX abreve v -15 -KPX abreve w -15 -KPX abreve y -20 -KPX abreve yacute -20 -KPX abreve ydieresis -20 -KPX acircumflex g -10 -KPX acircumflex gbreve -10 -KPX acircumflex gcommaaccent -10 -KPX acircumflex v -15 -KPX acircumflex w -15 -KPX acircumflex y -20 -KPX acircumflex yacute -20 -KPX acircumflex ydieresis -20 -KPX adieresis g -10 -KPX adieresis gbreve -10 -KPX adieresis gcommaaccent -10 -KPX adieresis v -15 -KPX adieresis w -15 -KPX adieresis y -20 -KPX adieresis yacute -20 -KPX adieresis ydieresis -20 -KPX agrave g -10 -KPX agrave gbreve -10 -KPX agrave gcommaaccent -10 -KPX agrave v -15 -KPX agrave w -15 -KPX agrave y -20 -KPX agrave yacute -20 -KPX agrave ydieresis -20 -KPX amacron g -10 -KPX amacron gbreve -10 -KPX amacron gcommaaccent -10 -KPX amacron v -15 -KPX amacron w -15 -KPX amacron y -20 -KPX amacron yacute -20 -KPX amacron ydieresis -20 -KPX aogonek g -10 -KPX aogonek gbreve -10 -KPX aogonek gcommaaccent -10 -KPX aogonek v -15 -KPX aogonek w -15 -KPX aogonek y -20 -KPX aogonek yacute -20 -KPX aogonek ydieresis -20 -KPX aring g -10 -KPX aring gbreve -10 -KPX aring gcommaaccent -10 -KPX aring v -15 -KPX aring w -15 -KPX aring y -20 -KPX aring yacute -20 -KPX aring ydieresis -20 -KPX atilde g -10 -KPX atilde gbreve -10 -KPX atilde gcommaaccent -10 -KPX atilde v -15 -KPX atilde w -15 -KPX atilde y -20 -KPX atilde yacute -20 -KPX atilde ydieresis -20 -KPX b l -10 -KPX b lacute -10 -KPX b lcommaaccent -10 -KPX b lslash -10 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX b v -20 -KPX b y -20 -KPX b yacute -20 -KPX b ydieresis -20 -KPX c h -10 -KPX c k -20 -KPX c kcommaaccent -20 -KPX c l -20 -KPX c lacute -20 -KPX c lcommaaccent -20 -KPX c lslash -20 -KPX c y -10 -KPX c yacute -10 -KPX c ydieresis -10 -KPX cacute h -10 -KPX cacute k -20 -KPX cacute kcommaaccent -20 -KPX cacute l -20 -KPX cacute lacute -20 -KPX cacute lcommaaccent -20 -KPX cacute lslash -20 -KPX cacute y -10 -KPX cacute yacute -10 -KPX cacute ydieresis -10 -KPX ccaron h -10 -KPX ccaron k -20 -KPX ccaron kcommaaccent -20 -KPX ccaron l -20 -KPX ccaron lacute -20 -KPX ccaron lcommaaccent -20 -KPX ccaron lslash -20 -KPX ccaron y -10 -KPX ccaron yacute -10 -KPX ccaron ydieresis -10 -KPX ccedilla h -10 -KPX ccedilla k -20 -KPX ccedilla kcommaaccent -20 -KPX ccedilla l -20 -KPX ccedilla lacute -20 -KPX ccedilla lcommaaccent -20 -KPX ccedilla lslash -20 -KPX ccedilla y -10 -KPX ccedilla yacute -10 -KPX ccedilla ydieresis -10 -KPX colon space -40 -KPX comma quotedblright -120 -KPX comma quoteright -120 -KPX comma space -40 -KPX d d -10 -KPX d dcroat -10 -KPX d v -15 -KPX d w -15 -KPX d y -15 -KPX d yacute -15 -KPX d ydieresis -15 -KPX dcroat d -10 -KPX dcroat dcroat -10 -KPX dcroat v -15 -KPX dcroat w -15 -KPX dcroat y -15 -KPX dcroat yacute -15 -KPX dcroat ydieresis -15 -KPX e comma 10 -KPX e period 20 -KPX e v -15 -KPX e w -15 -KPX e x -15 -KPX e y -15 -KPX e yacute -15 -KPX e ydieresis -15 -KPX eacute comma 10 -KPX eacute period 20 -KPX eacute v -15 -KPX eacute w -15 -KPX eacute x -15 -KPX eacute y -15 -KPX eacute yacute -15 -KPX eacute ydieresis -15 -KPX ecaron comma 10 -KPX ecaron period 20 -KPX ecaron v -15 -KPX ecaron w -15 -KPX ecaron x -15 -KPX ecaron y -15 -KPX ecaron yacute -15 -KPX ecaron ydieresis -15 -KPX ecircumflex comma 10 -KPX ecircumflex period 20 -KPX ecircumflex v -15 -KPX ecircumflex w -15 -KPX ecircumflex x -15 -KPX ecircumflex y -15 -KPX ecircumflex yacute -15 -KPX ecircumflex ydieresis -15 -KPX edieresis comma 10 -KPX edieresis period 20 -KPX edieresis v -15 -KPX edieresis w -15 -KPX edieresis x -15 -KPX edieresis y -15 -KPX edieresis yacute -15 -KPX edieresis ydieresis -15 -KPX edotaccent comma 10 -KPX edotaccent period 20 -KPX edotaccent v -15 -KPX edotaccent w -15 -KPX edotaccent x -15 -KPX edotaccent y -15 -KPX edotaccent yacute -15 -KPX edotaccent ydieresis -15 -KPX egrave comma 10 -KPX egrave period 20 -KPX egrave v -15 -KPX egrave w -15 -KPX egrave x -15 -KPX egrave y -15 -KPX egrave yacute -15 -KPX egrave ydieresis -15 -KPX emacron comma 10 -KPX emacron period 20 -KPX emacron v -15 -KPX emacron w -15 -KPX emacron x -15 -KPX emacron y -15 -KPX emacron yacute -15 -KPX emacron ydieresis -15 -KPX eogonek comma 10 -KPX eogonek period 20 -KPX eogonek v -15 -KPX eogonek w -15 -KPX eogonek x -15 -KPX eogonek y -15 -KPX eogonek yacute -15 -KPX eogonek ydieresis -15 -KPX f comma -10 -KPX f e -10 -KPX f eacute -10 -KPX f ecaron -10 -KPX f ecircumflex -10 -KPX f edieresis -10 -KPX f edotaccent -10 -KPX f egrave -10 -KPX f emacron -10 -KPX f eogonek -10 -KPX f o -20 -KPX f oacute -20 -KPX f ocircumflex -20 -KPX f odieresis -20 -KPX f ograve -20 -KPX f ohungarumlaut -20 -KPX f omacron -20 -KPX f oslash -20 -KPX f otilde -20 -KPX f period -10 -KPX f quotedblright 30 -KPX f quoteright 30 -KPX g e 10 -KPX g eacute 10 -KPX g ecaron 10 -KPX g ecircumflex 10 -KPX g edieresis 10 -KPX g edotaccent 10 -KPX g egrave 10 -KPX g emacron 10 -KPX g eogonek 10 -KPX g g -10 -KPX g gbreve -10 -KPX g gcommaaccent -10 -KPX gbreve e 10 -KPX gbreve eacute 10 -KPX gbreve ecaron 10 -KPX gbreve ecircumflex 10 -KPX gbreve edieresis 10 -KPX gbreve edotaccent 10 -KPX gbreve egrave 10 -KPX gbreve emacron 10 -KPX gbreve eogonek 10 -KPX gbreve g -10 -KPX gbreve gbreve -10 -KPX gbreve gcommaaccent -10 -KPX gcommaaccent e 10 -KPX gcommaaccent eacute 10 -KPX gcommaaccent ecaron 10 -KPX gcommaaccent ecircumflex 10 -KPX gcommaaccent edieresis 10 -KPX gcommaaccent edotaccent 10 -KPX gcommaaccent egrave 10 -KPX gcommaaccent emacron 10 -KPX gcommaaccent eogonek 10 -KPX gcommaaccent g -10 -KPX gcommaaccent gbreve -10 -KPX gcommaaccent gcommaaccent -10 -KPX h y -20 -KPX h yacute -20 -KPX h ydieresis -20 -KPX k o -15 -KPX k oacute -15 -KPX k ocircumflex -15 -KPX k odieresis -15 -KPX k ograve -15 -KPX k ohungarumlaut -15 -KPX k omacron -15 -KPX k oslash -15 -KPX k otilde -15 -KPX kcommaaccent o -15 -KPX kcommaaccent oacute -15 -KPX kcommaaccent ocircumflex -15 -KPX kcommaaccent odieresis -15 -KPX kcommaaccent ograve -15 -KPX kcommaaccent ohungarumlaut -15 -KPX kcommaaccent omacron -15 -KPX kcommaaccent oslash -15 -KPX kcommaaccent otilde -15 -KPX l w -15 -KPX l y -15 -KPX l yacute -15 -KPX l ydieresis -15 -KPX lacute w -15 -KPX lacute y -15 -KPX lacute yacute -15 -KPX lacute ydieresis -15 -KPX lcommaaccent w -15 -KPX lcommaaccent y -15 -KPX lcommaaccent yacute -15 -KPX lcommaaccent ydieresis -15 -KPX lslash w -15 -KPX lslash y -15 -KPX lslash yacute -15 -KPX lslash ydieresis -15 -KPX m u -20 -KPX m uacute -20 -KPX m ucircumflex -20 -KPX m udieresis -20 -KPX m ugrave -20 -KPX m uhungarumlaut -20 -KPX m umacron -20 -KPX m uogonek -20 -KPX m uring -20 -KPX m y -30 -KPX m yacute -30 -KPX m ydieresis -30 -KPX n u -10 -KPX n uacute -10 -KPX n ucircumflex -10 -KPX n udieresis -10 -KPX n ugrave -10 -KPX n uhungarumlaut -10 -KPX n umacron -10 -KPX n uogonek -10 -KPX n uring -10 -KPX n v -40 -KPX n y -20 -KPX n yacute -20 -KPX n ydieresis -20 -KPX nacute u -10 -KPX nacute uacute -10 -KPX nacute ucircumflex -10 -KPX nacute udieresis -10 -KPX nacute ugrave -10 -KPX nacute uhungarumlaut -10 -KPX nacute umacron -10 -KPX nacute uogonek -10 -KPX nacute uring -10 -KPX nacute v -40 -KPX nacute y -20 -KPX nacute yacute -20 -KPX nacute ydieresis -20 -KPX ncaron u -10 -KPX ncaron uacute -10 -KPX ncaron ucircumflex -10 -KPX ncaron udieresis -10 -KPX ncaron ugrave -10 -KPX ncaron uhungarumlaut -10 -KPX ncaron umacron -10 -KPX ncaron uogonek -10 -KPX ncaron uring -10 -KPX ncaron v -40 -KPX ncaron y -20 -KPX ncaron yacute -20 -KPX ncaron ydieresis -20 -KPX ncommaaccent u -10 -KPX ncommaaccent uacute -10 -KPX ncommaaccent ucircumflex -10 -KPX ncommaaccent udieresis -10 -KPX ncommaaccent ugrave -10 -KPX ncommaaccent uhungarumlaut -10 -KPX ncommaaccent umacron -10 -KPX ncommaaccent uogonek -10 -KPX ncommaaccent uring -10 -KPX ncommaaccent v -40 -KPX ncommaaccent y -20 -KPX ncommaaccent yacute -20 -KPX ncommaaccent ydieresis -20 -KPX ntilde u -10 -KPX ntilde uacute -10 -KPX ntilde ucircumflex -10 -KPX ntilde udieresis -10 -KPX ntilde ugrave -10 -KPX ntilde uhungarumlaut -10 -KPX ntilde umacron -10 -KPX ntilde uogonek -10 -KPX ntilde uring -10 -KPX ntilde v -40 -KPX ntilde y -20 -KPX ntilde yacute -20 -KPX ntilde ydieresis -20 -KPX o v -20 -KPX o w -15 -KPX o x -30 -KPX o y -20 -KPX o yacute -20 -KPX o ydieresis -20 -KPX oacute v -20 -KPX oacute w -15 -KPX oacute x -30 -KPX oacute y -20 -KPX oacute yacute -20 -KPX oacute ydieresis -20 -KPX ocircumflex v -20 -KPX ocircumflex w -15 -KPX ocircumflex x -30 -KPX ocircumflex y -20 -KPX ocircumflex yacute -20 -KPX ocircumflex ydieresis -20 -KPX odieresis v -20 -KPX odieresis w -15 -KPX odieresis x -30 -KPX odieresis y -20 -KPX odieresis yacute -20 -KPX odieresis ydieresis -20 -KPX ograve v -20 -KPX ograve w -15 -KPX ograve x -30 -KPX ograve y -20 -KPX ograve yacute -20 -KPX ograve ydieresis -20 -KPX ohungarumlaut v -20 -KPX ohungarumlaut w -15 -KPX ohungarumlaut x -30 -KPX ohungarumlaut y -20 -KPX ohungarumlaut yacute -20 -KPX ohungarumlaut ydieresis -20 -KPX omacron v -20 -KPX omacron w -15 -KPX omacron x -30 -KPX omacron y -20 -KPX omacron yacute -20 -KPX omacron ydieresis -20 -KPX oslash v -20 -KPX oslash w -15 -KPX oslash x -30 -KPX oslash y -20 -KPX oslash yacute -20 -KPX oslash ydieresis -20 -KPX otilde v -20 -KPX otilde w -15 -KPX otilde x -30 -KPX otilde y -20 -KPX otilde yacute -20 -KPX otilde ydieresis -20 -KPX p y -15 -KPX p yacute -15 -KPX p ydieresis -15 -KPX period quotedblright -120 -KPX period quoteright -120 -KPX period space -40 -KPX quotedblright space -80 -KPX quoteleft quoteleft -46 -KPX quoteright d -80 -KPX quoteright dcroat -80 -KPX quoteright l -20 -KPX quoteright lacute -20 -KPX quoteright lcommaaccent -20 -KPX quoteright lslash -20 -KPX quoteright quoteright -46 -KPX quoteright r -40 -KPX quoteright racute -40 -KPX quoteright rcaron -40 -KPX quoteright rcommaaccent -40 -KPX quoteright s -60 -KPX quoteright sacute -60 -KPX quoteright scaron -60 -KPX quoteright scedilla -60 -KPX quoteright scommaaccent -60 -KPX quoteright space -80 -KPX quoteright v -20 -KPX r c -20 -KPX r cacute -20 -KPX r ccaron -20 -KPX r ccedilla -20 -KPX r comma -60 -KPX r d -20 -KPX r dcroat -20 -KPX r g -15 -KPX r gbreve -15 -KPX r gcommaaccent -15 -KPX r hyphen -20 -KPX r o -20 -KPX r oacute -20 -KPX r ocircumflex -20 -KPX r odieresis -20 -KPX r ograve -20 -KPX r ohungarumlaut -20 -KPX r omacron -20 -KPX r oslash -20 -KPX r otilde -20 -KPX r period -60 -KPX r q -20 -KPX r s -15 -KPX r sacute -15 -KPX r scaron -15 -KPX r scedilla -15 -KPX r scommaaccent -15 -KPX r t 20 -KPX r tcommaaccent 20 -KPX r v 10 -KPX r y 10 -KPX r yacute 10 -KPX r ydieresis 10 -KPX racute c -20 -KPX racute cacute -20 -KPX racute ccaron -20 -KPX racute ccedilla -20 -KPX racute comma -60 -KPX racute d -20 -KPX racute dcroat -20 -KPX racute g -15 -KPX racute gbreve -15 -KPX racute gcommaaccent -15 -KPX racute hyphen -20 -KPX racute o -20 -KPX racute oacute -20 -KPX racute ocircumflex -20 -KPX racute odieresis -20 -KPX racute ograve -20 -KPX racute ohungarumlaut -20 -KPX racute omacron -20 -KPX racute oslash -20 -KPX racute otilde -20 -KPX racute period -60 -KPX racute q -20 -KPX racute s -15 -KPX racute sacute -15 -KPX racute scaron -15 -KPX racute scedilla -15 -KPX racute scommaaccent -15 -KPX racute t 20 -KPX racute tcommaaccent 20 -KPX racute v 10 -KPX racute y 10 -KPX racute yacute 10 -KPX racute ydieresis 10 -KPX rcaron c -20 -KPX rcaron cacute -20 -KPX rcaron ccaron -20 -KPX rcaron ccedilla -20 -KPX rcaron comma -60 -KPX rcaron d -20 -KPX rcaron dcroat -20 -KPX rcaron g -15 -KPX rcaron gbreve -15 -KPX rcaron gcommaaccent -15 -KPX rcaron hyphen -20 -KPX rcaron o -20 -KPX rcaron oacute -20 -KPX rcaron ocircumflex -20 -KPX rcaron odieresis -20 -KPX rcaron ograve -20 -KPX rcaron ohungarumlaut -20 -KPX rcaron omacron -20 -KPX rcaron oslash -20 -KPX rcaron otilde -20 -KPX rcaron period -60 -KPX rcaron q -20 -KPX rcaron s -15 -KPX rcaron sacute -15 -KPX rcaron scaron -15 -KPX rcaron scedilla -15 -KPX rcaron scommaaccent -15 -KPX rcaron t 20 -KPX rcaron tcommaaccent 20 -KPX rcaron v 10 -KPX rcaron y 10 -KPX rcaron yacute 10 -KPX rcaron ydieresis 10 -KPX rcommaaccent c -20 -KPX rcommaaccent cacute -20 -KPX rcommaaccent ccaron -20 -KPX rcommaaccent ccedilla -20 -KPX rcommaaccent comma -60 -KPX rcommaaccent d -20 -KPX rcommaaccent dcroat -20 -KPX rcommaaccent g -15 -KPX rcommaaccent gbreve -15 -KPX rcommaaccent gcommaaccent -15 -KPX rcommaaccent hyphen -20 -KPX rcommaaccent o -20 -KPX rcommaaccent oacute -20 -KPX rcommaaccent ocircumflex -20 -KPX rcommaaccent odieresis -20 -KPX rcommaaccent ograve -20 -KPX rcommaaccent ohungarumlaut -20 -KPX rcommaaccent omacron -20 -KPX rcommaaccent oslash -20 -KPX rcommaaccent otilde -20 -KPX rcommaaccent period -60 -KPX rcommaaccent q -20 -KPX rcommaaccent s -15 -KPX rcommaaccent sacute -15 -KPX rcommaaccent scaron -15 -KPX rcommaaccent scedilla -15 -KPX rcommaaccent scommaaccent -15 -KPX rcommaaccent t 20 -KPX rcommaaccent tcommaaccent 20 -KPX rcommaaccent v 10 -KPX rcommaaccent y 10 -KPX rcommaaccent yacute 10 -KPX rcommaaccent ydieresis 10 -KPX s w -15 -KPX sacute w -15 -KPX scaron w -15 -KPX scedilla w -15 -KPX scommaaccent w -15 -KPX semicolon space -40 -KPX space T -100 -KPX space Tcaron -100 -KPX space Tcommaaccent -100 -KPX space V -80 -KPX space W -80 -KPX space Y -120 -KPX space Yacute -120 -KPX space Ydieresis -120 -KPX space quotedblleft -80 -KPX space quoteleft -60 -KPX v a -20 -KPX v aacute -20 -KPX v abreve -20 -KPX v acircumflex -20 -KPX v adieresis -20 -KPX v agrave -20 -KPX v amacron -20 -KPX v aogonek -20 -KPX v aring -20 -KPX v atilde -20 -KPX v comma -80 -KPX v o -30 -KPX v oacute -30 -KPX v ocircumflex -30 -KPX v odieresis -30 -KPX v ograve -30 -KPX v ohungarumlaut -30 -KPX v omacron -30 -KPX v oslash -30 -KPX v otilde -30 -KPX v period -80 -KPX w comma -40 -KPX w o -20 -KPX w oacute -20 -KPX w ocircumflex -20 -KPX w odieresis -20 -KPX w ograve -20 -KPX w ohungarumlaut -20 -KPX w omacron -20 -KPX w oslash -20 -KPX w otilde -20 -KPX w period -40 -KPX x e -10 -KPX x eacute -10 -KPX x ecaron -10 -KPX x ecircumflex -10 -KPX x edieresis -10 -KPX x edotaccent -10 -KPX x egrave -10 -KPX x emacron -10 -KPX x eogonek -10 -KPX y a -30 -KPX y aacute -30 -KPX y abreve -30 -KPX y acircumflex -30 -KPX y adieresis -30 -KPX y agrave -30 -KPX y amacron -30 -KPX y aogonek -30 -KPX y aring -30 -KPX y atilde -30 -KPX y comma -80 -KPX y e -10 -KPX y eacute -10 -KPX y ecaron -10 -KPX y ecircumflex -10 -KPX y edieresis -10 -KPX y edotaccent -10 -KPX y egrave -10 -KPX y emacron -10 -KPX y eogonek -10 -KPX y o -25 -KPX y oacute -25 -KPX y ocircumflex -25 -KPX y odieresis -25 -KPX y ograve -25 -KPX y ohungarumlaut -25 -KPX y omacron -25 -KPX y oslash -25 -KPX y otilde -25 -KPX y period -80 -KPX yacute a -30 -KPX yacute aacute -30 -KPX yacute abreve -30 -KPX yacute acircumflex -30 -KPX yacute adieresis -30 -KPX yacute agrave -30 -KPX yacute amacron -30 -KPX yacute aogonek -30 -KPX yacute aring -30 -KPX yacute atilde -30 -KPX yacute comma -80 -KPX yacute e -10 -KPX yacute eacute -10 -KPX yacute ecaron -10 -KPX yacute ecircumflex -10 -KPX yacute edieresis -10 -KPX yacute edotaccent -10 -KPX yacute egrave -10 -KPX yacute emacron -10 -KPX yacute eogonek -10 -KPX yacute o -25 -KPX yacute oacute -25 -KPX yacute ocircumflex -25 -KPX yacute odieresis -25 -KPX yacute ograve -25 -KPX yacute ohungarumlaut -25 -KPX yacute omacron -25 -KPX yacute oslash -25 -KPX yacute otilde -25 -KPX yacute period -80 -KPX ydieresis a -30 -KPX ydieresis aacute -30 -KPX ydieresis abreve -30 -KPX ydieresis acircumflex -30 -KPX ydieresis adieresis -30 -KPX ydieresis agrave -30 -KPX ydieresis amacron -30 -KPX ydieresis aogonek -30 -KPX ydieresis aring -30 -KPX ydieresis atilde -30 -KPX ydieresis comma -80 -KPX ydieresis e -10 -KPX ydieresis eacute -10 -KPX ydieresis ecaron -10 -KPX ydieresis ecircumflex -10 -KPX ydieresis edieresis -10 -KPX ydieresis edotaccent -10 -KPX ydieresis egrave -10 -KPX ydieresis emacron -10 -KPX ydieresis eogonek -10 -KPX ydieresis o -25 -KPX ydieresis oacute -25 -KPX ydieresis ocircumflex -25 -KPX ydieresis odieresis -25 -KPX ydieresis ograve -25 -KPX ydieresis ohungarumlaut -25 -KPX ydieresis omacron -25 -KPX ydieresis oslash -25 -KPX ydieresis otilde -25 -KPX ydieresis period -80 -KPX z e 10 -KPX z eacute 10 -KPX z ecaron 10 -KPX z ecircumflex 10 -KPX z edieresis 10 -KPX z edotaccent 10 -KPX z egrave 10 -KPX z emacron 10 -KPX z eogonek 10 -KPX zacute e 10 -KPX zacute eacute 10 -KPX zacute ecaron 10 -KPX zacute ecircumflex 10 -KPX zacute edieresis 10 -KPX zacute edotaccent 10 -KPX zacute egrave 10 -KPX zacute emacron 10 -KPX zacute eogonek 10 -KPX zcaron e 10 -KPX zcaron eacute 10 -KPX zcaron ecaron 10 -KPX zcaron ecircumflex 10 -KPX zcaron edieresis 10 -KPX zcaron edotaccent 10 -KPX zcaron egrave 10 -KPX zcaron emacron 10 -KPX zcaron eogonek 10 -KPX zdotaccent e 10 -KPX zdotaccent eacute 10 -KPX zdotaccent ecaron 10 -KPX zdotaccent ecircumflex 10 -KPX zdotaccent edieresis 10 -KPX zdotaccent edotaccent 10 -KPX zdotaccent egrave 10 -KPX zdotaccent emacron 10 -KPX zdotaccent eogonek 10 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-Oblique.afm b/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-Oblique.afm deleted file mode 100644 index 7a7af001..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica-Oblique.afm +++ /dev/null @@ -1,3051 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 12:44:31 1997 -Comment UniqueID 43055 -Comment VMusage 14960 69346 -FontName Helvetica-Oblique -FullName Helvetica Oblique -FamilyName Helvetica -Weight Medium -ItalicAngle -12 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -170 -225 1116 931 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 718 -XHeight 523 -Ascender 718 -Descender -207 -StdHW 76 -StdVW 88 -StartCharMetrics 315 -C 32 ; WX 278 ; N space ; B 0 0 0 0 ; -C 33 ; WX 278 ; N exclam ; B 90 0 340 718 ; -C 34 ; WX 355 ; N quotedbl ; B 168 463 438 718 ; -C 35 ; WX 556 ; N numbersign ; B 73 0 631 688 ; -C 36 ; WX 556 ; N dollar ; B 69 -115 617 775 ; -C 37 ; WX 889 ; N percent ; B 147 -19 889 703 ; -C 38 ; WX 667 ; N ampersand ; B 77 -15 647 718 ; -C 39 ; WX 222 ; N quoteright ; B 151 463 310 718 ; -C 40 ; WX 333 ; N parenleft ; B 108 -207 454 733 ; -C 41 ; WX 333 ; N parenright ; B -9 -207 337 733 ; -C 42 ; WX 389 ; N asterisk ; B 165 431 475 718 ; -C 43 ; WX 584 ; N plus ; B 85 0 606 505 ; -C 44 ; WX 278 ; N comma ; B 56 -147 214 106 ; -C 45 ; WX 333 ; N hyphen ; B 93 232 357 322 ; -C 46 ; WX 278 ; N period ; B 87 0 214 106 ; -C 47 ; WX 278 ; N slash ; B -21 -19 452 737 ; -C 48 ; WX 556 ; N zero ; B 93 -19 608 703 ; -C 49 ; WX 556 ; N one ; B 207 0 508 703 ; -C 50 ; WX 556 ; N two ; B 26 0 617 703 ; -C 51 ; WX 556 ; N three ; B 75 -19 610 703 ; -C 52 ; WX 556 ; N four ; B 61 0 576 703 ; -C 53 ; WX 556 ; N five ; B 68 -19 621 688 ; -C 54 ; WX 556 ; N six ; B 91 -19 615 703 ; -C 55 ; WX 556 ; N seven ; B 137 0 669 688 ; -C 56 ; WX 556 ; N eight ; B 74 -19 607 703 ; -C 57 ; WX 556 ; N nine ; B 82 -19 609 703 ; -C 58 ; WX 278 ; N colon ; B 87 0 301 516 ; -C 59 ; WX 278 ; N semicolon ; B 56 -147 301 516 ; -C 60 ; WX 584 ; N less ; B 94 11 641 495 ; -C 61 ; WX 584 ; N equal ; B 63 115 628 390 ; -C 62 ; WX 584 ; N greater ; B 50 11 597 495 ; -C 63 ; WX 556 ; N question ; B 161 0 610 727 ; -C 64 ; WX 1015 ; N at ; B 215 -19 965 737 ; -C 65 ; WX 667 ; N A ; B 14 0 654 718 ; -C 66 ; WX 667 ; N B ; B 74 0 712 718 ; -C 67 ; WX 722 ; N C ; B 108 -19 782 737 ; -C 68 ; WX 722 ; N D ; B 81 0 764 718 ; -C 69 ; WX 667 ; N E ; B 86 0 762 718 ; -C 70 ; WX 611 ; N F ; B 86 0 736 718 ; -C 71 ; WX 778 ; N G ; B 111 -19 799 737 ; -C 72 ; WX 722 ; N H ; B 77 0 799 718 ; -C 73 ; WX 278 ; N I ; B 91 0 341 718 ; -C 74 ; WX 500 ; N J ; B 47 -19 581 718 ; -C 75 ; WX 667 ; N K ; B 76 0 808 718 ; -C 76 ; WX 556 ; N L ; B 76 0 555 718 ; -C 77 ; WX 833 ; N M ; B 73 0 914 718 ; -C 78 ; WX 722 ; N N ; B 76 0 799 718 ; -C 79 ; WX 778 ; N O ; B 105 -19 826 737 ; -C 80 ; WX 667 ; N P ; B 86 0 737 718 ; -C 81 ; WX 778 ; N Q ; B 105 -56 826 737 ; -C 82 ; WX 722 ; N R ; B 88 0 773 718 ; -C 83 ; WX 667 ; N S ; B 90 -19 713 737 ; -C 84 ; WX 611 ; N T ; B 148 0 750 718 ; -C 85 ; WX 722 ; N U ; B 123 -19 797 718 ; -C 86 ; WX 667 ; N V ; B 173 0 800 718 ; -C 87 ; WX 944 ; N W ; B 169 0 1081 718 ; -C 88 ; WX 667 ; N X ; B 19 0 790 718 ; -C 89 ; WX 667 ; N Y ; B 167 0 806 718 ; -C 90 ; WX 611 ; N Z ; B 23 0 741 718 ; -C 91 ; WX 278 ; N bracketleft ; B 21 -196 403 722 ; -C 92 ; WX 278 ; N backslash ; B 140 -19 291 737 ; -C 93 ; WX 278 ; N bracketright ; B -14 -196 368 722 ; -C 94 ; WX 469 ; N asciicircum ; B 42 264 539 688 ; -C 95 ; WX 556 ; N underscore ; B -27 -125 540 -75 ; -C 96 ; WX 222 ; N quoteleft ; B 165 470 323 725 ; -C 97 ; WX 556 ; N a ; B 61 -15 559 538 ; -C 98 ; WX 556 ; N b ; B 58 -15 584 718 ; -C 99 ; WX 500 ; N c ; B 74 -15 553 538 ; -C 100 ; WX 556 ; N d ; B 84 -15 652 718 ; -C 101 ; WX 556 ; N e ; B 84 -15 578 538 ; -C 102 ; WX 278 ; N f ; B 86 0 416 728 ; L i fi ; L l fl ; -C 103 ; WX 556 ; N g ; B 42 -220 610 538 ; -C 104 ; WX 556 ; N h ; B 65 0 573 718 ; -C 105 ; WX 222 ; N i ; B 67 0 308 718 ; -C 106 ; WX 222 ; N j ; B -60 -210 308 718 ; -C 107 ; WX 500 ; N k ; B 67 0 600 718 ; -C 108 ; WX 222 ; N l ; B 67 0 308 718 ; -C 109 ; WX 833 ; N m ; B 65 0 852 538 ; -C 110 ; WX 556 ; N n ; B 65 0 573 538 ; -C 111 ; WX 556 ; N o ; B 83 -14 585 538 ; -C 112 ; WX 556 ; N p ; B 14 -207 584 538 ; -C 113 ; WX 556 ; N q ; B 84 -207 605 538 ; -C 114 ; WX 333 ; N r ; B 77 0 446 538 ; -C 115 ; WX 500 ; N s ; B 63 -15 529 538 ; -C 116 ; WX 278 ; N t ; B 102 -7 368 669 ; -C 117 ; WX 556 ; N u ; B 94 -15 600 523 ; -C 118 ; WX 500 ; N v ; B 119 0 603 523 ; -C 119 ; WX 722 ; N w ; B 125 0 820 523 ; -C 120 ; WX 500 ; N x ; B 11 0 594 523 ; -C 121 ; WX 500 ; N y ; B 15 -214 600 523 ; -C 122 ; WX 500 ; N z ; B 31 0 571 523 ; -C 123 ; WX 334 ; N braceleft ; B 92 -196 445 722 ; -C 124 ; WX 260 ; N bar ; B 46 -225 332 775 ; -C 125 ; WX 334 ; N braceright ; B 0 -196 354 722 ; -C 126 ; WX 584 ; N asciitilde ; B 111 180 580 326 ; -C 161 ; WX 333 ; N exclamdown ; B 77 -195 326 523 ; -C 162 ; WX 556 ; N cent ; B 95 -115 584 623 ; -C 163 ; WX 556 ; N sterling ; B 49 -16 634 718 ; -C 164 ; WX 167 ; N fraction ; B -170 -19 482 703 ; -C 165 ; WX 556 ; N yen ; B 81 0 699 688 ; -C 166 ; WX 556 ; N florin ; B -52 -207 654 737 ; -C 167 ; WX 556 ; N section ; B 76 -191 584 737 ; -C 168 ; WX 556 ; N currency ; B 60 99 646 603 ; -C 169 ; WX 191 ; N quotesingle ; B 157 463 285 718 ; -C 170 ; WX 333 ; N quotedblleft ; B 138 470 461 725 ; -C 171 ; WX 556 ; N guillemotleft ; B 146 108 554 446 ; -C 172 ; WX 333 ; N guilsinglleft ; B 137 108 340 446 ; -C 173 ; WX 333 ; N guilsinglright ; B 111 108 314 446 ; -C 174 ; WX 500 ; N fi ; B 86 0 587 728 ; -C 175 ; WX 500 ; N fl ; B 86 0 585 728 ; -C 177 ; WX 556 ; N endash ; B 51 240 623 313 ; -C 178 ; WX 556 ; N dagger ; B 135 -159 622 718 ; -C 179 ; WX 556 ; N daggerdbl ; B 52 -159 623 718 ; -C 180 ; WX 278 ; N periodcentered ; B 129 190 257 315 ; -C 182 ; WX 537 ; N paragraph ; B 126 -173 650 718 ; -C 183 ; WX 350 ; N bullet ; B 91 202 413 517 ; -C 184 ; WX 222 ; N quotesinglbase ; B 21 -149 180 106 ; -C 185 ; WX 333 ; N quotedblbase ; B -6 -149 318 106 ; -C 186 ; WX 333 ; N quotedblright ; B 124 463 448 718 ; -C 187 ; WX 556 ; N guillemotright ; B 120 108 528 446 ; -C 188 ; WX 1000 ; N ellipsis ; B 115 0 908 106 ; -C 189 ; WX 1000 ; N perthousand ; B 88 -19 1029 703 ; -C 191 ; WX 611 ; N questiondown ; B 85 -201 534 525 ; -C 193 ; WX 333 ; N grave ; B 170 593 337 734 ; -C 194 ; WX 333 ; N acute ; B 248 593 475 734 ; -C 195 ; WX 333 ; N circumflex ; B 147 593 438 734 ; -C 196 ; WX 333 ; N tilde ; B 125 606 490 722 ; -C 197 ; WX 333 ; N macron ; B 143 627 468 684 ; -C 198 ; WX 333 ; N breve ; B 167 595 476 731 ; -C 199 ; WX 333 ; N dotaccent ; B 249 604 362 706 ; -C 200 ; WX 333 ; N dieresis ; B 168 604 443 706 ; -C 202 ; WX 333 ; N ring ; B 214 572 402 756 ; -C 203 ; WX 333 ; N cedilla ; B 2 -225 232 0 ; -C 205 ; WX 333 ; N hungarumlaut ; B 157 593 565 734 ; -C 206 ; WX 333 ; N ogonek ; B 43 -225 249 0 ; -C 207 ; WX 333 ; N caron ; B 177 593 468 734 ; -C 208 ; WX 1000 ; N emdash ; B 51 240 1067 313 ; -C 225 ; WX 1000 ; N AE ; B 8 0 1097 718 ; -C 227 ; WX 370 ; N ordfeminine ; B 127 405 449 737 ; -C 232 ; WX 556 ; N Lslash ; B 41 0 555 718 ; -C 233 ; WX 778 ; N Oslash ; B 43 -19 890 737 ; -C 234 ; WX 1000 ; N OE ; B 98 -19 1116 737 ; -C 235 ; WX 365 ; N ordmasculine ; B 141 405 468 737 ; -C 241 ; WX 889 ; N ae ; B 61 -15 909 538 ; -C 245 ; WX 278 ; N dotlessi ; B 95 0 294 523 ; -C 248 ; WX 222 ; N lslash ; B 41 0 347 718 ; -C 249 ; WX 611 ; N oslash ; B 29 -22 647 545 ; -C 250 ; WX 944 ; N oe ; B 83 -15 964 538 ; -C 251 ; WX 611 ; N germandbls ; B 67 -15 658 728 ; -C -1 ; WX 278 ; N Idieresis ; B 91 0 458 901 ; -C -1 ; WX 556 ; N eacute ; B 84 -15 587 734 ; -C -1 ; WX 556 ; N abreve ; B 61 -15 578 731 ; -C -1 ; WX 556 ; N uhungarumlaut ; B 94 -15 677 734 ; -C -1 ; WX 556 ; N ecaron ; B 84 -15 580 734 ; -C -1 ; WX 667 ; N Ydieresis ; B 167 0 806 901 ; -C -1 ; WX 584 ; N divide ; B 85 -19 606 524 ; -C -1 ; WX 667 ; N Yacute ; B 167 0 806 929 ; -C -1 ; WX 667 ; N Acircumflex ; B 14 0 654 929 ; -C -1 ; WX 556 ; N aacute ; B 61 -15 587 734 ; -C -1 ; WX 722 ; N Ucircumflex ; B 123 -19 797 929 ; -C -1 ; WX 500 ; N yacute ; B 15 -214 600 734 ; -C -1 ; WX 500 ; N scommaaccent ; B 63 -225 529 538 ; -C -1 ; WX 556 ; N ecircumflex ; B 84 -15 578 734 ; -C -1 ; WX 722 ; N Uring ; B 123 -19 797 931 ; -C -1 ; WX 722 ; N Udieresis ; B 123 -19 797 901 ; -C -1 ; WX 556 ; N aogonek ; B 61 -220 559 538 ; -C -1 ; WX 722 ; N Uacute ; B 123 -19 797 929 ; -C -1 ; WX 556 ; N uogonek ; B 94 -225 600 523 ; -C -1 ; WX 667 ; N Edieresis ; B 86 0 762 901 ; -C -1 ; WX 722 ; N Dcroat ; B 69 0 764 718 ; -C -1 ; WX 250 ; N commaaccent ; B 39 -225 172 -40 ; -C -1 ; WX 737 ; N copyright ; B 54 -19 837 737 ; -C -1 ; WX 667 ; N Emacron ; B 86 0 762 879 ; -C -1 ; WX 500 ; N ccaron ; B 74 -15 553 734 ; -C -1 ; WX 556 ; N aring ; B 61 -15 559 756 ; -C -1 ; WX 722 ; N Ncommaaccent ; B 76 -225 799 718 ; -C -1 ; WX 222 ; N lacute ; B 67 0 461 929 ; -C -1 ; WX 556 ; N agrave ; B 61 -15 559 734 ; -C -1 ; WX 611 ; N Tcommaaccent ; B 148 -225 750 718 ; -C -1 ; WX 722 ; N Cacute ; B 108 -19 782 929 ; -C -1 ; WX 556 ; N atilde ; B 61 -15 592 722 ; -C -1 ; WX 667 ; N Edotaccent ; B 86 0 762 901 ; -C -1 ; WX 500 ; N scaron ; B 63 -15 552 734 ; -C -1 ; WX 500 ; N scedilla ; B 63 -225 529 538 ; -C -1 ; WX 278 ; N iacute ; B 95 0 448 734 ; -C -1 ; WX 471 ; N lozenge ; B 88 0 540 728 ; -C -1 ; WX 722 ; N Rcaron ; B 88 0 773 929 ; -C -1 ; WX 778 ; N Gcommaaccent ; B 111 -225 799 737 ; -C -1 ; WX 556 ; N ucircumflex ; B 94 -15 600 734 ; -C -1 ; WX 556 ; N acircumflex ; B 61 -15 559 734 ; -C -1 ; WX 667 ; N Amacron ; B 14 0 677 879 ; -C -1 ; WX 333 ; N rcaron ; B 77 0 508 734 ; -C -1 ; WX 500 ; N ccedilla ; B 74 -225 553 538 ; -C -1 ; WX 611 ; N Zdotaccent ; B 23 0 741 901 ; -C -1 ; WX 667 ; N Thorn ; B 86 0 712 718 ; -C -1 ; WX 778 ; N Omacron ; B 105 -19 826 879 ; -C -1 ; WX 722 ; N Racute ; B 88 0 773 929 ; -C -1 ; WX 667 ; N Sacute ; B 90 -19 713 929 ; -C -1 ; WX 643 ; N dcaron ; B 84 -15 808 718 ; -C -1 ; WX 722 ; N Umacron ; B 123 -19 797 879 ; -C -1 ; WX 556 ; N uring ; B 94 -15 600 756 ; -C -1 ; WX 333 ; N threesuperior ; B 90 270 436 703 ; -C -1 ; WX 778 ; N Ograve ; B 105 -19 826 929 ; -C -1 ; WX 667 ; N Agrave ; B 14 0 654 929 ; -C -1 ; WX 667 ; N Abreve ; B 14 0 685 926 ; -C -1 ; WX 584 ; N multiply ; B 50 0 642 506 ; -C -1 ; WX 556 ; N uacute ; B 94 -15 600 734 ; -C -1 ; WX 611 ; N Tcaron ; B 148 0 750 929 ; -C -1 ; WX 476 ; N partialdiff ; B 41 -38 550 714 ; -C -1 ; WX 500 ; N ydieresis ; B 15 -214 600 706 ; -C -1 ; WX 722 ; N Nacute ; B 76 0 799 929 ; -C -1 ; WX 278 ; N icircumflex ; B 95 0 411 734 ; -C -1 ; WX 667 ; N Ecircumflex ; B 86 0 762 929 ; -C -1 ; WX 556 ; N adieresis ; B 61 -15 559 706 ; -C -1 ; WX 556 ; N edieresis ; B 84 -15 578 706 ; -C -1 ; WX 500 ; N cacute ; B 74 -15 559 734 ; -C -1 ; WX 556 ; N nacute ; B 65 0 587 734 ; -C -1 ; WX 556 ; N umacron ; B 94 -15 600 684 ; -C -1 ; WX 722 ; N Ncaron ; B 76 0 799 929 ; -C -1 ; WX 278 ; N Iacute ; B 91 0 489 929 ; -C -1 ; WX 584 ; N plusminus ; B 39 0 618 506 ; -C -1 ; WX 260 ; N brokenbar ; B 62 -150 316 700 ; -C -1 ; WX 737 ; N registered ; B 54 -19 837 737 ; -C -1 ; WX 778 ; N Gbreve ; B 111 -19 799 926 ; -C -1 ; WX 278 ; N Idotaccent ; B 91 0 377 901 ; -C -1 ; WX 600 ; N summation ; B 15 -10 671 706 ; -C -1 ; WX 667 ; N Egrave ; B 86 0 762 929 ; -C -1 ; WX 333 ; N racute ; B 77 0 475 734 ; -C -1 ; WX 556 ; N omacron ; B 83 -14 585 684 ; -C -1 ; WX 611 ; N Zacute ; B 23 0 741 929 ; -C -1 ; WX 611 ; N Zcaron ; B 23 0 741 929 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 620 674 ; -C -1 ; WX 722 ; N Eth ; B 69 0 764 718 ; -C -1 ; WX 722 ; N Ccedilla ; B 108 -225 782 737 ; -C -1 ; WX 222 ; N lcommaaccent ; B 25 -225 308 718 ; -C -1 ; WX 317 ; N tcaron ; B 102 -7 501 808 ; -C -1 ; WX 556 ; N eogonek ; B 84 -225 578 538 ; -C -1 ; WX 722 ; N Uogonek ; B 123 -225 797 718 ; -C -1 ; WX 667 ; N Aacute ; B 14 0 683 929 ; -C -1 ; WX 667 ; N Adieresis ; B 14 0 654 901 ; -C -1 ; WX 556 ; N egrave ; B 84 -15 578 734 ; -C -1 ; WX 500 ; N zacute ; B 31 0 571 734 ; -C -1 ; WX 222 ; N iogonek ; B -61 -225 308 718 ; -C -1 ; WX 778 ; N Oacute ; B 105 -19 826 929 ; -C -1 ; WX 556 ; N oacute ; B 83 -14 587 734 ; -C -1 ; WX 556 ; N amacron ; B 61 -15 580 684 ; -C -1 ; WX 500 ; N sacute ; B 63 -15 559 734 ; -C -1 ; WX 278 ; N idieresis ; B 95 0 416 706 ; -C -1 ; WX 778 ; N Ocircumflex ; B 105 -19 826 929 ; -C -1 ; WX 722 ; N Ugrave ; B 123 -19 797 929 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 556 ; N thorn ; B 14 -207 584 718 ; -C -1 ; WX 333 ; N twosuperior ; B 64 281 449 703 ; -C -1 ; WX 778 ; N Odieresis ; B 105 -19 826 901 ; -C -1 ; WX 556 ; N mu ; B 24 -207 600 523 ; -C -1 ; WX 278 ; N igrave ; B 95 0 310 734 ; -C -1 ; WX 556 ; N ohungarumlaut ; B 83 -14 677 734 ; -C -1 ; WX 667 ; N Eogonek ; B 86 -220 762 718 ; -C -1 ; WX 556 ; N dcroat ; B 84 -15 689 718 ; -C -1 ; WX 834 ; N threequarters ; B 130 -19 861 703 ; -C -1 ; WX 667 ; N Scedilla ; B 90 -225 713 737 ; -C -1 ; WX 299 ; N lcaron ; B 67 0 464 718 ; -C -1 ; WX 667 ; N Kcommaaccent ; B 76 -225 808 718 ; -C -1 ; WX 556 ; N Lacute ; B 76 0 555 929 ; -C -1 ; WX 1000 ; N trademark ; B 186 306 1056 718 ; -C -1 ; WX 556 ; N edotaccent ; B 84 -15 578 706 ; -C -1 ; WX 278 ; N Igrave ; B 91 0 351 929 ; -C -1 ; WX 278 ; N Imacron ; B 91 0 483 879 ; -C -1 ; WX 556 ; N Lcaron ; B 76 0 570 718 ; -C -1 ; WX 834 ; N onehalf ; B 114 -19 839 703 ; -C -1 ; WX 549 ; N lessequal ; B 26 0 666 674 ; -C -1 ; WX 556 ; N ocircumflex ; B 83 -14 585 734 ; -C -1 ; WX 556 ; N ntilde ; B 65 0 592 722 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 123 -19 801 929 ; -C -1 ; WX 667 ; N Eacute ; B 86 0 762 929 ; -C -1 ; WX 556 ; N emacron ; B 84 -15 580 684 ; -C -1 ; WX 556 ; N gbreve ; B 42 -220 610 731 ; -C -1 ; WX 834 ; N onequarter ; B 150 -19 802 703 ; -C -1 ; WX 667 ; N Scaron ; B 90 -19 713 929 ; -C -1 ; WX 667 ; N Scommaaccent ; B 90 -225 713 737 ; -C -1 ; WX 778 ; N Ohungarumlaut ; B 105 -19 829 929 ; -C -1 ; WX 400 ; N degree ; B 169 411 468 703 ; -C -1 ; WX 556 ; N ograve ; B 83 -14 585 734 ; -C -1 ; WX 722 ; N Ccaron ; B 108 -19 782 929 ; -C -1 ; WX 556 ; N ugrave ; B 94 -15 600 734 ; -C -1 ; WX 453 ; N radical ; B 79 -80 617 762 ; -C -1 ; WX 722 ; N Dcaron ; B 81 0 764 929 ; -C -1 ; WX 333 ; N rcommaaccent ; B 30 -225 446 538 ; -C -1 ; WX 722 ; N Ntilde ; B 76 0 799 917 ; -C -1 ; WX 556 ; N otilde ; B 83 -14 602 722 ; -C -1 ; WX 722 ; N Rcommaaccent ; B 88 -225 773 718 ; -C -1 ; WX 556 ; N Lcommaaccent ; B 76 -225 555 718 ; -C -1 ; WX 667 ; N Atilde ; B 14 0 699 917 ; -C -1 ; WX 667 ; N Aogonek ; B 14 -225 654 718 ; -C -1 ; WX 667 ; N Aring ; B 14 0 654 931 ; -C -1 ; WX 778 ; N Otilde ; B 105 -19 826 917 ; -C -1 ; WX 500 ; N zdotaccent ; B 31 0 571 706 ; -C -1 ; WX 667 ; N Ecaron ; B 86 0 762 929 ; -C -1 ; WX 278 ; N Iogonek ; B -33 -225 341 718 ; -C -1 ; WX 500 ; N kcommaaccent ; B 67 -225 600 718 ; -C -1 ; WX 584 ; N minus ; B 85 216 606 289 ; -C -1 ; WX 278 ; N Icircumflex ; B 91 0 452 929 ; -C -1 ; WX 556 ; N ncaron ; B 65 0 580 734 ; -C -1 ; WX 278 ; N tcommaaccent ; B 63 -225 368 669 ; -C -1 ; WX 584 ; N logicalnot ; B 106 108 628 390 ; -C -1 ; WX 556 ; N odieresis ; B 83 -14 585 706 ; -C -1 ; WX 556 ; N udieresis ; B 94 -15 600 706 ; -C -1 ; WX 549 ; N notequal ; B 34 -35 623 551 ; -C -1 ; WX 556 ; N gcommaaccent ; B 42 -220 610 822 ; -C -1 ; WX 556 ; N eth ; B 81 -15 617 737 ; -C -1 ; WX 500 ; N zcaron ; B 31 0 571 734 ; -C -1 ; WX 556 ; N ncommaaccent ; B 65 -225 573 538 ; -C -1 ; WX 333 ; N onesuperior ; B 166 281 371 703 ; -C -1 ; WX 278 ; N imacron ; B 95 0 417 684 ; -C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2705 -KPX A C -30 -KPX A Cacute -30 -KPX A Ccaron -30 -KPX A Ccedilla -30 -KPX A G -30 -KPX A Gbreve -30 -KPX A Gcommaaccent -30 -KPX A O -30 -KPX A Oacute -30 -KPX A Ocircumflex -30 -KPX A Odieresis -30 -KPX A Ograve -30 -KPX A Ohungarumlaut -30 -KPX A Omacron -30 -KPX A Oslash -30 -KPX A Otilde -30 -KPX A Q -30 -KPX A T -120 -KPX A Tcaron -120 -KPX A Tcommaaccent -120 -KPX A U -50 -KPX A Uacute -50 -KPX A Ucircumflex -50 -KPX A Udieresis -50 -KPX A Ugrave -50 -KPX A Uhungarumlaut -50 -KPX A Umacron -50 -KPX A Uogonek -50 -KPX A Uring -50 -KPX A V -70 -KPX A W -50 -KPX A Y -100 -KPX A Yacute -100 -KPX A Ydieresis -100 -KPX A u -30 -KPX A uacute -30 -KPX A ucircumflex -30 -KPX A udieresis -30 -KPX A ugrave -30 -KPX A uhungarumlaut -30 -KPX A umacron -30 -KPX A uogonek -30 -KPX A uring -30 -KPX A v -40 -KPX A w -40 -KPX A y -40 -KPX A yacute -40 -KPX A ydieresis -40 -KPX Aacute C -30 -KPX Aacute Cacute -30 -KPX Aacute Ccaron -30 -KPX Aacute Ccedilla -30 -KPX Aacute G -30 -KPX Aacute Gbreve -30 -KPX Aacute Gcommaaccent -30 -KPX Aacute O -30 -KPX Aacute Oacute -30 -KPX Aacute Ocircumflex -30 -KPX Aacute Odieresis -30 -KPX Aacute Ograve -30 -KPX Aacute Ohungarumlaut -30 -KPX Aacute Omacron -30 -KPX Aacute Oslash -30 -KPX Aacute Otilde -30 -KPX Aacute Q -30 -KPX Aacute T -120 -KPX Aacute Tcaron -120 -KPX Aacute Tcommaaccent -120 -KPX Aacute U -50 -KPX Aacute Uacute -50 -KPX Aacute Ucircumflex -50 -KPX Aacute Udieresis -50 -KPX Aacute Ugrave -50 -KPX Aacute Uhungarumlaut -50 -KPX Aacute Umacron -50 -KPX Aacute Uogonek -50 -KPX Aacute Uring -50 -KPX Aacute V -70 -KPX Aacute W -50 -KPX Aacute Y -100 -KPX Aacute Yacute -100 -KPX Aacute Ydieresis -100 -KPX Aacute u -30 -KPX Aacute uacute -30 -KPX Aacute ucircumflex -30 -KPX Aacute udieresis -30 -KPX Aacute ugrave -30 -KPX Aacute uhungarumlaut -30 -KPX Aacute umacron -30 -KPX Aacute uogonek -30 -KPX Aacute uring -30 -KPX Aacute v -40 -KPX Aacute w -40 -KPX Aacute y -40 -KPX Aacute yacute -40 -KPX Aacute ydieresis -40 -KPX Abreve C -30 -KPX Abreve Cacute -30 -KPX Abreve Ccaron -30 -KPX Abreve Ccedilla -30 -KPX Abreve G -30 -KPX Abreve Gbreve -30 -KPX Abreve Gcommaaccent -30 -KPX Abreve O -30 -KPX Abreve Oacute -30 -KPX Abreve Ocircumflex -30 -KPX Abreve Odieresis -30 -KPX Abreve Ograve -30 -KPX Abreve Ohungarumlaut -30 -KPX Abreve Omacron -30 -KPX Abreve Oslash -30 -KPX Abreve Otilde -30 -KPX Abreve Q -30 -KPX Abreve T -120 -KPX Abreve Tcaron -120 -KPX Abreve Tcommaaccent -120 -KPX Abreve U -50 -KPX Abreve Uacute -50 -KPX Abreve Ucircumflex -50 -KPX Abreve Udieresis -50 -KPX Abreve Ugrave -50 -KPX Abreve Uhungarumlaut -50 -KPX Abreve Umacron -50 -KPX Abreve Uogonek -50 -KPX Abreve Uring -50 -KPX Abreve V -70 -KPX Abreve W -50 -KPX Abreve Y -100 -KPX Abreve Yacute -100 -KPX Abreve Ydieresis -100 -KPX Abreve u -30 -KPX Abreve uacute -30 -KPX Abreve ucircumflex -30 -KPX Abreve udieresis -30 -KPX Abreve ugrave -30 -KPX Abreve uhungarumlaut -30 -KPX Abreve umacron -30 -KPX Abreve uogonek -30 -KPX Abreve uring -30 -KPX Abreve v -40 -KPX Abreve w -40 -KPX Abreve y -40 -KPX Abreve yacute -40 -KPX Abreve ydieresis -40 -KPX Acircumflex C -30 -KPX Acircumflex Cacute -30 -KPX Acircumflex Ccaron -30 -KPX Acircumflex Ccedilla -30 -KPX Acircumflex G -30 -KPX Acircumflex Gbreve -30 -KPX Acircumflex Gcommaaccent -30 -KPX Acircumflex O -30 -KPX Acircumflex Oacute -30 -KPX Acircumflex Ocircumflex -30 -KPX Acircumflex Odieresis -30 -KPX Acircumflex Ograve -30 -KPX Acircumflex Ohungarumlaut -30 -KPX Acircumflex Omacron -30 -KPX Acircumflex Oslash -30 -KPX Acircumflex Otilde -30 -KPX Acircumflex Q -30 -KPX Acircumflex T -120 -KPX Acircumflex Tcaron -120 -KPX Acircumflex Tcommaaccent -120 -KPX Acircumflex U -50 -KPX Acircumflex Uacute -50 -KPX Acircumflex Ucircumflex -50 -KPX Acircumflex Udieresis -50 -KPX Acircumflex Ugrave -50 -KPX Acircumflex Uhungarumlaut -50 -KPX Acircumflex Umacron -50 -KPX Acircumflex Uogonek -50 -KPX Acircumflex Uring -50 -KPX Acircumflex V -70 -KPX Acircumflex W -50 -KPX Acircumflex Y -100 -KPX Acircumflex Yacute -100 -KPX Acircumflex Ydieresis -100 -KPX Acircumflex u -30 -KPX Acircumflex uacute -30 -KPX Acircumflex ucircumflex -30 -KPX Acircumflex udieresis -30 -KPX Acircumflex ugrave -30 -KPX Acircumflex uhungarumlaut -30 -KPX Acircumflex umacron -30 -KPX Acircumflex uogonek -30 -KPX Acircumflex uring -30 -KPX Acircumflex v -40 -KPX Acircumflex w -40 -KPX Acircumflex y -40 -KPX Acircumflex yacute -40 -KPX Acircumflex ydieresis -40 -KPX Adieresis C -30 -KPX Adieresis Cacute -30 -KPX Adieresis Ccaron -30 -KPX Adieresis Ccedilla -30 -KPX Adieresis G -30 -KPX Adieresis Gbreve -30 -KPX Adieresis Gcommaaccent -30 -KPX Adieresis O -30 -KPX Adieresis Oacute -30 -KPX Adieresis Ocircumflex -30 -KPX Adieresis Odieresis -30 -KPX Adieresis Ograve -30 -KPX Adieresis Ohungarumlaut -30 -KPX Adieresis Omacron -30 -KPX Adieresis Oslash -30 -KPX Adieresis Otilde -30 -KPX Adieresis Q -30 -KPX Adieresis T -120 -KPX Adieresis Tcaron -120 -KPX Adieresis Tcommaaccent -120 -KPX Adieresis U -50 -KPX Adieresis Uacute -50 -KPX Adieresis Ucircumflex -50 -KPX Adieresis Udieresis -50 -KPX Adieresis Ugrave -50 -KPX Adieresis Uhungarumlaut -50 -KPX Adieresis Umacron -50 -KPX Adieresis Uogonek -50 -KPX Adieresis Uring -50 -KPX Adieresis V -70 -KPX Adieresis W -50 -KPX Adieresis Y -100 -KPX Adieresis Yacute -100 -KPX Adieresis Ydieresis -100 -KPX Adieresis u -30 -KPX Adieresis uacute -30 -KPX Adieresis ucircumflex -30 -KPX Adieresis udieresis -30 -KPX Adieresis ugrave -30 -KPX Adieresis uhungarumlaut -30 -KPX Adieresis umacron -30 -KPX Adieresis uogonek -30 -KPX Adieresis uring -30 -KPX Adieresis v -40 -KPX Adieresis w -40 -KPX Adieresis y -40 -KPX Adieresis yacute -40 -KPX Adieresis ydieresis -40 -KPX Agrave C -30 -KPX Agrave Cacute -30 -KPX Agrave Ccaron -30 -KPX Agrave Ccedilla -30 -KPX Agrave G -30 -KPX Agrave Gbreve -30 -KPX Agrave Gcommaaccent -30 -KPX Agrave O -30 -KPX Agrave Oacute -30 -KPX Agrave Ocircumflex -30 -KPX Agrave Odieresis -30 -KPX Agrave Ograve -30 -KPX Agrave Ohungarumlaut -30 -KPX Agrave Omacron -30 -KPX Agrave Oslash -30 -KPX Agrave Otilde -30 -KPX Agrave Q -30 -KPX Agrave T -120 -KPX Agrave Tcaron -120 -KPX Agrave Tcommaaccent -120 -KPX Agrave U -50 -KPX Agrave Uacute -50 -KPX Agrave Ucircumflex -50 -KPX Agrave Udieresis -50 -KPX Agrave Ugrave -50 -KPX Agrave Uhungarumlaut -50 -KPX Agrave Umacron -50 -KPX Agrave Uogonek -50 -KPX Agrave Uring -50 -KPX Agrave V -70 -KPX Agrave W -50 -KPX Agrave Y -100 -KPX Agrave Yacute -100 -KPX Agrave Ydieresis -100 -KPX Agrave u -30 -KPX Agrave uacute -30 -KPX Agrave ucircumflex -30 -KPX Agrave udieresis -30 -KPX Agrave ugrave -30 -KPX Agrave uhungarumlaut -30 -KPX Agrave umacron -30 -KPX Agrave uogonek -30 -KPX Agrave uring -30 -KPX Agrave v -40 -KPX Agrave w -40 -KPX Agrave y -40 -KPX Agrave yacute -40 -KPX Agrave ydieresis -40 -KPX Amacron C -30 -KPX Amacron Cacute -30 -KPX Amacron Ccaron -30 -KPX Amacron Ccedilla -30 -KPX Amacron G -30 -KPX Amacron Gbreve -30 -KPX Amacron Gcommaaccent -30 -KPX Amacron O -30 -KPX Amacron Oacute -30 -KPX Amacron Ocircumflex -30 -KPX Amacron Odieresis -30 -KPX Amacron Ograve -30 -KPX Amacron Ohungarumlaut -30 -KPX Amacron Omacron -30 -KPX Amacron Oslash -30 -KPX Amacron Otilde -30 -KPX Amacron Q -30 -KPX Amacron T -120 -KPX Amacron Tcaron -120 -KPX Amacron Tcommaaccent -120 -KPX Amacron U -50 -KPX Amacron Uacute -50 -KPX Amacron Ucircumflex -50 -KPX Amacron Udieresis -50 -KPX Amacron Ugrave -50 -KPX Amacron Uhungarumlaut -50 -KPX Amacron Umacron -50 -KPX Amacron Uogonek -50 -KPX Amacron Uring -50 -KPX Amacron V -70 -KPX Amacron W -50 -KPX Amacron Y -100 -KPX Amacron Yacute -100 -KPX Amacron Ydieresis -100 -KPX Amacron u -30 -KPX Amacron uacute -30 -KPX Amacron ucircumflex -30 -KPX Amacron udieresis -30 -KPX Amacron ugrave -30 -KPX Amacron uhungarumlaut -30 -KPX Amacron umacron -30 -KPX Amacron uogonek -30 -KPX Amacron uring -30 -KPX Amacron v -40 -KPX Amacron w -40 -KPX Amacron y -40 -KPX Amacron yacute -40 -KPX Amacron ydieresis -40 -KPX Aogonek C -30 -KPX Aogonek Cacute -30 -KPX Aogonek Ccaron -30 -KPX Aogonek Ccedilla -30 -KPX Aogonek G -30 -KPX Aogonek Gbreve -30 -KPX Aogonek Gcommaaccent -30 -KPX Aogonek O -30 -KPX Aogonek Oacute -30 -KPX Aogonek Ocircumflex -30 -KPX Aogonek Odieresis -30 -KPX Aogonek Ograve -30 -KPX Aogonek Ohungarumlaut -30 -KPX Aogonek Omacron -30 -KPX Aogonek Oslash -30 -KPX Aogonek Otilde -30 -KPX Aogonek Q -30 -KPX Aogonek T -120 -KPX Aogonek Tcaron -120 -KPX Aogonek Tcommaaccent -120 -KPX Aogonek U -50 -KPX Aogonek Uacute -50 -KPX Aogonek Ucircumflex -50 -KPX Aogonek Udieresis -50 -KPX Aogonek Ugrave -50 -KPX Aogonek Uhungarumlaut -50 -KPX Aogonek Umacron -50 -KPX Aogonek Uogonek -50 -KPX Aogonek Uring -50 -KPX Aogonek V -70 -KPX Aogonek W -50 -KPX Aogonek Y -100 -KPX Aogonek Yacute -100 -KPX Aogonek Ydieresis -100 -KPX Aogonek u -30 -KPX Aogonek uacute -30 -KPX Aogonek ucircumflex -30 -KPX Aogonek udieresis -30 -KPX Aogonek ugrave -30 -KPX Aogonek uhungarumlaut -30 -KPX Aogonek umacron -30 -KPX Aogonek uogonek -30 -KPX Aogonek uring -30 -KPX Aogonek v -40 -KPX Aogonek w -40 -KPX Aogonek y -40 -KPX Aogonek yacute -40 -KPX Aogonek ydieresis -40 -KPX Aring C -30 -KPX Aring Cacute -30 -KPX Aring Ccaron -30 -KPX Aring Ccedilla -30 -KPX Aring G -30 -KPX Aring Gbreve -30 -KPX Aring Gcommaaccent -30 -KPX Aring O -30 -KPX Aring Oacute -30 -KPX Aring Ocircumflex -30 -KPX Aring Odieresis -30 -KPX Aring Ograve -30 -KPX Aring Ohungarumlaut -30 -KPX Aring Omacron -30 -KPX Aring Oslash -30 -KPX Aring Otilde -30 -KPX Aring Q -30 -KPX Aring T -120 -KPX Aring Tcaron -120 -KPX Aring Tcommaaccent -120 -KPX Aring U -50 -KPX Aring Uacute -50 -KPX Aring Ucircumflex -50 -KPX Aring Udieresis -50 -KPX Aring Ugrave -50 -KPX Aring Uhungarumlaut -50 -KPX Aring Umacron -50 -KPX Aring Uogonek -50 -KPX Aring Uring -50 -KPX Aring V -70 -KPX Aring W -50 -KPX Aring Y -100 -KPX Aring Yacute -100 -KPX Aring Ydieresis -100 -KPX Aring u -30 -KPX Aring uacute -30 -KPX Aring ucircumflex -30 -KPX Aring udieresis -30 -KPX Aring ugrave -30 -KPX Aring uhungarumlaut -30 -KPX Aring umacron -30 -KPX Aring uogonek -30 -KPX Aring uring -30 -KPX Aring v -40 -KPX Aring w -40 -KPX Aring y -40 -KPX Aring yacute -40 -KPX Aring ydieresis -40 -KPX Atilde C -30 -KPX Atilde Cacute -30 -KPX Atilde Ccaron -30 -KPX Atilde Ccedilla -30 -KPX Atilde G -30 -KPX Atilde Gbreve -30 -KPX Atilde Gcommaaccent -30 -KPX Atilde O -30 -KPX Atilde Oacute -30 -KPX Atilde Ocircumflex -30 -KPX Atilde Odieresis -30 -KPX Atilde Ograve -30 -KPX Atilde Ohungarumlaut -30 -KPX Atilde Omacron -30 -KPX Atilde Oslash -30 -KPX Atilde Otilde -30 -KPX Atilde Q -30 -KPX Atilde T -120 -KPX Atilde Tcaron -120 -KPX Atilde Tcommaaccent -120 -KPX Atilde U -50 -KPX Atilde Uacute -50 -KPX Atilde Ucircumflex -50 -KPX Atilde Udieresis -50 -KPX Atilde Ugrave -50 -KPX Atilde Uhungarumlaut -50 -KPX Atilde Umacron -50 -KPX Atilde Uogonek -50 -KPX Atilde Uring -50 -KPX Atilde V -70 -KPX Atilde W -50 -KPX Atilde Y -100 -KPX Atilde Yacute -100 -KPX Atilde Ydieresis -100 -KPX Atilde u -30 -KPX Atilde uacute -30 -KPX Atilde ucircumflex -30 -KPX Atilde udieresis -30 -KPX Atilde ugrave -30 -KPX Atilde uhungarumlaut -30 -KPX Atilde umacron -30 -KPX Atilde uogonek -30 -KPX Atilde uring -30 -KPX Atilde v -40 -KPX Atilde w -40 -KPX Atilde y -40 -KPX Atilde yacute -40 -KPX Atilde ydieresis -40 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX B comma -20 -KPX B period -20 -KPX C comma -30 -KPX C period -30 -KPX Cacute comma -30 -KPX Cacute period -30 -KPX Ccaron comma -30 -KPX Ccaron period -30 -KPX Ccedilla comma -30 -KPX Ccedilla period -30 -KPX D A -40 -KPX D Aacute -40 -KPX D Abreve -40 -KPX D Acircumflex -40 -KPX D Adieresis -40 -KPX D Agrave -40 -KPX D Amacron -40 -KPX D Aogonek -40 -KPX D Aring -40 -KPX D Atilde -40 -KPX D V -70 -KPX D W -40 -KPX D Y -90 -KPX D Yacute -90 -KPX D Ydieresis -90 -KPX D comma -70 -KPX D period -70 -KPX Dcaron A -40 -KPX Dcaron Aacute -40 -KPX Dcaron Abreve -40 -KPX Dcaron Acircumflex -40 -KPX Dcaron Adieresis -40 -KPX Dcaron Agrave -40 -KPX Dcaron Amacron -40 -KPX Dcaron Aogonek -40 -KPX Dcaron Aring -40 -KPX Dcaron Atilde -40 -KPX Dcaron V -70 -KPX Dcaron W -40 -KPX Dcaron Y -90 -KPX Dcaron Yacute -90 -KPX Dcaron Ydieresis -90 -KPX Dcaron comma -70 -KPX Dcaron period -70 -KPX Dcroat A -40 -KPX Dcroat Aacute -40 -KPX Dcroat Abreve -40 -KPX Dcroat Acircumflex -40 -KPX Dcroat Adieresis -40 -KPX Dcroat Agrave -40 -KPX Dcroat Amacron -40 -KPX Dcroat Aogonek -40 -KPX Dcroat Aring -40 -KPX Dcroat Atilde -40 -KPX Dcroat V -70 -KPX Dcroat W -40 -KPX Dcroat Y -90 -KPX Dcroat Yacute -90 -KPX Dcroat Ydieresis -90 -KPX Dcroat comma -70 -KPX Dcroat period -70 -KPX F A -80 -KPX F Aacute -80 -KPX F Abreve -80 -KPX F Acircumflex -80 -KPX F Adieresis -80 -KPX F Agrave -80 -KPX F Amacron -80 -KPX F Aogonek -80 -KPX F Aring -80 -KPX F Atilde -80 -KPX F a -50 -KPX F aacute -50 -KPX F abreve -50 -KPX F acircumflex -50 -KPX F adieresis -50 -KPX F agrave -50 -KPX F amacron -50 -KPX F aogonek -50 -KPX F aring -50 -KPX F atilde -50 -KPX F comma -150 -KPX F e -30 -KPX F eacute -30 -KPX F ecaron -30 -KPX F ecircumflex -30 -KPX F edieresis -30 -KPX F edotaccent -30 -KPX F egrave -30 -KPX F emacron -30 -KPX F eogonek -30 -KPX F o -30 -KPX F oacute -30 -KPX F ocircumflex -30 -KPX F odieresis -30 -KPX F ograve -30 -KPX F ohungarumlaut -30 -KPX F omacron -30 -KPX F oslash -30 -KPX F otilde -30 -KPX F period -150 -KPX F r -45 -KPX F racute -45 -KPX F rcaron -45 -KPX F rcommaaccent -45 -KPX J A -20 -KPX J Aacute -20 -KPX J Abreve -20 -KPX J Acircumflex -20 -KPX J Adieresis -20 -KPX J Agrave -20 -KPX J Amacron -20 -KPX J Aogonek -20 -KPX J Aring -20 -KPX J Atilde -20 -KPX J a -20 -KPX J aacute -20 -KPX J abreve -20 -KPX J acircumflex -20 -KPX J adieresis -20 -KPX J agrave -20 -KPX J amacron -20 -KPX J aogonek -20 -KPX J aring -20 -KPX J atilde -20 -KPX J comma -30 -KPX J period -30 -KPX J u -20 -KPX J uacute -20 -KPX J ucircumflex -20 -KPX J udieresis -20 -KPX J ugrave -20 -KPX J uhungarumlaut -20 -KPX J umacron -20 -KPX J uogonek -20 -KPX J uring -20 -KPX K O -50 -KPX K Oacute -50 -KPX K Ocircumflex -50 -KPX K Odieresis -50 -KPX K Ograve -50 -KPX K Ohungarumlaut -50 -KPX K Omacron -50 -KPX K Oslash -50 -KPX K Otilde -50 -KPX K e -40 -KPX K eacute -40 -KPX K ecaron -40 -KPX K ecircumflex -40 -KPX K edieresis -40 -KPX K edotaccent -40 -KPX K egrave -40 -KPX K emacron -40 -KPX K eogonek -40 -KPX K o -40 -KPX K oacute -40 -KPX K ocircumflex -40 -KPX K odieresis -40 -KPX K ograve -40 -KPX K ohungarumlaut -40 -KPX K omacron -40 -KPX K oslash -40 -KPX K otilde -40 -KPX K u -30 -KPX K uacute -30 -KPX K ucircumflex -30 -KPX K udieresis -30 -KPX K ugrave -30 -KPX K uhungarumlaut -30 -KPX K umacron -30 -KPX K uogonek -30 -KPX K uring -30 -KPX K y -50 -KPX K yacute -50 -KPX K ydieresis -50 -KPX Kcommaaccent O -50 -KPX Kcommaaccent Oacute -50 -KPX Kcommaaccent Ocircumflex -50 -KPX Kcommaaccent Odieresis -50 -KPX Kcommaaccent Ograve -50 -KPX Kcommaaccent Ohungarumlaut -50 -KPX Kcommaaccent Omacron -50 -KPX Kcommaaccent Oslash -50 -KPX Kcommaaccent Otilde -50 -KPX Kcommaaccent e -40 -KPX Kcommaaccent eacute -40 -KPX Kcommaaccent ecaron -40 -KPX Kcommaaccent ecircumflex -40 -KPX Kcommaaccent edieresis -40 -KPX Kcommaaccent edotaccent -40 -KPX Kcommaaccent egrave -40 -KPX Kcommaaccent emacron -40 -KPX Kcommaaccent eogonek -40 -KPX Kcommaaccent o -40 -KPX Kcommaaccent oacute -40 -KPX Kcommaaccent ocircumflex -40 -KPX Kcommaaccent odieresis -40 -KPX Kcommaaccent ograve -40 -KPX Kcommaaccent ohungarumlaut -40 -KPX Kcommaaccent omacron -40 -KPX Kcommaaccent oslash -40 -KPX Kcommaaccent otilde -40 -KPX Kcommaaccent u -30 -KPX Kcommaaccent uacute -30 -KPX Kcommaaccent ucircumflex -30 -KPX Kcommaaccent udieresis -30 -KPX Kcommaaccent ugrave -30 -KPX Kcommaaccent uhungarumlaut -30 -KPX Kcommaaccent umacron -30 -KPX Kcommaaccent uogonek -30 -KPX Kcommaaccent uring -30 -KPX Kcommaaccent y -50 -KPX Kcommaaccent yacute -50 -KPX Kcommaaccent ydieresis -50 -KPX L T -110 -KPX L Tcaron -110 -KPX L Tcommaaccent -110 -KPX L V -110 -KPX L W -70 -KPX L Y -140 -KPX L Yacute -140 -KPX L Ydieresis -140 -KPX L quotedblright -140 -KPX L quoteright -160 -KPX L y -30 -KPX L yacute -30 -KPX L ydieresis -30 -KPX Lacute T -110 -KPX Lacute Tcaron -110 -KPX Lacute Tcommaaccent -110 -KPX Lacute V -110 -KPX Lacute W -70 -KPX Lacute Y -140 -KPX Lacute Yacute -140 -KPX Lacute Ydieresis -140 -KPX Lacute quotedblright -140 -KPX Lacute quoteright -160 -KPX Lacute y -30 -KPX Lacute yacute -30 -KPX Lacute ydieresis -30 -KPX Lcaron T -110 -KPX Lcaron Tcaron -110 -KPX Lcaron Tcommaaccent -110 -KPX Lcaron V -110 -KPX Lcaron W -70 -KPX Lcaron Y -140 -KPX Lcaron Yacute -140 -KPX Lcaron Ydieresis -140 -KPX Lcaron quotedblright -140 -KPX Lcaron quoteright -160 -KPX Lcaron y -30 -KPX Lcaron yacute -30 -KPX Lcaron ydieresis -30 -KPX Lcommaaccent T -110 -KPX Lcommaaccent Tcaron -110 -KPX Lcommaaccent Tcommaaccent -110 -KPX Lcommaaccent V -110 -KPX Lcommaaccent W -70 -KPX Lcommaaccent Y -140 -KPX Lcommaaccent Yacute -140 -KPX Lcommaaccent Ydieresis -140 -KPX Lcommaaccent quotedblright -140 -KPX Lcommaaccent quoteright -160 -KPX Lcommaaccent y -30 -KPX Lcommaaccent yacute -30 -KPX Lcommaaccent ydieresis -30 -KPX Lslash T -110 -KPX Lslash Tcaron -110 -KPX Lslash Tcommaaccent -110 -KPX Lslash V -110 -KPX Lslash W -70 -KPX Lslash Y -140 -KPX Lslash Yacute -140 -KPX Lslash Ydieresis -140 -KPX Lslash quotedblright -140 -KPX Lslash quoteright -160 -KPX Lslash y -30 -KPX Lslash yacute -30 -KPX Lslash ydieresis -30 -KPX O A -20 -KPX O Aacute -20 -KPX O Abreve -20 -KPX O Acircumflex -20 -KPX O Adieresis -20 -KPX O Agrave -20 -KPX O Amacron -20 -KPX O Aogonek -20 -KPX O Aring -20 -KPX O Atilde -20 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -30 -KPX O X -60 -KPX O Y -70 -KPX O Yacute -70 -KPX O Ydieresis -70 -KPX O comma -40 -KPX O period -40 -KPX Oacute A -20 -KPX Oacute Aacute -20 -KPX Oacute Abreve -20 -KPX Oacute Acircumflex -20 -KPX Oacute Adieresis -20 -KPX Oacute Agrave -20 -KPX Oacute Amacron -20 -KPX Oacute Aogonek -20 -KPX Oacute Aring -20 -KPX Oacute Atilde -20 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -30 -KPX Oacute X -60 -KPX Oacute Y -70 -KPX Oacute Yacute -70 -KPX Oacute Ydieresis -70 -KPX Oacute comma -40 -KPX Oacute period -40 -KPX Ocircumflex A -20 -KPX Ocircumflex Aacute -20 -KPX Ocircumflex Abreve -20 -KPX Ocircumflex Acircumflex -20 -KPX Ocircumflex Adieresis -20 -KPX Ocircumflex Agrave -20 -KPX Ocircumflex Amacron -20 -KPX Ocircumflex Aogonek -20 -KPX Ocircumflex Aring -20 -KPX Ocircumflex Atilde -20 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -30 -KPX Ocircumflex X -60 -KPX Ocircumflex Y -70 -KPX Ocircumflex Yacute -70 -KPX Ocircumflex Ydieresis -70 -KPX Ocircumflex comma -40 -KPX Ocircumflex period -40 -KPX Odieresis A -20 -KPX Odieresis Aacute -20 -KPX Odieresis Abreve -20 -KPX Odieresis Acircumflex -20 -KPX Odieresis Adieresis -20 -KPX Odieresis Agrave -20 -KPX Odieresis Amacron -20 -KPX Odieresis Aogonek -20 -KPX Odieresis Aring -20 -KPX Odieresis Atilde -20 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -30 -KPX Odieresis X -60 -KPX Odieresis Y -70 -KPX Odieresis Yacute -70 -KPX Odieresis Ydieresis -70 -KPX Odieresis comma -40 -KPX Odieresis period -40 -KPX Ograve A -20 -KPX Ograve Aacute -20 -KPX Ograve Abreve -20 -KPX Ograve Acircumflex -20 -KPX Ograve Adieresis -20 -KPX Ograve Agrave -20 -KPX Ograve Amacron -20 -KPX Ograve Aogonek -20 -KPX Ograve Aring -20 -KPX Ograve Atilde -20 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -30 -KPX Ograve X -60 -KPX Ograve Y -70 -KPX Ograve Yacute -70 -KPX Ograve Ydieresis -70 -KPX Ograve comma -40 -KPX Ograve period -40 -KPX Ohungarumlaut A -20 -KPX Ohungarumlaut Aacute -20 -KPX Ohungarumlaut Abreve -20 -KPX Ohungarumlaut Acircumflex -20 -KPX Ohungarumlaut Adieresis -20 -KPX Ohungarumlaut Agrave -20 -KPX Ohungarumlaut Amacron -20 -KPX Ohungarumlaut Aogonek -20 -KPX Ohungarumlaut Aring -20 -KPX Ohungarumlaut Atilde -20 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -30 -KPX Ohungarumlaut X -60 -KPX Ohungarumlaut Y -70 -KPX Ohungarumlaut Yacute -70 -KPX Ohungarumlaut Ydieresis -70 -KPX Ohungarumlaut comma -40 -KPX Ohungarumlaut period -40 -KPX Omacron A -20 -KPX Omacron Aacute -20 -KPX Omacron Abreve -20 -KPX Omacron Acircumflex -20 -KPX Omacron Adieresis -20 -KPX Omacron Agrave -20 -KPX Omacron Amacron -20 -KPX Omacron Aogonek -20 -KPX Omacron Aring -20 -KPX Omacron Atilde -20 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -30 -KPX Omacron X -60 -KPX Omacron Y -70 -KPX Omacron Yacute -70 -KPX Omacron Ydieresis -70 -KPX Omacron comma -40 -KPX Omacron period -40 -KPX Oslash A -20 -KPX Oslash Aacute -20 -KPX Oslash Abreve -20 -KPX Oslash Acircumflex -20 -KPX Oslash Adieresis -20 -KPX Oslash Agrave -20 -KPX Oslash Amacron -20 -KPX Oslash Aogonek -20 -KPX Oslash Aring -20 -KPX Oslash Atilde -20 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -30 -KPX Oslash X -60 -KPX Oslash Y -70 -KPX Oslash Yacute -70 -KPX Oslash Ydieresis -70 -KPX Oslash comma -40 -KPX Oslash period -40 -KPX Otilde A -20 -KPX Otilde Aacute -20 -KPX Otilde Abreve -20 -KPX Otilde Acircumflex -20 -KPX Otilde Adieresis -20 -KPX Otilde Agrave -20 -KPX Otilde Amacron -20 -KPX Otilde Aogonek -20 -KPX Otilde Aring -20 -KPX Otilde Atilde -20 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -30 -KPX Otilde X -60 -KPX Otilde Y -70 -KPX Otilde Yacute -70 -KPX Otilde Ydieresis -70 -KPX Otilde comma -40 -KPX Otilde period -40 -KPX P A -120 -KPX P Aacute -120 -KPX P Abreve -120 -KPX P Acircumflex -120 -KPX P Adieresis -120 -KPX P Agrave -120 -KPX P Amacron -120 -KPX P Aogonek -120 -KPX P Aring -120 -KPX P Atilde -120 -KPX P a -40 -KPX P aacute -40 -KPX P abreve -40 -KPX P acircumflex -40 -KPX P adieresis -40 -KPX P agrave -40 -KPX P amacron -40 -KPX P aogonek -40 -KPX P aring -40 -KPX P atilde -40 -KPX P comma -180 -KPX P e -50 -KPX P eacute -50 -KPX P ecaron -50 -KPX P ecircumflex -50 -KPX P edieresis -50 -KPX P edotaccent -50 -KPX P egrave -50 -KPX P emacron -50 -KPX P eogonek -50 -KPX P o -50 -KPX P oacute -50 -KPX P ocircumflex -50 -KPX P odieresis -50 -KPX P ograve -50 -KPX P ohungarumlaut -50 -KPX P omacron -50 -KPX P oslash -50 -KPX P otilde -50 -KPX P period -180 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX R O -20 -KPX R Oacute -20 -KPX R Ocircumflex -20 -KPX R Odieresis -20 -KPX R Ograve -20 -KPX R Ohungarumlaut -20 -KPX R Omacron -20 -KPX R Oslash -20 -KPX R Otilde -20 -KPX R T -30 -KPX R Tcaron -30 -KPX R Tcommaaccent -30 -KPX R U -40 -KPX R Uacute -40 -KPX R Ucircumflex -40 -KPX R Udieresis -40 -KPX R Ugrave -40 -KPX R Uhungarumlaut -40 -KPX R Umacron -40 -KPX R Uogonek -40 -KPX R Uring -40 -KPX R V -50 -KPX R W -30 -KPX R Y -50 -KPX R Yacute -50 -KPX R Ydieresis -50 -KPX Racute O -20 -KPX Racute Oacute -20 -KPX Racute Ocircumflex -20 -KPX Racute Odieresis -20 -KPX Racute Ograve -20 -KPX Racute Ohungarumlaut -20 -KPX Racute Omacron -20 -KPX Racute Oslash -20 -KPX Racute Otilde -20 -KPX Racute T -30 -KPX Racute Tcaron -30 -KPX Racute Tcommaaccent -30 -KPX Racute U -40 -KPX Racute Uacute -40 -KPX Racute Ucircumflex -40 -KPX Racute Udieresis -40 -KPX Racute Ugrave -40 -KPX Racute Uhungarumlaut -40 -KPX Racute Umacron -40 -KPX Racute Uogonek -40 -KPX Racute Uring -40 -KPX Racute V -50 -KPX Racute W -30 -KPX Racute Y -50 -KPX Racute Yacute -50 -KPX Racute Ydieresis -50 -KPX Rcaron O -20 -KPX Rcaron Oacute -20 -KPX Rcaron Ocircumflex -20 -KPX Rcaron Odieresis -20 -KPX Rcaron Ograve -20 -KPX Rcaron Ohungarumlaut -20 -KPX Rcaron Omacron -20 -KPX Rcaron Oslash -20 -KPX Rcaron Otilde -20 -KPX Rcaron T -30 -KPX Rcaron Tcaron -30 -KPX Rcaron Tcommaaccent -30 -KPX Rcaron U -40 -KPX Rcaron Uacute -40 -KPX Rcaron Ucircumflex -40 -KPX Rcaron Udieresis -40 -KPX Rcaron Ugrave -40 -KPX Rcaron Uhungarumlaut -40 -KPX Rcaron Umacron -40 -KPX Rcaron Uogonek -40 -KPX Rcaron Uring -40 -KPX Rcaron V -50 -KPX Rcaron W -30 -KPX Rcaron Y -50 -KPX Rcaron Yacute -50 -KPX Rcaron Ydieresis -50 -KPX Rcommaaccent O -20 -KPX Rcommaaccent Oacute -20 -KPX Rcommaaccent Ocircumflex -20 -KPX Rcommaaccent Odieresis -20 -KPX Rcommaaccent Ograve -20 -KPX Rcommaaccent Ohungarumlaut -20 -KPX Rcommaaccent Omacron -20 -KPX Rcommaaccent Oslash -20 -KPX Rcommaaccent Otilde -20 -KPX Rcommaaccent T -30 -KPX Rcommaaccent Tcaron -30 -KPX Rcommaaccent Tcommaaccent -30 -KPX Rcommaaccent U -40 -KPX Rcommaaccent Uacute -40 -KPX Rcommaaccent Ucircumflex -40 -KPX Rcommaaccent Udieresis -40 -KPX Rcommaaccent Ugrave -40 -KPX Rcommaaccent Uhungarumlaut -40 -KPX Rcommaaccent Umacron -40 -KPX Rcommaaccent Uogonek -40 -KPX Rcommaaccent Uring -40 -KPX Rcommaaccent V -50 -KPX Rcommaaccent W -30 -KPX Rcommaaccent Y -50 -KPX Rcommaaccent Yacute -50 -KPX Rcommaaccent Ydieresis -50 -KPX S comma -20 -KPX S period -20 -KPX Sacute comma -20 -KPX Sacute period -20 -KPX Scaron comma -20 -KPX Scaron period -20 -KPX Scedilla comma -20 -KPX Scedilla period -20 -KPX Scommaaccent comma -20 -KPX Scommaaccent period -20 -KPX T A -120 -KPX T Aacute -120 -KPX T Abreve -120 -KPX T Acircumflex -120 -KPX T Adieresis -120 -KPX T Agrave -120 -KPX T Amacron -120 -KPX T Aogonek -120 -KPX T Aring -120 -KPX T Atilde -120 -KPX T O -40 -KPX T Oacute -40 -KPX T Ocircumflex -40 -KPX T Odieresis -40 -KPX T Ograve -40 -KPX T Ohungarumlaut -40 -KPX T Omacron -40 -KPX T Oslash -40 -KPX T Otilde -40 -KPX T a -120 -KPX T aacute -120 -KPX T abreve -60 -KPX T acircumflex -120 -KPX T adieresis -120 -KPX T agrave -120 -KPX T amacron -60 -KPX T aogonek -120 -KPX T aring -120 -KPX T atilde -60 -KPX T colon -20 -KPX T comma -120 -KPX T e -120 -KPX T eacute -120 -KPX T ecaron -120 -KPX T ecircumflex -120 -KPX T edieresis -120 -KPX T edotaccent -120 -KPX T egrave -60 -KPX T emacron -60 -KPX T eogonek -120 -KPX T hyphen -140 -KPX T o -120 -KPX T oacute -120 -KPX T ocircumflex -120 -KPX T odieresis -120 -KPX T ograve -120 -KPX T ohungarumlaut -120 -KPX T omacron -60 -KPX T oslash -120 -KPX T otilde -60 -KPX T period -120 -KPX T r -120 -KPX T racute -120 -KPX T rcaron -120 -KPX T rcommaaccent -120 -KPX T semicolon -20 -KPX T u -120 -KPX T uacute -120 -KPX T ucircumflex -120 -KPX T udieresis -120 -KPX T ugrave -120 -KPX T uhungarumlaut -120 -KPX T umacron -60 -KPX T uogonek -120 -KPX T uring -120 -KPX T w -120 -KPX T y -120 -KPX T yacute -120 -KPX T ydieresis -60 -KPX Tcaron A -120 -KPX Tcaron Aacute -120 -KPX Tcaron Abreve -120 -KPX Tcaron Acircumflex -120 -KPX Tcaron Adieresis -120 -KPX Tcaron Agrave -120 -KPX Tcaron Amacron -120 -KPX Tcaron Aogonek -120 -KPX Tcaron Aring -120 -KPX Tcaron Atilde -120 -KPX Tcaron O -40 -KPX Tcaron Oacute -40 -KPX Tcaron Ocircumflex -40 -KPX Tcaron Odieresis -40 -KPX Tcaron Ograve -40 -KPX Tcaron Ohungarumlaut -40 -KPX Tcaron Omacron -40 -KPX Tcaron Oslash -40 -KPX Tcaron Otilde -40 -KPX Tcaron a -120 -KPX Tcaron aacute -120 -KPX Tcaron abreve -60 -KPX Tcaron acircumflex -120 -KPX Tcaron adieresis -120 -KPX Tcaron agrave -120 -KPX Tcaron amacron -60 -KPX Tcaron aogonek -120 -KPX Tcaron aring -120 -KPX Tcaron atilde -60 -KPX Tcaron colon -20 -KPX Tcaron comma -120 -KPX Tcaron e -120 -KPX Tcaron eacute -120 -KPX Tcaron ecaron -120 -KPX Tcaron ecircumflex -120 -KPX Tcaron edieresis -120 -KPX Tcaron edotaccent -120 -KPX Tcaron egrave -60 -KPX Tcaron emacron -60 -KPX Tcaron eogonek -120 -KPX Tcaron hyphen -140 -KPX Tcaron o -120 -KPX Tcaron oacute -120 -KPX Tcaron ocircumflex -120 -KPX Tcaron odieresis -120 -KPX Tcaron ograve -120 -KPX Tcaron ohungarumlaut -120 -KPX Tcaron omacron -60 -KPX Tcaron oslash -120 -KPX Tcaron otilde -60 -KPX Tcaron period -120 -KPX Tcaron r -120 -KPX Tcaron racute -120 -KPX Tcaron rcaron -120 -KPX Tcaron rcommaaccent -120 -KPX Tcaron semicolon -20 -KPX Tcaron u -120 -KPX Tcaron uacute -120 -KPX Tcaron ucircumflex -120 -KPX Tcaron udieresis -120 -KPX Tcaron ugrave -120 -KPX Tcaron uhungarumlaut -120 -KPX Tcaron umacron -60 -KPX Tcaron uogonek -120 -KPX Tcaron uring -120 -KPX Tcaron w -120 -KPX Tcaron y -120 -KPX Tcaron yacute -120 -KPX Tcaron ydieresis -60 -KPX Tcommaaccent A -120 -KPX Tcommaaccent Aacute -120 -KPX Tcommaaccent Abreve -120 -KPX Tcommaaccent Acircumflex -120 -KPX Tcommaaccent Adieresis -120 -KPX Tcommaaccent Agrave -120 -KPX Tcommaaccent Amacron -120 -KPX Tcommaaccent Aogonek -120 -KPX Tcommaaccent Aring -120 -KPX Tcommaaccent Atilde -120 -KPX Tcommaaccent O -40 -KPX Tcommaaccent Oacute -40 -KPX Tcommaaccent Ocircumflex -40 -KPX Tcommaaccent Odieresis -40 -KPX Tcommaaccent Ograve -40 -KPX Tcommaaccent Ohungarumlaut -40 -KPX Tcommaaccent Omacron -40 -KPX Tcommaaccent Oslash -40 -KPX Tcommaaccent Otilde -40 -KPX Tcommaaccent a -120 -KPX Tcommaaccent aacute -120 -KPX Tcommaaccent abreve -60 -KPX Tcommaaccent acircumflex -120 -KPX Tcommaaccent adieresis -120 -KPX Tcommaaccent agrave -120 -KPX Tcommaaccent amacron -60 -KPX Tcommaaccent aogonek -120 -KPX Tcommaaccent aring -120 -KPX Tcommaaccent atilde -60 -KPX Tcommaaccent colon -20 -KPX Tcommaaccent comma -120 -KPX Tcommaaccent e -120 -KPX Tcommaaccent eacute -120 -KPX Tcommaaccent ecaron -120 -KPX Tcommaaccent ecircumflex -120 -KPX Tcommaaccent edieresis -120 -KPX Tcommaaccent edotaccent -120 -KPX Tcommaaccent egrave -60 -KPX Tcommaaccent emacron -60 -KPX Tcommaaccent eogonek -120 -KPX Tcommaaccent hyphen -140 -KPX Tcommaaccent o -120 -KPX Tcommaaccent oacute -120 -KPX Tcommaaccent ocircumflex -120 -KPX Tcommaaccent odieresis -120 -KPX Tcommaaccent ograve -120 -KPX Tcommaaccent ohungarumlaut -120 -KPX Tcommaaccent omacron -60 -KPX Tcommaaccent oslash -120 -KPX Tcommaaccent otilde -60 -KPX Tcommaaccent period -120 -KPX Tcommaaccent r -120 -KPX Tcommaaccent racute -120 -KPX Tcommaaccent rcaron -120 -KPX Tcommaaccent rcommaaccent -120 -KPX Tcommaaccent semicolon -20 -KPX Tcommaaccent u -120 -KPX Tcommaaccent uacute -120 -KPX Tcommaaccent ucircumflex -120 -KPX Tcommaaccent udieresis -120 -KPX Tcommaaccent ugrave -120 -KPX Tcommaaccent uhungarumlaut -120 -KPX Tcommaaccent umacron -60 -KPX Tcommaaccent uogonek -120 -KPX Tcommaaccent uring -120 -KPX Tcommaaccent w -120 -KPX Tcommaaccent y -120 -KPX Tcommaaccent yacute -120 -KPX Tcommaaccent ydieresis -60 -KPX U A -40 -KPX U Aacute -40 -KPX U Abreve -40 -KPX U Acircumflex -40 -KPX U Adieresis -40 -KPX U Agrave -40 -KPX U Amacron -40 -KPX U Aogonek -40 -KPX U Aring -40 -KPX U Atilde -40 -KPX U comma -40 -KPX U period -40 -KPX Uacute A -40 -KPX Uacute Aacute -40 -KPX Uacute Abreve -40 -KPX Uacute Acircumflex -40 -KPX Uacute Adieresis -40 -KPX Uacute Agrave -40 -KPX Uacute Amacron -40 -KPX Uacute Aogonek -40 -KPX Uacute Aring -40 -KPX Uacute Atilde -40 -KPX Uacute comma -40 -KPX Uacute period -40 -KPX Ucircumflex A -40 -KPX Ucircumflex Aacute -40 -KPX Ucircumflex Abreve -40 -KPX Ucircumflex Acircumflex -40 -KPX Ucircumflex Adieresis -40 -KPX Ucircumflex Agrave -40 -KPX Ucircumflex Amacron -40 -KPX Ucircumflex Aogonek -40 -KPX Ucircumflex Aring -40 -KPX Ucircumflex Atilde -40 -KPX Ucircumflex comma -40 -KPX Ucircumflex period -40 -KPX Udieresis A -40 -KPX Udieresis Aacute -40 -KPX Udieresis Abreve -40 -KPX Udieresis Acircumflex -40 -KPX Udieresis Adieresis -40 -KPX Udieresis Agrave -40 -KPX Udieresis Amacron -40 -KPX Udieresis Aogonek -40 -KPX Udieresis Aring -40 -KPX Udieresis Atilde -40 -KPX Udieresis comma -40 -KPX Udieresis period -40 -KPX Ugrave A -40 -KPX Ugrave Aacute -40 -KPX Ugrave Abreve -40 -KPX Ugrave Acircumflex -40 -KPX Ugrave Adieresis -40 -KPX Ugrave Agrave -40 -KPX Ugrave Amacron -40 -KPX Ugrave Aogonek -40 -KPX Ugrave Aring -40 -KPX Ugrave Atilde -40 -KPX Ugrave comma -40 -KPX Ugrave period -40 -KPX Uhungarumlaut A -40 -KPX Uhungarumlaut Aacute -40 -KPX Uhungarumlaut Abreve -40 -KPX Uhungarumlaut Acircumflex -40 -KPX Uhungarumlaut Adieresis -40 -KPX Uhungarumlaut Agrave -40 -KPX Uhungarumlaut Amacron -40 -KPX Uhungarumlaut Aogonek -40 -KPX Uhungarumlaut Aring -40 -KPX Uhungarumlaut Atilde -40 -KPX Uhungarumlaut comma -40 -KPX Uhungarumlaut period -40 -KPX Umacron A -40 -KPX Umacron Aacute -40 -KPX Umacron Abreve -40 -KPX Umacron Acircumflex -40 -KPX Umacron Adieresis -40 -KPX Umacron Agrave -40 -KPX Umacron Amacron -40 -KPX Umacron Aogonek -40 -KPX Umacron Aring -40 -KPX Umacron Atilde -40 -KPX Umacron comma -40 -KPX Umacron period -40 -KPX Uogonek A -40 -KPX Uogonek Aacute -40 -KPX Uogonek Abreve -40 -KPX Uogonek Acircumflex -40 -KPX Uogonek Adieresis -40 -KPX Uogonek Agrave -40 -KPX Uogonek Amacron -40 -KPX Uogonek Aogonek -40 -KPX Uogonek Aring -40 -KPX Uogonek Atilde -40 -KPX Uogonek comma -40 -KPX Uogonek period -40 -KPX Uring A -40 -KPX Uring Aacute -40 -KPX Uring Abreve -40 -KPX Uring Acircumflex -40 -KPX Uring Adieresis -40 -KPX Uring Agrave -40 -KPX Uring Amacron -40 -KPX Uring Aogonek -40 -KPX Uring Aring -40 -KPX Uring Atilde -40 -KPX Uring comma -40 -KPX Uring period -40 -KPX V A -80 -KPX V Aacute -80 -KPX V Abreve -80 -KPX V Acircumflex -80 -KPX V Adieresis -80 -KPX V Agrave -80 -KPX V Amacron -80 -KPX V Aogonek -80 -KPX V Aring -80 -KPX V Atilde -80 -KPX V G -40 -KPX V Gbreve -40 -KPX V Gcommaaccent -40 -KPX V O -40 -KPX V Oacute -40 -KPX V Ocircumflex -40 -KPX V Odieresis -40 -KPX V Ograve -40 -KPX V Ohungarumlaut -40 -KPX V Omacron -40 -KPX V Oslash -40 -KPX V Otilde -40 -KPX V a -70 -KPX V aacute -70 -KPX V abreve -70 -KPX V acircumflex -70 -KPX V adieresis -70 -KPX V agrave -70 -KPX V amacron -70 -KPX V aogonek -70 -KPX V aring -70 -KPX V atilde -70 -KPX V colon -40 -KPX V comma -125 -KPX V e -80 -KPX V eacute -80 -KPX V ecaron -80 -KPX V ecircumflex -80 -KPX V edieresis -80 -KPX V edotaccent -80 -KPX V egrave -80 -KPX V emacron -80 -KPX V eogonek -80 -KPX V hyphen -80 -KPX V o -80 -KPX V oacute -80 -KPX V ocircumflex -80 -KPX V odieresis -80 -KPX V ograve -80 -KPX V ohungarumlaut -80 -KPX V omacron -80 -KPX V oslash -80 -KPX V otilde -80 -KPX V period -125 -KPX V semicolon -40 -KPX V u -70 -KPX V uacute -70 -KPX V ucircumflex -70 -KPX V udieresis -70 -KPX V ugrave -70 -KPX V uhungarumlaut -70 -KPX V umacron -70 -KPX V uogonek -70 -KPX V uring -70 -KPX W A -50 -KPX W Aacute -50 -KPX W Abreve -50 -KPX W Acircumflex -50 -KPX W Adieresis -50 -KPX W Agrave -50 -KPX W Amacron -50 -KPX W Aogonek -50 -KPX W Aring -50 -KPX W Atilde -50 -KPX W O -20 -KPX W Oacute -20 -KPX W Ocircumflex -20 -KPX W Odieresis -20 -KPX W Ograve -20 -KPX W Ohungarumlaut -20 -KPX W Omacron -20 -KPX W Oslash -20 -KPX W Otilde -20 -KPX W a -40 -KPX W aacute -40 -KPX W abreve -40 -KPX W acircumflex -40 -KPX W adieresis -40 -KPX W agrave -40 -KPX W amacron -40 -KPX W aogonek -40 -KPX W aring -40 -KPX W atilde -40 -KPX W comma -80 -KPX W e -30 -KPX W eacute -30 -KPX W ecaron -30 -KPX W ecircumflex -30 -KPX W edieresis -30 -KPX W edotaccent -30 -KPX W egrave -30 -KPX W emacron -30 -KPX W eogonek -30 -KPX W hyphen -40 -KPX W o -30 -KPX W oacute -30 -KPX W ocircumflex -30 -KPX W odieresis -30 -KPX W ograve -30 -KPX W ohungarumlaut -30 -KPX W omacron -30 -KPX W oslash -30 -KPX W otilde -30 -KPX W period -80 -KPX W u -30 -KPX W uacute -30 -KPX W ucircumflex -30 -KPX W udieresis -30 -KPX W ugrave -30 -KPX W uhungarumlaut -30 -KPX W umacron -30 -KPX W uogonek -30 -KPX W uring -30 -KPX W y -20 -KPX W yacute -20 -KPX W ydieresis -20 -KPX Y A -110 -KPX Y Aacute -110 -KPX Y Abreve -110 -KPX Y Acircumflex -110 -KPX Y Adieresis -110 -KPX Y Agrave -110 -KPX Y Amacron -110 -KPX Y Aogonek -110 -KPX Y Aring -110 -KPX Y Atilde -110 -KPX Y O -85 -KPX Y Oacute -85 -KPX Y Ocircumflex -85 -KPX Y Odieresis -85 -KPX Y Ograve -85 -KPX Y Ohungarumlaut -85 -KPX Y Omacron -85 -KPX Y Oslash -85 -KPX Y Otilde -85 -KPX Y a -140 -KPX Y aacute -140 -KPX Y abreve -70 -KPX Y acircumflex -140 -KPX Y adieresis -140 -KPX Y agrave -140 -KPX Y amacron -70 -KPX Y aogonek -140 -KPX Y aring -140 -KPX Y atilde -140 -KPX Y colon -60 -KPX Y comma -140 -KPX Y e -140 -KPX Y eacute -140 -KPX Y ecaron -140 -KPX Y ecircumflex -140 -KPX Y edieresis -140 -KPX Y edotaccent -140 -KPX Y egrave -140 -KPX Y emacron -70 -KPX Y eogonek -140 -KPX Y hyphen -140 -KPX Y i -20 -KPX Y iacute -20 -KPX Y iogonek -20 -KPX Y o -140 -KPX Y oacute -140 -KPX Y ocircumflex -140 -KPX Y odieresis -140 -KPX Y ograve -140 -KPX Y ohungarumlaut -140 -KPX Y omacron -140 -KPX Y oslash -140 -KPX Y otilde -140 -KPX Y period -140 -KPX Y semicolon -60 -KPX Y u -110 -KPX Y uacute -110 -KPX Y ucircumflex -110 -KPX Y udieresis -110 -KPX Y ugrave -110 -KPX Y uhungarumlaut -110 -KPX Y umacron -110 -KPX Y uogonek -110 -KPX Y uring -110 -KPX Yacute A -110 -KPX Yacute Aacute -110 -KPX Yacute Abreve -110 -KPX Yacute Acircumflex -110 -KPX Yacute Adieresis -110 -KPX Yacute Agrave -110 -KPX Yacute Amacron -110 -KPX Yacute Aogonek -110 -KPX Yacute Aring -110 -KPX Yacute Atilde -110 -KPX Yacute O -85 -KPX Yacute Oacute -85 -KPX Yacute Ocircumflex -85 -KPX Yacute Odieresis -85 -KPX Yacute Ograve -85 -KPX Yacute Ohungarumlaut -85 -KPX Yacute Omacron -85 -KPX Yacute Oslash -85 -KPX Yacute Otilde -85 -KPX Yacute a -140 -KPX Yacute aacute -140 -KPX Yacute abreve -70 -KPX Yacute acircumflex -140 -KPX Yacute adieresis -140 -KPX Yacute agrave -140 -KPX Yacute amacron -70 -KPX Yacute aogonek -140 -KPX Yacute aring -140 -KPX Yacute atilde -70 -KPX Yacute colon -60 -KPX Yacute comma -140 -KPX Yacute e -140 -KPX Yacute eacute -140 -KPX Yacute ecaron -140 -KPX Yacute ecircumflex -140 -KPX Yacute edieresis -140 -KPX Yacute edotaccent -140 -KPX Yacute egrave -140 -KPX Yacute emacron -70 -KPX Yacute eogonek -140 -KPX Yacute hyphen -140 -KPX Yacute i -20 -KPX Yacute iacute -20 -KPX Yacute iogonek -20 -KPX Yacute o -140 -KPX Yacute oacute -140 -KPX Yacute ocircumflex -140 -KPX Yacute odieresis -140 -KPX Yacute ograve -140 -KPX Yacute ohungarumlaut -140 -KPX Yacute omacron -70 -KPX Yacute oslash -140 -KPX Yacute otilde -140 -KPX Yacute period -140 -KPX Yacute semicolon -60 -KPX Yacute u -110 -KPX Yacute uacute -110 -KPX Yacute ucircumflex -110 -KPX Yacute udieresis -110 -KPX Yacute ugrave -110 -KPX Yacute uhungarumlaut -110 -KPX Yacute umacron -110 -KPX Yacute uogonek -110 -KPX Yacute uring -110 -KPX Ydieresis A -110 -KPX Ydieresis Aacute -110 -KPX Ydieresis Abreve -110 -KPX Ydieresis Acircumflex -110 -KPX Ydieresis Adieresis -110 -KPX Ydieresis Agrave -110 -KPX Ydieresis Amacron -110 -KPX Ydieresis Aogonek -110 -KPX Ydieresis Aring -110 -KPX Ydieresis Atilde -110 -KPX Ydieresis O -85 -KPX Ydieresis Oacute -85 -KPX Ydieresis Ocircumflex -85 -KPX Ydieresis Odieresis -85 -KPX Ydieresis Ograve -85 -KPX Ydieresis Ohungarumlaut -85 -KPX Ydieresis Omacron -85 -KPX Ydieresis Oslash -85 -KPX Ydieresis Otilde -85 -KPX Ydieresis a -140 -KPX Ydieresis aacute -140 -KPX Ydieresis abreve -70 -KPX Ydieresis acircumflex -140 -KPX Ydieresis adieresis -140 -KPX Ydieresis agrave -140 -KPX Ydieresis amacron -70 -KPX Ydieresis aogonek -140 -KPX Ydieresis aring -140 -KPX Ydieresis atilde -70 -KPX Ydieresis colon -60 -KPX Ydieresis comma -140 -KPX Ydieresis e -140 -KPX Ydieresis eacute -140 -KPX Ydieresis ecaron -140 -KPX Ydieresis ecircumflex -140 -KPX Ydieresis edieresis -140 -KPX Ydieresis edotaccent -140 -KPX Ydieresis egrave -140 -KPX Ydieresis emacron -70 -KPX Ydieresis eogonek -140 -KPX Ydieresis hyphen -140 -KPX Ydieresis i -20 -KPX Ydieresis iacute -20 -KPX Ydieresis iogonek -20 -KPX Ydieresis o -140 -KPX Ydieresis oacute -140 -KPX Ydieresis ocircumflex -140 -KPX Ydieresis odieresis -140 -KPX Ydieresis ograve -140 -KPX Ydieresis ohungarumlaut -140 -KPX Ydieresis omacron -140 -KPX Ydieresis oslash -140 -KPX Ydieresis otilde -140 -KPX Ydieresis period -140 -KPX Ydieresis semicolon -60 -KPX Ydieresis u -110 -KPX Ydieresis uacute -110 -KPX Ydieresis ucircumflex -110 -KPX Ydieresis udieresis -110 -KPX Ydieresis ugrave -110 -KPX Ydieresis uhungarumlaut -110 -KPX Ydieresis umacron -110 -KPX Ydieresis uogonek -110 -KPX Ydieresis uring -110 -KPX a v -20 -KPX a w -20 -KPX a y -30 -KPX a yacute -30 -KPX a ydieresis -30 -KPX aacute v -20 -KPX aacute w -20 -KPX aacute y -30 -KPX aacute yacute -30 -KPX aacute ydieresis -30 -KPX abreve v -20 -KPX abreve w -20 -KPX abreve y -30 -KPX abreve yacute -30 -KPX abreve ydieresis -30 -KPX acircumflex v -20 -KPX acircumflex w -20 -KPX acircumflex y -30 -KPX acircumflex yacute -30 -KPX acircumflex ydieresis -30 -KPX adieresis v -20 -KPX adieresis w -20 -KPX adieresis y -30 -KPX adieresis yacute -30 -KPX adieresis ydieresis -30 -KPX agrave v -20 -KPX agrave w -20 -KPX agrave y -30 -KPX agrave yacute -30 -KPX agrave ydieresis -30 -KPX amacron v -20 -KPX amacron w -20 -KPX amacron y -30 -KPX amacron yacute -30 -KPX amacron ydieresis -30 -KPX aogonek v -20 -KPX aogonek w -20 -KPX aogonek y -30 -KPX aogonek yacute -30 -KPX aogonek ydieresis -30 -KPX aring v -20 -KPX aring w -20 -KPX aring y -30 -KPX aring yacute -30 -KPX aring ydieresis -30 -KPX atilde v -20 -KPX atilde w -20 -KPX atilde y -30 -KPX atilde yacute -30 -KPX atilde ydieresis -30 -KPX b b -10 -KPX b comma -40 -KPX b l -20 -KPX b lacute -20 -KPX b lcommaaccent -20 -KPX b lslash -20 -KPX b period -40 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX b v -20 -KPX b y -20 -KPX b yacute -20 -KPX b ydieresis -20 -KPX c comma -15 -KPX c k -20 -KPX c kcommaaccent -20 -KPX cacute comma -15 -KPX cacute k -20 -KPX cacute kcommaaccent -20 -KPX ccaron comma -15 -KPX ccaron k -20 -KPX ccaron kcommaaccent -20 -KPX ccedilla comma -15 -KPX ccedilla k -20 -KPX ccedilla kcommaaccent -20 -KPX colon space -50 -KPX comma quotedblright -100 -KPX comma quoteright -100 -KPX e comma -15 -KPX e period -15 -KPX e v -30 -KPX e w -20 -KPX e x -30 -KPX e y -20 -KPX e yacute -20 -KPX e ydieresis -20 -KPX eacute comma -15 -KPX eacute period -15 -KPX eacute v -30 -KPX eacute w -20 -KPX eacute x -30 -KPX eacute y -20 -KPX eacute yacute -20 -KPX eacute ydieresis -20 -KPX ecaron comma -15 -KPX ecaron period -15 -KPX ecaron v -30 -KPX ecaron w -20 -KPX ecaron x -30 -KPX ecaron y -20 -KPX ecaron yacute -20 -KPX ecaron ydieresis -20 -KPX ecircumflex comma -15 -KPX ecircumflex period -15 -KPX ecircumflex v -30 -KPX ecircumflex w -20 -KPX ecircumflex x -30 -KPX ecircumflex y -20 -KPX ecircumflex yacute -20 -KPX ecircumflex ydieresis -20 -KPX edieresis comma -15 -KPX edieresis period -15 -KPX edieresis v -30 -KPX edieresis w -20 -KPX edieresis x -30 -KPX edieresis y -20 -KPX edieresis yacute -20 -KPX edieresis ydieresis -20 -KPX edotaccent comma -15 -KPX edotaccent period -15 -KPX edotaccent v -30 -KPX edotaccent w -20 -KPX edotaccent x -30 -KPX edotaccent y -20 -KPX edotaccent yacute -20 -KPX edotaccent ydieresis -20 -KPX egrave comma -15 -KPX egrave period -15 -KPX egrave v -30 -KPX egrave w -20 -KPX egrave x -30 -KPX egrave y -20 -KPX egrave yacute -20 -KPX egrave ydieresis -20 -KPX emacron comma -15 -KPX emacron period -15 -KPX emacron v -30 -KPX emacron w -20 -KPX emacron x -30 -KPX emacron y -20 -KPX emacron yacute -20 -KPX emacron ydieresis -20 -KPX eogonek comma -15 -KPX eogonek period -15 -KPX eogonek v -30 -KPX eogonek w -20 -KPX eogonek x -30 -KPX eogonek y -20 -KPX eogonek yacute -20 -KPX eogonek ydieresis -20 -KPX f a -30 -KPX f aacute -30 -KPX f abreve -30 -KPX f acircumflex -30 -KPX f adieresis -30 -KPX f agrave -30 -KPX f amacron -30 -KPX f aogonek -30 -KPX f aring -30 -KPX f atilde -30 -KPX f comma -30 -KPX f dotlessi -28 -KPX f e -30 -KPX f eacute -30 -KPX f ecaron -30 -KPX f ecircumflex -30 -KPX f edieresis -30 -KPX f edotaccent -30 -KPX f egrave -30 -KPX f emacron -30 -KPX f eogonek -30 -KPX f o -30 -KPX f oacute -30 -KPX f ocircumflex -30 -KPX f odieresis -30 -KPX f ograve -30 -KPX f ohungarumlaut -30 -KPX f omacron -30 -KPX f oslash -30 -KPX f otilde -30 -KPX f period -30 -KPX f quotedblright 60 -KPX f quoteright 50 -KPX g r -10 -KPX g racute -10 -KPX g rcaron -10 -KPX g rcommaaccent -10 -KPX gbreve r -10 -KPX gbreve racute -10 -KPX gbreve rcaron -10 -KPX gbreve rcommaaccent -10 -KPX gcommaaccent r -10 -KPX gcommaaccent racute -10 -KPX gcommaaccent rcaron -10 -KPX gcommaaccent rcommaaccent -10 -KPX h y -30 -KPX h yacute -30 -KPX h ydieresis -30 -KPX k e -20 -KPX k eacute -20 -KPX k ecaron -20 -KPX k ecircumflex -20 -KPX k edieresis -20 -KPX k edotaccent -20 -KPX k egrave -20 -KPX k emacron -20 -KPX k eogonek -20 -KPX k o -20 -KPX k oacute -20 -KPX k ocircumflex -20 -KPX k odieresis -20 -KPX k ograve -20 -KPX k ohungarumlaut -20 -KPX k omacron -20 -KPX k oslash -20 -KPX k otilde -20 -KPX kcommaaccent e -20 -KPX kcommaaccent eacute -20 -KPX kcommaaccent ecaron -20 -KPX kcommaaccent ecircumflex -20 -KPX kcommaaccent edieresis -20 -KPX kcommaaccent edotaccent -20 -KPX kcommaaccent egrave -20 -KPX kcommaaccent emacron -20 -KPX kcommaaccent eogonek -20 -KPX kcommaaccent o -20 -KPX kcommaaccent oacute -20 -KPX kcommaaccent ocircumflex -20 -KPX kcommaaccent odieresis -20 -KPX kcommaaccent ograve -20 -KPX kcommaaccent ohungarumlaut -20 -KPX kcommaaccent omacron -20 -KPX kcommaaccent oslash -20 -KPX kcommaaccent otilde -20 -KPX m u -10 -KPX m uacute -10 -KPX m ucircumflex -10 -KPX m udieresis -10 -KPX m ugrave -10 -KPX m uhungarumlaut -10 -KPX m umacron -10 -KPX m uogonek -10 -KPX m uring -10 -KPX m y -15 -KPX m yacute -15 -KPX m ydieresis -15 -KPX n u -10 -KPX n uacute -10 -KPX n ucircumflex -10 -KPX n udieresis -10 -KPX n ugrave -10 -KPX n uhungarumlaut -10 -KPX n umacron -10 -KPX n uogonek -10 -KPX n uring -10 -KPX n v -20 -KPX n y -15 -KPX n yacute -15 -KPX n ydieresis -15 -KPX nacute u -10 -KPX nacute uacute -10 -KPX nacute ucircumflex -10 -KPX nacute udieresis -10 -KPX nacute ugrave -10 -KPX nacute uhungarumlaut -10 -KPX nacute umacron -10 -KPX nacute uogonek -10 -KPX nacute uring -10 -KPX nacute v -20 -KPX nacute y -15 -KPX nacute yacute -15 -KPX nacute ydieresis -15 -KPX ncaron u -10 -KPX ncaron uacute -10 -KPX ncaron ucircumflex -10 -KPX ncaron udieresis -10 -KPX ncaron ugrave -10 -KPX ncaron uhungarumlaut -10 -KPX ncaron umacron -10 -KPX ncaron uogonek -10 -KPX ncaron uring -10 -KPX ncaron v -20 -KPX ncaron y -15 -KPX ncaron yacute -15 -KPX ncaron ydieresis -15 -KPX ncommaaccent u -10 -KPX ncommaaccent uacute -10 -KPX ncommaaccent ucircumflex -10 -KPX ncommaaccent udieresis -10 -KPX ncommaaccent ugrave -10 -KPX ncommaaccent uhungarumlaut -10 -KPX ncommaaccent umacron -10 -KPX ncommaaccent uogonek -10 -KPX ncommaaccent uring -10 -KPX ncommaaccent v -20 -KPX ncommaaccent y -15 -KPX ncommaaccent yacute -15 -KPX ncommaaccent ydieresis -15 -KPX ntilde u -10 -KPX ntilde uacute -10 -KPX ntilde ucircumflex -10 -KPX ntilde udieresis -10 -KPX ntilde ugrave -10 -KPX ntilde uhungarumlaut -10 -KPX ntilde umacron -10 -KPX ntilde uogonek -10 -KPX ntilde uring -10 -KPX ntilde v -20 -KPX ntilde y -15 -KPX ntilde yacute -15 -KPX ntilde ydieresis -15 -KPX o comma -40 -KPX o period -40 -KPX o v -15 -KPX o w -15 -KPX o x -30 -KPX o y -30 -KPX o yacute -30 -KPX o ydieresis -30 -KPX oacute comma -40 -KPX oacute period -40 -KPX oacute v -15 -KPX oacute w -15 -KPX oacute x -30 -KPX oacute y -30 -KPX oacute yacute -30 -KPX oacute ydieresis -30 -KPX ocircumflex comma -40 -KPX ocircumflex period -40 -KPX ocircumflex v -15 -KPX ocircumflex w -15 -KPX ocircumflex x -30 -KPX ocircumflex y -30 -KPX ocircumflex yacute -30 -KPX ocircumflex ydieresis -30 -KPX odieresis comma -40 -KPX odieresis period -40 -KPX odieresis v -15 -KPX odieresis w -15 -KPX odieresis x -30 -KPX odieresis y -30 -KPX odieresis yacute -30 -KPX odieresis ydieresis -30 -KPX ograve comma -40 -KPX ograve period -40 -KPX ograve v -15 -KPX ograve w -15 -KPX ograve x -30 -KPX ograve y -30 -KPX ograve yacute -30 -KPX ograve ydieresis -30 -KPX ohungarumlaut comma -40 -KPX ohungarumlaut period -40 -KPX ohungarumlaut v -15 -KPX ohungarumlaut w -15 -KPX ohungarumlaut x -30 -KPX ohungarumlaut y -30 -KPX ohungarumlaut yacute -30 -KPX ohungarumlaut ydieresis -30 -KPX omacron comma -40 -KPX omacron period -40 -KPX omacron v -15 -KPX omacron w -15 -KPX omacron x -30 -KPX omacron y -30 -KPX omacron yacute -30 -KPX omacron ydieresis -30 -KPX oslash a -55 -KPX oslash aacute -55 -KPX oslash abreve -55 -KPX oslash acircumflex -55 -KPX oslash adieresis -55 -KPX oslash agrave -55 -KPX oslash amacron -55 -KPX oslash aogonek -55 -KPX oslash aring -55 -KPX oslash atilde -55 -KPX oslash b -55 -KPX oslash c -55 -KPX oslash cacute -55 -KPX oslash ccaron -55 -KPX oslash ccedilla -55 -KPX oslash comma -95 -KPX oslash d -55 -KPX oslash dcroat -55 -KPX oslash e -55 -KPX oslash eacute -55 -KPX oslash ecaron -55 -KPX oslash ecircumflex -55 -KPX oslash edieresis -55 -KPX oslash edotaccent -55 -KPX oslash egrave -55 -KPX oslash emacron -55 -KPX oslash eogonek -55 -KPX oslash f -55 -KPX oslash g -55 -KPX oslash gbreve -55 -KPX oslash gcommaaccent -55 -KPX oslash h -55 -KPX oslash i -55 -KPX oslash iacute -55 -KPX oslash icircumflex -55 -KPX oslash idieresis -55 -KPX oslash igrave -55 -KPX oslash imacron -55 -KPX oslash iogonek -55 -KPX oslash j -55 -KPX oslash k -55 -KPX oslash kcommaaccent -55 -KPX oslash l -55 -KPX oslash lacute -55 -KPX oslash lcommaaccent -55 -KPX oslash lslash -55 -KPX oslash m -55 -KPX oslash n -55 -KPX oslash nacute -55 -KPX oslash ncaron -55 -KPX oslash ncommaaccent -55 -KPX oslash ntilde -55 -KPX oslash o -55 -KPX oslash oacute -55 -KPX oslash ocircumflex -55 -KPX oslash odieresis -55 -KPX oslash ograve -55 -KPX oslash ohungarumlaut -55 -KPX oslash omacron -55 -KPX oslash oslash -55 -KPX oslash otilde -55 -KPX oslash p -55 -KPX oslash period -95 -KPX oslash q -55 -KPX oslash r -55 -KPX oslash racute -55 -KPX oslash rcaron -55 -KPX oslash rcommaaccent -55 -KPX oslash s -55 -KPX oslash sacute -55 -KPX oslash scaron -55 -KPX oslash scedilla -55 -KPX oslash scommaaccent -55 -KPX oslash t -55 -KPX oslash tcommaaccent -55 -KPX oslash u -55 -KPX oslash uacute -55 -KPX oslash ucircumflex -55 -KPX oslash udieresis -55 -KPX oslash ugrave -55 -KPX oslash uhungarumlaut -55 -KPX oslash umacron -55 -KPX oslash uogonek -55 -KPX oslash uring -55 -KPX oslash v -70 -KPX oslash w -70 -KPX oslash x -85 -KPX oslash y -70 -KPX oslash yacute -70 -KPX oslash ydieresis -70 -KPX oslash z -55 -KPX oslash zacute -55 -KPX oslash zcaron -55 -KPX oslash zdotaccent -55 -KPX otilde comma -40 -KPX otilde period -40 -KPX otilde v -15 -KPX otilde w -15 -KPX otilde x -30 -KPX otilde y -30 -KPX otilde yacute -30 -KPX otilde ydieresis -30 -KPX p comma -35 -KPX p period -35 -KPX p y -30 -KPX p yacute -30 -KPX p ydieresis -30 -KPX period quotedblright -100 -KPX period quoteright -100 -KPX period space -60 -KPX quotedblright space -40 -KPX quoteleft quoteleft -57 -KPX quoteright d -50 -KPX quoteright dcroat -50 -KPX quoteright quoteright -57 -KPX quoteright r -50 -KPX quoteright racute -50 -KPX quoteright rcaron -50 -KPX quoteright rcommaaccent -50 -KPX quoteright s -50 -KPX quoteright sacute -50 -KPX quoteright scaron -50 -KPX quoteright scedilla -50 -KPX quoteright scommaaccent -50 -KPX quoteright space -70 -KPX r a -10 -KPX r aacute -10 -KPX r abreve -10 -KPX r acircumflex -10 -KPX r adieresis -10 -KPX r agrave -10 -KPX r amacron -10 -KPX r aogonek -10 -KPX r aring -10 -KPX r atilde -10 -KPX r colon 30 -KPX r comma -50 -KPX r i 15 -KPX r iacute 15 -KPX r icircumflex 15 -KPX r idieresis 15 -KPX r igrave 15 -KPX r imacron 15 -KPX r iogonek 15 -KPX r k 15 -KPX r kcommaaccent 15 -KPX r l 15 -KPX r lacute 15 -KPX r lcommaaccent 15 -KPX r lslash 15 -KPX r m 25 -KPX r n 25 -KPX r nacute 25 -KPX r ncaron 25 -KPX r ncommaaccent 25 -KPX r ntilde 25 -KPX r p 30 -KPX r period -50 -KPX r semicolon 30 -KPX r t 40 -KPX r tcommaaccent 40 -KPX r u 15 -KPX r uacute 15 -KPX r ucircumflex 15 -KPX r udieresis 15 -KPX r ugrave 15 -KPX r uhungarumlaut 15 -KPX r umacron 15 -KPX r uogonek 15 -KPX r uring 15 -KPX r v 30 -KPX r y 30 -KPX r yacute 30 -KPX r ydieresis 30 -KPX racute a -10 -KPX racute aacute -10 -KPX racute abreve -10 -KPX racute acircumflex -10 -KPX racute adieresis -10 -KPX racute agrave -10 -KPX racute amacron -10 -KPX racute aogonek -10 -KPX racute aring -10 -KPX racute atilde -10 -KPX racute colon 30 -KPX racute comma -50 -KPX racute i 15 -KPX racute iacute 15 -KPX racute icircumflex 15 -KPX racute idieresis 15 -KPX racute igrave 15 -KPX racute imacron 15 -KPX racute iogonek 15 -KPX racute k 15 -KPX racute kcommaaccent 15 -KPX racute l 15 -KPX racute lacute 15 -KPX racute lcommaaccent 15 -KPX racute lslash 15 -KPX racute m 25 -KPX racute n 25 -KPX racute nacute 25 -KPX racute ncaron 25 -KPX racute ncommaaccent 25 -KPX racute ntilde 25 -KPX racute p 30 -KPX racute period -50 -KPX racute semicolon 30 -KPX racute t 40 -KPX racute tcommaaccent 40 -KPX racute u 15 -KPX racute uacute 15 -KPX racute ucircumflex 15 -KPX racute udieresis 15 -KPX racute ugrave 15 -KPX racute uhungarumlaut 15 -KPX racute umacron 15 -KPX racute uogonek 15 -KPX racute uring 15 -KPX racute v 30 -KPX racute y 30 -KPX racute yacute 30 -KPX racute ydieresis 30 -KPX rcaron a -10 -KPX rcaron aacute -10 -KPX rcaron abreve -10 -KPX rcaron acircumflex -10 -KPX rcaron adieresis -10 -KPX rcaron agrave -10 -KPX rcaron amacron -10 -KPX rcaron aogonek -10 -KPX rcaron aring -10 -KPX rcaron atilde -10 -KPX rcaron colon 30 -KPX rcaron comma -50 -KPX rcaron i 15 -KPX rcaron iacute 15 -KPX rcaron icircumflex 15 -KPX rcaron idieresis 15 -KPX rcaron igrave 15 -KPX rcaron imacron 15 -KPX rcaron iogonek 15 -KPX rcaron k 15 -KPX rcaron kcommaaccent 15 -KPX rcaron l 15 -KPX rcaron lacute 15 -KPX rcaron lcommaaccent 15 -KPX rcaron lslash 15 -KPX rcaron m 25 -KPX rcaron n 25 -KPX rcaron nacute 25 -KPX rcaron ncaron 25 -KPX rcaron ncommaaccent 25 -KPX rcaron ntilde 25 -KPX rcaron p 30 -KPX rcaron period -50 -KPX rcaron semicolon 30 -KPX rcaron t 40 -KPX rcaron tcommaaccent 40 -KPX rcaron u 15 -KPX rcaron uacute 15 -KPX rcaron ucircumflex 15 -KPX rcaron udieresis 15 -KPX rcaron ugrave 15 -KPX rcaron uhungarumlaut 15 -KPX rcaron umacron 15 -KPX rcaron uogonek 15 -KPX rcaron uring 15 -KPX rcaron v 30 -KPX rcaron y 30 -KPX rcaron yacute 30 -KPX rcaron ydieresis 30 -KPX rcommaaccent a -10 -KPX rcommaaccent aacute -10 -KPX rcommaaccent abreve -10 -KPX rcommaaccent acircumflex -10 -KPX rcommaaccent adieresis -10 -KPX rcommaaccent agrave -10 -KPX rcommaaccent amacron -10 -KPX rcommaaccent aogonek -10 -KPX rcommaaccent aring -10 -KPX rcommaaccent atilde -10 -KPX rcommaaccent colon 30 -KPX rcommaaccent comma -50 -KPX rcommaaccent i 15 -KPX rcommaaccent iacute 15 -KPX rcommaaccent icircumflex 15 -KPX rcommaaccent idieresis 15 -KPX rcommaaccent igrave 15 -KPX rcommaaccent imacron 15 -KPX rcommaaccent iogonek 15 -KPX rcommaaccent k 15 -KPX rcommaaccent kcommaaccent 15 -KPX rcommaaccent l 15 -KPX rcommaaccent lacute 15 -KPX rcommaaccent lcommaaccent 15 -KPX rcommaaccent lslash 15 -KPX rcommaaccent m 25 -KPX rcommaaccent n 25 -KPX rcommaaccent nacute 25 -KPX rcommaaccent ncaron 25 -KPX rcommaaccent ncommaaccent 25 -KPX rcommaaccent ntilde 25 -KPX rcommaaccent p 30 -KPX rcommaaccent period -50 -KPX rcommaaccent semicolon 30 -KPX rcommaaccent t 40 -KPX rcommaaccent tcommaaccent 40 -KPX rcommaaccent u 15 -KPX rcommaaccent uacute 15 -KPX rcommaaccent ucircumflex 15 -KPX rcommaaccent udieresis 15 -KPX rcommaaccent ugrave 15 -KPX rcommaaccent uhungarumlaut 15 -KPX rcommaaccent umacron 15 -KPX rcommaaccent uogonek 15 -KPX rcommaaccent uring 15 -KPX rcommaaccent v 30 -KPX rcommaaccent y 30 -KPX rcommaaccent yacute 30 -KPX rcommaaccent ydieresis 30 -KPX s comma -15 -KPX s period -15 -KPX s w -30 -KPX sacute comma -15 -KPX sacute period -15 -KPX sacute w -30 -KPX scaron comma -15 -KPX scaron period -15 -KPX scaron w -30 -KPX scedilla comma -15 -KPX scedilla period -15 -KPX scedilla w -30 -KPX scommaaccent comma -15 -KPX scommaaccent period -15 -KPX scommaaccent w -30 -KPX semicolon space -50 -KPX space T -50 -KPX space Tcaron -50 -KPX space Tcommaaccent -50 -KPX space V -50 -KPX space W -40 -KPX space Y -90 -KPX space Yacute -90 -KPX space Ydieresis -90 -KPX space quotedblleft -30 -KPX space quoteleft -60 -KPX v a -25 -KPX v aacute -25 -KPX v abreve -25 -KPX v acircumflex -25 -KPX v adieresis -25 -KPX v agrave -25 -KPX v amacron -25 -KPX v aogonek -25 -KPX v aring -25 -KPX v atilde -25 -KPX v comma -80 -KPX v e -25 -KPX v eacute -25 -KPX v ecaron -25 -KPX v ecircumflex -25 -KPX v edieresis -25 -KPX v edotaccent -25 -KPX v egrave -25 -KPX v emacron -25 -KPX v eogonek -25 -KPX v o -25 -KPX v oacute -25 -KPX v ocircumflex -25 -KPX v odieresis -25 -KPX v ograve -25 -KPX v ohungarumlaut -25 -KPX v omacron -25 -KPX v oslash -25 -KPX v otilde -25 -KPX v period -80 -KPX w a -15 -KPX w aacute -15 -KPX w abreve -15 -KPX w acircumflex -15 -KPX w adieresis -15 -KPX w agrave -15 -KPX w amacron -15 -KPX w aogonek -15 -KPX w aring -15 -KPX w atilde -15 -KPX w comma -60 -KPX w e -10 -KPX w eacute -10 -KPX w ecaron -10 -KPX w ecircumflex -10 -KPX w edieresis -10 -KPX w edotaccent -10 -KPX w egrave -10 -KPX w emacron -10 -KPX w eogonek -10 -KPX w o -10 -KPX w oacute -10 -KPX w ocircumflex -10 -KPX w odieresis -10 -KPX w ograve -10 -KPX w ohungarumlaut -10 -KPX w omacron -10 -KPX w oslash -10 -KPX w otilde -10 -KPX w period -60 -KPX x e -30 -KPX x eacute -30 -KPX x ecaron -30 -KPX x ecircumflex -30 -KPX x edieresis -30 -KPX x edotaccent -30 -KPX x egrave -30 -KPX x emacron -30 -KPX x eogonek -30 -KPX y a -20 -KPX y aacute -20 -KPX y abreve -20 -KPX y acircumflex -20 -KPX y adieresis -20 -KPX y agrave -20 -KPX y amacron -20 -KPX y aogonek -20 -KPX y aring -20 -KPX y atilde -20 -KPX y comma -100 -KPX y e -20 -KPX y eacute -20 -KPX y ecaron -20 -KPX y ecircumflex -20 -KPX y edieresis -20 -KPX y edotaccent -20 -KPX y egrave -20 -KPX y emacron -20 -KPX y eogonek -20 -KPX y o -20 -KPX y oacute -20 -KPX y ocircumflex -20 -KPX y odieresis -20 -KPX y ograve -20 -KPX y ohungarumlaut -20 -KPX y omacron -20 -KPX y oslash -20 -KPX y otilde -20 -KPX y period -100 -KPX yacute a -20 -KPX yacute aacute -20 -KPX yacute abreve -20 -KPX yacute acircumflex -20 -KPX yacute adieresis -20 -KPX yacute agrave -20 -KPX yacute amacron -20 -KPX yacute aogonek -20 -KPX yacute aring -20 -KPX yacute atilde -20 -KPX yacute comma -100 -KPX yacute e -20 -KPX yacute eacute -20 -KPX yacute ecaron -20 -KPX yacute ecircumflex -20 -KPX yacute edieresis -20 -KPX yacute edotaccent -20 -KPX yacute egrave -20 -KPX yacute emacron -20 -KPX yacute eogonek -20 -KPX yacute o -20 -KPX yacute oacute -20 -KPX yacute ocircumflex -20 -KPX yacute odieresis -20 -KPX yacute ograve -20 -KPX yacute ohungarumlaut -20 -KPX yacute omacron -20 -KPX yacute oslash -20 -KPX yacute otilde -20 -KPX yacute period -100 -KPX ydieresis a -20 -KPX ydieresis aacute -20 -KPX ydieresis abreve -20 -KPX ydieresis acircumflex -20 -KPX ydieresis adieresis -20 -KPX ydieresis agrave -20 -KPX ydieresis amacron -20 -KPX ydieresis aogonek -20 -KPX ydieresis aring -20 -KPX ydieresis atilde -20 -KPX ydieresis comma -100 -KPX ydieresis e -20 -KPX ydieresis eacute -20 -KPX ydieresis ecaron -20 -KPX ydieresis ecircumflex -20 -KPX ydieresis edieresis -20 -KPX ydieresis edotaccent -20 -KPX ydieresis egrave -20 -KPX ydieresis emacron -20 -KPX ydieresis eogonek -20 -KPX ydieresis o -20 -KPX ydieresis oacute -20 -KPX ydieresis ocircumflex -20 -KPX ydieresis odieresis -20 -KPX ydieresis ograve -20 -KPX ydieresis ohungarumlaut -20 -KPX ydieresis omacron -20 -KPX ydieresis oslash -20 -KPX ydieresis otilde -20 -KPX ydieresis period -100 -KPX z e -15 -KPX z eacute -15 -KPX z ecaron -15 -KPX z ecircumflex -15 -KPX z edieresis -15 -KPX z edotaccent -15 -KPX z egrave -15 -KPX z emacron -15 -KPX z eogonek -15 -KPX z o -15 -KPX z oacute -15 -KPX z ocircumflex -15 -KPX z odieresis -15 -KPX z ograve -15 -KPX z ohungarumlaut -15 -KPX z omacron -15 -KPX z oslash -15 -KPX z otilde -15 -KPX zacute e -15 -KPX zacute eacute -15 -KPX zacute ecaron -15 -KPX zacute ecircumflex -15 -KPX zacute edieresis -15 -KPX zacute edotaccent -15 -KPX zacute egrave -15 -KPX zacute emacron -15 -KPX zacute eogonek -15 -KPX zacute o -15 -KPX zacute oacute -15 -KPX zacute ocircumflex -15 -KPX zacute odieresis -15 -KPX zacute ograve -15 -KPX zacute ohungarumlaut -15 -KPX zacute omacron -15 -KPX zacute oslash -15 -KPX zacute otilde -15 -KPX zcaron e -15 -KPX zcaron eacute -15 -KPX zcaron ecaron -15 -KPX zcaron ecircumflex -15 -KPX zcaron edieresis -15 -KPX zcaron edotaccent -15 -KPX zcaron egrave -15 -KPX zcaron emacron -15 -KPX zcaron eogonek -15 -KPX zcaron o -15 -KPX zcaron oacute -15 -KPX zcaron ocircumflex -15 -KPX zcaron odieresis -15 -KPX zcaron ograve -15 -KPX zcaron ohungarumlaut -15 -KPX zcaron omacron -15 -KPX zcaron oslash -15 -KPX zcaron otilde -15 -KPX zdotaccent e -15 -KPX zdotaccent eacute -15 -KPX zdotaccent ecaron -15 -KPX zdotaccent ecircumflex -15 -KPX zdotaccent edieresis -15 -KPX zdotaccent edotaccent -15 -KPX zdotaccent egrave -15 -KPX zdotaccent emacron -15 -KPX zdotaccent eogonek -15 -KPX zdotaccent o -15 -KPX zdotaccent oacute -15 -KPX zdotaccent ocircumflex -15 -KPX zdotaccent odieresis -15 -KPX zdotaccent ograve -15 -KPX zdotaccent ohungarumlaut -15 -KPX zdotaccent omacron -15 -KPX zdotaccent oslash -15 -KPX zdotaccent otilde -15 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica.afm b/target/classes/com/itextpdf/text/pdf/fonts/Helvetica.afm deleted file mode 100644 index bd32af54..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Helvetica.afm +++ /dev/null @@ -1,3051 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 12:38:23 1997 -Comment UniqueID 43054 -Comment VMusage 37069 48094 -FontName Helvetica -FullName Helvetica -FamilyName Helvetica -Weight Medium -ItalicAngle 0 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -166 -225 1000 931 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All Rights Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 718 -XHeight 523 -Ascender 718 -Descender -207 -StdHW 76 -StdVW 88 -StartCharMetrics 315 -C 32 ; WX 278 ; N space ; B 0 0 0 0 ; -C 33 ; WX 278 ; N exclam ; B 90 0 187 718 ; -C 34 ; WX 355 ; N quotedbl ; B 70 463 285 718 ; -C 35 ; WX 556 ; N numbersign ; B 28 0 529 688 ; -C 36 ; WX 556 ; N dollar ; B 32 -115 520 775 ; -C 37 ; WX 889 ; N percent ; B 39 -19 850 703 ; -C 38 ; WX 667 ; N ampersand ; B 44 -15 645 718 ; -C 39 ; WX 222 ; N quoteright ; B 53 463 157 718 ; -C 40 ; WX 333 ; N parenleft ; B 68 -207 299 733 ; -C 41 ; WX 333 ; N parenright ; B 34 -207 265 733 ; -C 42 ; WX 389 ; N asterisk ; B 39 431 349 718 ; -C 43 ; WX 584 ; N plus ; B 39 0 545 505 ; -C 44 ; WX 278 ; N comma ; B 87 -147 191 106 ; -C 45 ; WX 333 ; N hyphen ; B 44 232 289 322 ; -C 46 ; WX 278 ; N period ; B 87 0 191 106 ; -C 47 ; WX 278 ; N slash ; B -17 -19 295 737 ; -C 48 ; WX 556 ; N zero ; B 37 -19 519 703 ; -C 49 ; WX 556 ; N one ; B 101 0 359 703 ; -C 50 ; WX 556 ; N two ; B 26 0 507 703 ; -C 51 ; WX 556 ; N three ; B 34 -19 522 703 ; -C 52 ; WX 556 ; N four ; B 25 0 523 703 ; -C 53 ; WX 556 ; N five ; B 32 -19 514 688 ; -C 54 ; WX 556 ; N six ; B 38 -19 518 703 ; -C 55 ; WX 556 ; N seven ; B 37 0 523 688 ; -C 56 ; WX 556 ; N eight ; B 38 -19 517 703 ; -C 57 ; WX 556 ; N nine ; B 42 -19 514 703 ; -C 58 ; WX 278 ; N colon ; B 87 0 191 516 ; -C 59 ; WX 278 ; N semicolon ; B 87 -147 191 516 ; -C 60 ; WX 584 ; N less ; B 48 11 536 495 ; -C 61 ; WX 584 ; N equal ; B 39 115 545 390 ; -C 62 ; WX 584 ; N greater ; B 48 11 536 495 ; -C 63 ; WX 556 ; N question ; B 56 0 492 727 ; -C 64 ; WX 1015 ; N at ; B 147 -19 868 737 ; -C 65 ; WX 667 ; N A ; B 14 0 654 718 ; -C 66 ; WX 667 ; N B ; B 74 0 627 718 ; -C 67 ; WX 722 ; N C ; B 44 -19 681 737 ; -C 68 ; WX 722 ; N D ; B 81 0 674 718 ; -C 69 ; WX 667 ; N E ; B 86 0 616 718 ; -C 70 ; WX 611 ; N F ; B 86 0 583 718 ; -C 71 ; WX 778 ; N G ; B 48 -19 704 737 ; -C 72 ; WX 722 ; N H ; B 77 0 646 718 ; -C 73 ; WX 278 ; N I ; B 91 0 188 718 ; -C 74 ; WX 500 ; N J ; B 17 -19 428 718 ; -C 75 ; WX 667 ; N K ; B 76 0 663 718 ; -C 76 ; WX 556 ; N L ; B 76 0 537 718 ; -C 77 ; WX 833 ; N M ; B 73 0 761 718 ; -C 78 ; WX 722 ; N N ; B 76 0 646 718 ; -C 79 ; WX 778 ; N O ; B 39 -19 739 737 ; -C 80 ; WX 667 ; N P ; B 86 0 622 718 ; -C 81 ; WX 778 ; N Q ; B 39 -56 739 737 ; -C 82 ; WX 722 ; N R ; B 88 0 684 718 ; -C 83 ; WX 667 ; N S ; B 49 -19 620 737 ; -C 84 ; WX 611 ; N T ; B 14 0 597 718 ; -C 85 ; WX 722 ; N U ; B 79 -19 644 718 ; -C 86 ; WX 667 ; N V ; B 20 0 647 718 ; -C 87 ; WX 944 ; N W ; B 16 0 928 718 ; -C 88 ; WX 667 ; N X ; B 19 0 648 718 ; -C 89 ; WX 667 ; N Y ; B 14 0 653 718 ; -C 90 ; WX 611 ; N Z ; B 23 0 588 718 ; -C 91 ; WX 278 ; N bracketleft ; B 63 -196 250 722 ; -C 92 ; WX 278 ; N backslash ; B -17 -19 295 737 ; -C 93 ; WX 278 ; N bracketright ; B 28 -196 215 722 ; -C 94 ; WX 469 ; N asciicircum ; B -14 264 483 688 ; -C 95 ; WX 556 ; N underscore ; B 0 -125 556 -75 ; -C 96 ; WX 222 ; N quoteleft ; B 65 470 169 725 ; -C 97 ; WX 556 ; N a ; B 36 -15 530 538 ; -C 98 ; WX 556 ; N b ; B 58 -15 517 718 ; -C 99 ; WX 500 ; N c ; B 30 -15 477 538 ; -C 100 ; WX 556 ; N d ; B 35 -15 499 718 ; -C 101 ; WX 556 ; N e ; B 40 -15 516 538 ; -C 102 ; WX 278 ; N f ; B 14 0 262 728 ; L i fi ; L l fl ; -C 103 ; WX 556 ; N g ; B 40 -220 499 538 ; -C 104 ; WX 556 ; N h ; B 65 0 491 718 ; -C 105 ; WX 222 ; N i ; B 67 0 155 718 ; -C 106 ; WX 222 ; N j ; B -16 -210 155 718 ; -C 107 ; WX 500 ; N k ; B 67 0 501 718 ; -C 108 ; WX 222 ; N l ; B 67 0 155 718 ; -C 109 ; WX 833 ; N m ; B 65 0 769 538 ; -C 110 ; WX 556 ; N n ; B 65 0 491 538 ; -C 111 ; WX 556 ; N o ; B 35 -14 521 538 ; -C 112 ; WX 556 ; N p ; B 58 -207 517 538 ; -C 113 ; WX 556 ; N q ; B 35 -207 494 538 ; -C 114 ; WX 333 ; N r ; B 77 0 332 538 ; -C 115 ; WX 500 ; N s ; B 32 -15 464 538 ; -C 116 ; WX 278 ; N t ; B 14 -7 257 669 ; -C 117 ; WX 556 ; N u ; B 68 -15 489 523 ; -C 118 ; WX 500 ; N v ; B 8 0 492 523 ; -C 119 ; WX 722 ; N w ; B 14 0 709 523 ; -C 120 ; WX 500 ; N x ; B 11 0 490 523 ; -C 121 ; WX 500 ; N y ; B 11 -214 489 523 ; -C 122 ; WX 500 ; N z ; B 31 0 469 523 ; -C 123 ; WX 334 ; N braceleft ; B 42 -196 292 722 ; -C 124 ; WX 260 ; N bar ; B 94 -225 167 775 ; -C 125 ; WX 334 ; N braceright ; B 42 -196 292 722 ; -C 126 ; WX 584 ; N asciitilde ; B 61 180 523 326 ; -C 161 ; WX 333 ; N exclamdown ; B 118 -195 215 523 ; -C 162 ; WX 556 ; N cent ; B 51 -115 513 623 ; -C 163 ; WX 556 ; N sterling ; B 33 -16 539 718 ; -C 164 ; WX 167 ; N fraction ; B -166 -19 333 703 ; -C 165 ; WX 556 ; N yen ; B 3 0 553 688 ; -C 166 ; WX 556 ; N florin ; B -11 -207 501 737 ; -C 167 ; WX 556 ; N section ; B 43 -191 512 737 ; -C 168 ; WX 556 ; N currency ; B 28 99 528 603 ; -C 169 ; WX 191 ; N quotesingle ; B 59 463 132 718 ; -C 170 ; WX 333 ; N quotedblleft ; B 38 470 307 725 ; -C 171 ; WX 556 ; N guillemotleft ; B 97 108 459 446 ; -C 172 ; WX 333 ; N guilsinglleft ; B 88 108 245 446 ; -C 173 ; WX 333 ; N guilsinglright ; B 88 108 245 446 ; -C 174 ; WX 500 ; N fi ; B 14 0 434 728 ; -C 175 ; WX 500 ; N fl ; B 14 0 432 728 ; -C 177 ; WX 556 ; N endash ; B 0 240 556 313 ; -C 178 ; WX 556 ; N dagger ; B 43 -159 514 718 ; -C 179 ; WX 556 ; N daggerdbl ; B 43 -159 514 718 ; -C 180 ; WX 278 ; N periodcentered ; B 77 190 202 315 ; -C 182 ; WX 537 ; N paragraph ; B 18 -173 497 718 ; -C 183 ; WX 350 ; N bullet ; B 18 202 333 517 ; -C 184 ; WX 222 ; N quotesinglbase ; B 53 -149 157 106 ; -C 185 ; WX 333 ; N quotedblbase ; B 26 -149 295 106 ; -C 186 ; WX 333 ; N quotedblright ; B 26 463 295 718 ; -C 187 ; WX 556 ; N guillemotright ; B 97 108 459 446 ; -C 188 ; WX 1000 ; N ellipsis ; B 115 0 885 106 ; -C 189 ; WX 1000 ; N perthousand ; B 7 -19 994 703 ; -C 191 ; WX 611 ; N questiondown ; B 91 -201 527 525 ; -C 193 ; WX 333 ; N grave ; B 14 593 211 734 ; -C 194 ; WX 333 ; N acute ; B 122 593 319 734 ; -C 195 ; WX 333 ; N circumflex ; B 21 593 312 734 ; -C 196 ; WX 333 ; N tilde ; B -4 606 337 722 ; -C 197 ; WX 333 ; N macron ; B 10 627 323 684 ; -C 198 ; WX 333 ; N breve ; B 13 595 321 731 ; -C 199 ; WX 333 ; N dotaccent ; B 121 604 212 706 ; -C 200 ; WX 333 ; N dieresis ; B 40 604 293 706 ; -C 202 ; WX 333 ; N ring ; B 75 572 259 756 ; -C 203 ; WX 333 ; N cedilla ; B 45 -225 259 0 ; -C 205 ; WX 333 ; N hungarumlaut ; B 31 593 409 734 ; -C 206 ; WX 333 ; N ogonek ; B 73 -225 287 0 ; -C 207 ; WX 333 ; N caron ; B 21 593 312 734 ; -C 208 ; WX 1000 ; N emdash ; B 0 240 1000 313 ; -C 225 ; WX 1000 ; N AE ; B 8 0 951 718 ; -C 227 ; WX 370 ; N ordfeminine ; B 24 405 346 737 ; -C 232 ; WX 556 ; N Lslash ; B -20 0 537 718 ; -C 233 ; WX 778 ; N Oslash ; B 39 -19 740 737 ; -C 234 ; WX 1000 ; N OE ; B 36 -19 965 737 ; -C 235 ; WX 365 ; N ordmasculine ; B 25 405 341 737 ; -C 241 ; WX 889 ; N ae ; B 36 -15 847 538 ; -C 245 ; WX 278 ; N dotlessi ; B 95 0 183 523 ; -C 248 ; WX 222 ; N lslash ; B -20 0 242 718 ; -C 249 ; WX 611 ; N oslash ; B 28 -22 537 545 ; -C 250 ; WX 944 ; N oe ; B 35 -15 902 538 ; -C 251 ; WX 611 ; N germandbls ; B 67 -15 571 728 ; -C -1 ; WX 278 ; N Idieresis ; B 13 0 266 901 ; -C -1 ; WX 556 ; N eacute ; B 40 -15 516 734 ; -C -1 ; WX 556 ; N abreve ; B 36 -15 530 731 ; -C -1 ; WX 556 ; N uhungarumlaut ; B 68 -15 521 734 ; -C -1 ; WX 556 ; N ecaron ; B 40 -15 516 734 ; -C -1 ; WX 667 ; N Ydieresis ; B 14 0 653 901 ; -C -1 ; WX 584 ; N divide ; B 39 -19 545 524 ; -C -1 ; WX 667 ; N Yacute ; B 14 0 653 929 ; -C -1 ; WX 667 ; N Acircumflex ; B 14 0 654 929 ; -C -1 ; WX 556 ; N aacute ; B 36 -15 530 734 ; -C -1 ; WX 722 ; N Ucircumflex ; B 79 -19 644 929 ; -C -1 ; WX 500 ; N yacute ; B 11 -214 489 734 ; -C -1 ; WX 500 ; N scommaaccent ; B 32 -225 464 538 ; -C -1 ; WX 556 ; N ecircumflex ; B 40 -15 516 734 ; -C -1 ; WX 722 ; N Uring ; B 79 -19 644 931 ; -C -1 ; WX 722 ; N Udieresis ; B 79 -19 644 901 ; -C -1 ; WX 556 ; N aogonek ; B 36 -220 547 538 ; -C -1 ; WX 722 ; N Uacute ; B 79 -19 644 929 ; -C -1 ; WX 556 ; N uogonek ; B 68 -225 519 523 ; -C -1 ; WX 667 ; N Edieresis ; B 86 0 616 901 ; -C -1 ; WX 722 ; N Dcroat ; B 0 0 674 718 ; -C -1 ; WX 250 ; N commaaccent ; B 87 -225 181 -40 ; -C -1 ; WX 737 ; N copyright ; B -14 -19 752 737 ; -C -1 ; WX 667 ; N Emacron ; B 86 0 616 879 ; -C -1 ; WX 500 ; N ccaron ; B 30 -15 477 734 ; -C -1 ; WX 556 ; N aring ; B 36 -15 530 756 ; -C -1 ; WX 722 ; N Ncommaaccent ; B 76 -225 646 718 ; -C -1 ; WX 222 ; N lacute ; B 67 0 264 929 ; -C -1 ; WX 556 ; N agrave ; B 36 -15 530 734 ; -C -1 ; WX 611 ; N Tcommaaccent ; B 14 -225 597 718 ; -C -1 ; WX 722 ; N Cacute ; B 44 -19 681 929 ; -C -1 ; WX 556 ; N atilde ; B 36 -15 530 722 ; -C -1 ; WX 667 ; N Edotaccent ; B 86 0 616 901 ; -C -1 ; WX 500 ; N scaron ; B 32 -15 464 734 ; -C -1 ; WX 500 ; N scedilla ; B 32 -225 464 538 ; -C -1 ; WX 278 ; N iacute ; B 95 0 292 734 ; -C -1 ; WX 471 ; N lozenge ; B 10 0 462 728 ; -C -1 ; WX 722 ; N Rcaron ; B 88 0 684 929 ; -C -1 ; WX 778 ; N Gcommaaccent ; B 48 -225 704 737 ; -C -1 ; WX 556 ; N ucircumflex ; B 68 -15 489 734 ; -C -1 ; WX 556 ; N acircumflex ; B 36 -15 530 734 ; -C -1 ; WX 667 ; N Amacron ; B 14 0 654 879 ; -C -1 ; WX 333 ; N rcaron ; B 61 0 352 734 ; -C -1 ; WX 500 ; N ccedilla ; B 30 -225 477 538 ; -C -1 ; WX 611 ; N Zdotaccent ; B 23 0 588 901 ; -C -1 ; WX 667 ; N Thorn ; B 86 0 622 718 ; -C -1 ; WX 778 ; N Omacron ; B 39 -19 739 879 ; -C -1 ; WX 722 ; N Racute ; B 88 0 684 929 ; -C -1 ; WX 667 ; N Sacute ; B 49 -19 620 929 ; -C -1 ; WX 643 ; N dcaron ; B 35 -15 655 718 ; -C -1 ; WX 722 ; N Umacron ; B 79 -19 644 879 ; -C -1 ; WX 556 ; N uring ; B 68 -15 489 756 ; -C -1 ; WX 333 ; N threesuperior ; B 5 270 325 703 ; -C -1 ; WX 778 ; N Ograve ; B 39 -19 739 929 ; -C -1 ; WX 667 ; N Agrave ; B 14 0 654 929 ; -C -1 ; WX 667 ; N Abreve ; B 14 0 654 926 ; -C -1 ; WX 584 ; N multiply ; B 39 0 545 506 ; -C -1 ; WX 556 ; N uacute ; B 68 -15 489 734 ; -C -1 ; WX 611 ; N Tcaron ; B 14 0 597 929 ; -C -1 ; WX 476 ; N partialdiff ; B 13 -38 463 714 ; -C -1 ; WX 500 ; N ydieresis ; B 11 -214 489 706 ; -C -1 ; WX 722 ; N Nacute ; B 76 0 646 929 ; -C -1 ; WX 278 ; N icircumflex ; B -6 0 285 734 ; -C -1 ; WX 667 ; N Ecircumflex ; B 86 0 616 929 ; -C -1 ; WX 556 ; N adieresis ; B 36 -15 530 706 ; -C -1 ; WX 556 ; N edieresis ; B 40 -15 516 706 ; -C -1 ; WX 500 ; N cacute ; B 30 -15 477 734 ; -C -1 ; WX 556 ; N nacute ; B 65 0 491 734 ; -C -1 ; WX 556 ; N umacron ; B 68 -15 489 684 ; -C -1 ; WX 722 ; N Ncaron ; B 76 0 646 929 ; -C -1 ; WX 278 ; N Iacute ; B 91 0 292 929 ; -C -1 ; WX 584 ; N plusminus ; B 39 0 545 506 ; -C -1 ; WX 260 ; N brokenbar ; B 94 -150 167 700 ; -C -1 ; WX 737 ; N registered ; B -14 -19 752 737 ; -C -1 ; WX 778 ; N Gbreve ; B 48 -19 704 926 ; -C -1 ; WX 278 ; N Idotaccent ; B 91 0 188 901 ; -C -1 ; WX 600 ; N summation ; B 15 -10 586 706 ; -C -1 ; WX 667 ; N Egrave ; B 86 0 616 929 ; -C -1 ; WX 333 ; N racute ; B 77 0 332 734 ; -C -1 ; WX 556 ; N omacron ; B 35 -14 521 684 ; -C -1 ; WX 611 ; N Zacute ; B 23 0 588 929 ; -C -1 ; WX 611 ; N Zcaron ; B 23 0 588 929 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 523 674 ; -C -1 ; WX 722 ; N Eth ; B 0 0 674 718 ; -C -1 ; WX 722 ; N Ccedilla ; B 44 -225 681 737 ; -C -1 ; WX 222 ; N lcommaaccent ; B 67 -225 167 718 ; -C -1 ; WX 317 ; N tcaron ; B 14 -7 329 808 ; -C -1 ; WX 556 ; N eogonek ; B 40 -225 516 538 ; -C -1 ; WX 722 ; N Uogonek ; B 79 -225 644 718 ; -C -1 ; WX 667 ; N Aacute ; B 14 0 654 929 ; -C -1 ; WX 667 ; N Adieresis ; B 14 0 654 901 ; -C -1 ; WX 556 ; N egrave ; B 40 -15 516 734 ; -C -1 ; WX 500 ; N zacute ; B 31 0 469 734 ; -C -1 ; WX 222 ; N iogonek ; B -31 -225 183 718 ; -C -1 ; WX 778 ; N Oacute ; B 39 -19 739 929 ; -C -1 ; WX 556 ; N oacute ; B 35 -14 521 734 ; -C -1 ; WX 556 ; N amacron ; B 36 -15 530 684 ; -C -1 ; WX 500 ; N sacute ; B 32 -15 464 734 ; -C -1 ; WX 278 ; N idieresis ; B 13 0 266 706 ; -C -1 ; WX 778 ; N Ocircumflex ; B 39 -19 739 929 ; -C -1 ; WX 722 ; N Ugrave ; B 79 -19 644 929 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 556 ; N thorn ; B 58 -207 517 718 ; -C -1 ; WX 333 ; N twosuperior ; B 4 281 323 703 ; -C -1 ; WX 778 ; N Odieresis ; B 39 -19 739 901 ; -C -1 ; WX 556 ; N mu ; B 68 -207 489 523 ; -C -1 ; WX 278 ; N igrave ; B -13 0 184 734 ; -C -1 ; WX 556 ; N ohungarumlaut ; B 35 -14 521 734 ; -C -1 ; WX 667 ; N Eogonek ; B 86 -220 633 718 ; -C -1 ; WX 556 ; N dcroat ; B 35 -15 550 718 ; -C -1 ; WX 834 ; N threequarters ; B 45 -19 810 703 ; -C -1 ; WX 667 ; N Scedilla ; B 49 -225 620 737 ; -C -1 ; WX 299 ; N lcaron ; B 67 0 311 718 ; -C -1 ; WX 667 ; N Kcommaaccent ; B 76 -225 663 718 ; -C -1 ; WX 556 ; N Lacute ; B 76 0 537 929 ; -C -1 ; WX 1000 ; N trademark ; B 46 306 903 718 ; -C -1 ; WX 556 ; N edotaccent ; B 40 -15 516 706 ; -C -1 ; WX 278 ; N Igrave ; B -13 0 188 929 ; -C -1 ; WX 278 ; N Imacron ; B -17 0 296 879 ; -C -1 ; WX 556 ; N Lcaron ; B 76 0 537 718 ; -C -1 ; WX 834 ; N onehalf ; B 43 -19 773 703 ; -C -1 ; WX 549 ; N lessequal ; B 26 0 523 674 ; -C -1 ; WX 556 ; N ocircumflex ; B 35 -14 521 734 ; -C -1 ; WX 556 ; N ntilde ; B 65 0 491 722 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 79 -19 644 929 ; -C -1 ; WX 667 ; N Eacute ; B 86 0 616 929 ; -C -1 ; WX 556 ; N emacron ; B 40 -15 516 684 ; -C -1 ; WX 556 ; N gbreve ; B 40 -220 499 731 ; -C -1 ; WX 834 ; N onequarter ; B 73 -19 756 703 ; -C -1 ; WX 667 ; N Scaron ; B 49 -19 620 929 ; -C -1 ; WX 667 ; N Scommaaccent ; B 49 -225 620 737 ; -C -1 ; WX 778 ; N Ohungarumlaut ; B 39 -19 739 929 ; -C -1 ; WX 400 ; N degree ; B 54 411 346 703 ; -C -1 ; WX 556 ; N ograve ; B 35 -14 521 734 ; -C -1 ; WX 722 ; N Ccaron ; B 44 -19 681 929 ; -C -1 ; WX 556 ; N ugrave ; B 68 -15 489 734 ; -C -1 ; WX 453 ; N radical ; B -4 -80 458 762 ; -C -1 ; WX 722 ; N Dcaron ; B 81 0 674 929 ; -C -1 ; WX 333 ; N rcommaaccent ; B 77 -225 332 538 ; -C -1 ; WX 722 ; N Ntilde ; B 76 0 646 917 ; -C -1 ; WX 556 ; N otilde ; B 35 -14 521 722 ; -C -1 ; WX 722 ; N Rcommaaccent ; B 88 -225 684 718 ; -C -1 ; WX 556 ; N Lcommaaccent ; B 76 -225 537 718 ; -C -1 ; WX 667 ; N Atilde ; B 14 0 654 917 ; -C -1 ; WX 667 ; N Aogonek ; B 14 -225 654 718 ; -C -1 ; WX 667 ; N Aring ; B 14 0 654 931 ; -C -1 ; WX 778 ; N Otilde ; B 39 -19 739 917 ; -C -1 ; WX 500 ; N zdotaccent ; B 31 0 469 706 ; -C -1 ; WX 667 ; N Ecaron ; B 86 0 616 929 ; -C -1 ; WX 278 ; N Iogonek ; B -3 -225 211 718 ; -C -1 ; WX 500 ; N kcommaaccent ; B 67 -225 501 718 ; -C -1 ; WX 584 ; N minus ; B 39 216 545 289 ; -C -1 ; WX 278 ; N Icircumflex ; B -6 0 285 929 ; -C -1 ; WX 556 ; N ncaron ; B 65 0 491 734 ; -C -1 ; WX 278 ; N tcommaaccent ; B 14 -225 257 669 ; -C -1 ; WX 584 ; N logicalnot ; B 39 108 545 390 ; -C -1 ; WX 556 ; N odieresis ; B 35 -14 521 706 ; -C -1 ; WX 556 ; N udieresis ; B 68 -15 489 706 ; -C -1 ; WX 549 ; N notequal ; B 12 -35 537 551 ; -C -1 ; WX 556 ; N gcommaaccent ; B 40 -220 499 822 ; -C -1 ; WX 556 ; N eth ; B 35 -15 522 737 ; -C -1 ; WX 500 ; N zcaron ; B 31 0 469 734 ; -C -1 ; WX 556 ; N ncommaaccent ; B 65 -225 491 538 ; -C -1 ; WX 333 ; N onesuperior ; B 43 281 222 703 ; -C -1 ; WX 278 ; N imacron ; B 5 0 272 684 ; -C -1 ; WX 556 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2705 -KPX A C -30 -KPX A Cacute -30 -KPX A Ccaron -30 -KPX A Ccedilla -30 -KPX A G -30 -KPX A Gbreve -30 -KPX A Gcommaaccent -30 -KPX A O -30 -KPX A Oacute -30 -KPX A Ocircumflex -30 -KPX A Odieresis -30 -KPX A Ograve -30 -KPX A Ohungarumlaut -30 -KPX A Omacron -30 -KPX A Oslash -30 -KPX A Otilde -30 -KPX A Q -30 -KPX A T -120 -KPX A Tcaron -120 -KPX A Tcommaaccent -120 -KPX A U -50 -KPX A Uacute -50 -KPX A Ucircumflex -50 -KPX A Udieresis -50 -KPX A Ugrave -50 -KPX A Uhungarumlaut -50 -KPX A Umacron -50 -KPX A Uogonek -50 -KPX A Uring -50 -KPX A V -70 -KPX A W -50 -KPX A Y -100 -KPX A Yacute -100 -KPX A Ydieresis -100 -KPX A u -30 -KPX A uacute -30 -KPX A ucircumflex -30 -KPX A udieresis -30 -KPX A ugrave -30 -KPX A uhungarumlaut -30 -KPX A umacron -30 -KPX A uogonek -30 -KPX A uring -30 -KPX A v -40 -KPX A w -40 -KPX A y -40 -KPX A yacute -40 -KPX A ydieresis -40 -KPX Aacute C -30 -KPX Aacute Cacute -30 -KPX Aacute Ccaron -30 -KPX Aacute Ccedilla -30 -KPX Aacute G -30 -KPX Aacute Gbreve -30 -KPX Aacute Gcommaaccent -30 -KPX Aacute O -30 -KPX Aacute Oacute -30 -KPX Aacute Ocircumflex -30 -KPX Aacute Odieresis -30 -KPX Aacute Ograve -30 -KPX Aacute Ohungarumlaut -30 -KPX Aacute Omacron -30 -KPX Aacute Oslash -30 -KPX Aacute Otilde -30 -KPX Aacute Q -30 -KPX Aacute T -120 -KPX Aacute Tcaron -120 -KPX Aacute Tcommaaccent -120 -KPX Aacute U -50 -KPX Aacute Uacute -50 -KPX Aacute Ucircumflex -50 -KPX Aacute Udieresis -50 -KPX Aacute Ugrave -50 -KPX Aacute Uhungarumlaut -50 -KPX Aacute Umacron -50 -KPX Aacute Uogonek -50 -KPX Aacute Uring -50 -KPX Aacute V -70 -KPX Aacute W -50 -KPX Aacute Y -100 -KPX Aacute Yacute -100 -KPX Aacute Ydieresis -100 -KPX Aacute u -30 -KPX Aacute uacute -30 -KPX Aacute ucircumflex -30 -KPX Aacute udieresis -30 -KPX Aacute ugrave -30 -KPX Aacute uhungarumlaut -30 -KPX Aacute umacron -30 -KPX Aacute uogonek -30 -KPX Aacute uring -30 -KPX Aacute v -40 -KPX Aacute w -40 -KPX Aacute y -40 -KPX Aacute yacute -40 -KPX Aacute ydieresis -40 -KPX Abreve C -30 -KPX Abreve Cacute -30 -KPX Abreve Ccaron -30 -KPX Abreve Ccedilla -30 -KPX Abreve G -30 -KPX Abreve Gbreve -30 -KPX Abreve Gcommaaccent -30 -KPX Abreve O -30 -KPX Abreve Oacute -30 -KPX Abreve Ocircumflex -30 -KPX Abreve Odieresis -30 -KPX Abreve Ograve -30 -KPX Abreve Ohungarumlaut -30 -KPX Abreve Omacron -30 -KPX Abreve Oslash -30 -KPX Abreve Otilde -30 -KPX Abreve Q -30 -KPX Abreve T -120 -KPX Abreve Tcaron -120 -KPX Abreve Tcommaaccent -120 -KPX Abreve U -50 -KPX Abreve Uacute -50 -KPX Abreve Ucircumflex -50 -KPX Abreve Udieresis -50 -KPX Abreve Ugrave -50 -KPX Abreve Uhungarumlaut -50 -KPX Abreve Umacron -50 -KPX Abreve Uogonek -50 -KPX Abreve Uring -50 -KPX Abreve V -70 -KPX Abreve W -50 -KPX Abreve Y -100 -KPX Abreve Yacute -100 -KPX Abreve Ydieresis -100 -KPX Abreve u -30 -KPX Abreve uacute -30 -KPX Abreve ucircumflex -30 -KPX Abreve udieresis -30 -KPX Abreve ugrave -30 -KPX Abreve uhungarumlaut -30 -KPX Abreve umacron -30 -KPX Abreve uogonek -30 -KPX Abreve uring -30 -KPX Abreve v -40 -KPX Abreve w -40 -KPX Abreve y -40 -KPX Abreve yacute -40 -KPX Abreve ydieresis -40 -KPX Acircumflex C -30 -KPX Acircumflex Cacute -30 -KPX Acircumflex Ccaron -30 -KPX Acircumflex Ccedilla -30 -KPX Acircumflex G -30 -KPX Acircumflex Gbreve -30 -KPX Acircumflex Gcommaaccent -30 -KPX Acircumflex O -30 -KPX Acircumflex Oacute -30 -KPX Acircumflex Ocircumflex -30 -KPX Acircumflex Odieresis -30 -KPX Acircumflex Ograve -30 -KPX Acircumflex Ohungarumlaut -30 -KPX Acircumflex Omacron -30 -KPX Acircumflex Oslash -30 -KPX Acircumflex Otilde -30 -KPX Acircumflex Q -30 -KPX Acircumflex T -120 -KPX Acircumflex Tcaron -120 -KPX Acircumflex Tcommaaccent -120 -KPX Acircumflex U -50 -KPX Acircumflex Uacute -50 -KPX Acircumflex Ucircumflex -50 -KPX Acircumflex Udieresis -50 -KPX Acircumflex Ugrave -50 -KPX Acircumflex Uhungarumlaut -50 -KPX Acircumflex Umacron -50 -KPX Acircumflex Uogonek -50 -KPX Acircumflex Uring -50 -KPX Acircumflex V -70 -KPX Acircumflex W -50 -KPX Acircumflex Y -100 -KPX Acircumflex Yacute -100 -KPX Acircumflex Ydieresis -100 -KPX Acircumflex u -30 -KPX Acircumflex uacute -30 -KPX Acircumflex ucircumflex -30 -KPX Acircumflex udieresis -30 -KPX Acircumflex ugrave -30 -KPX Acircumflex uhungarumlaut -30 -KPX Acircumflex umacron -30 -KPX Acircumflex uogonek -30 -KPX Acircumflex uring -30 -KPX Acircumflex v -40 -KPX Acircumflex w -40 -KPX Acircumflex y -40 -KPX Acircumflex yacute -40 -KPX Acircumflex ydieresis -40 -KPX Adieresis C -30 -KPX Adieresis Cacute -30 -KPX Adieresis Ccaron -30 -KPX Adieresis Ccedilla -30 -KPX Adieresis G -30 -KPX Adieresis Gbreve -30 -KPX Adieresis Gcommaaccent -30 -KPX Adieresis O -30 -KPX Adieresis Oacute -30 -KPX Adieresis Ocircumflex -30 -KPX Adieresis Odieresis -30 -KPX Adieresis Ograve -30 -KPX Adieresis Ohungarumlaut -30 -KPX Adieresis Omacron -30 -KPX Adieresis Oslash -30 -KPX Adieresis Otilde -30 -KPX Adieresis Q -30 -KPX Adieresis T -120 -KPX Adieresis Tcaron -120 -KPX Adieresis Tcommaaccent -120 -KPX Adieresis U -50 -KPX Adieresis Uacute -50 -KPX Adieresis Ucircumflex -50 -KPX Adieresis Udieresis -50 -KPX Adieresis Ugrave -50 -KPX Adieresis Uhungarumlaut -50 -KPX Adieresis Umacron -50 -KPX Adieresis Uogonek -50 -KPX Adieresis Uring -50 -KPX Adieresis V -70 -KPX Adieresis W -50 -KPX Adieresis Y -100 -KPX Adieresis Yacute -100 -KPX Adieresis Ydieresis -100 -KPX Adieresis u -30 -KPX Adieresis uacute -30 -KPX Adieresis ucircumflex -30 -KPX Adieresis udieresis -30 -KPX Adieresis ugrave -30 -KPX Adieresis uhungarumlaut -30 -KPX Adieresis umacron -30 -KPX Adieresis uogonek -30 -KPX Adieresis uring -30 -KPX Adieresis v -40 -KPX Adieresis w -40 -KPX Adieresis y -40 -KPX Adieresis yacute -40 -KPX Adieresis ydieresis -40 -KPX Agrave C -30 -KPX Agrave Cacute -30 -KPX Agrave Ccaron -30 -KPX Agrave Ccedilla -30 -KPX Agrave G -30 -KPX Agrave Gbreve -30 -KPX Agrave Gcommaaccent -30 -KPX Agrave O -30 -KPX Agrave Oacute -30 -KPX Agrave Ocircumflex -30 -KPX Agrave Odieresis -30 -KPX Agrave Ograve -30 -KPX Agrave Ohungarumlaut -30 -KPX Agrave Omacron -30 -KPX Agrave Oslash -30 -KPX Agrave Otilde -30 -KPX Agrave Q -30 -KPX Agrave T -120 -KPX Agrave Tcaron -120 -KPX Agrave Tcommaaccent -120 -KPX Agrave U -50 -KPX Agrave Uacute -50 -KPX Agrave Ucircumflex -50 -KPX Agrave Udieresis -50 -KPX Agrave Ugrave -50 -KPX Agrave Uhungarumlaut -50 -KPX Agrave Umacron -50 -KPX Agrave Uogonek -50 -KPX Agrave Uring -50 -KPX Agrave V -70 -KPX Agrave W -50 -KPX Agrave Y -100 -KPX Agrave Yacute -100 -KPX Agrave Ydieresis -100 -KPX Agrave u -30 -KPX Agrave uacute -30 -KPX Agrave ucircumflex -30 -KPX Agrave udieresis -30 -KPX Agrave ugrave -30 -KPX Agrave uhungarumlaut -30 -KPX Agrave umacron -30 -KPX Agrave uogonek -30 -KPX Agrave uring -30 -KPX Agrave v -40 -KPX Agrave w -40 -KPX Agrave y -40 -KPX Agrave yacute -40 -KPX Agrave ydieresis -40 -KPX Amacron C -30 -KPX Amacron Cacute -30 -KPX Amacron Ccaron -30 -KPX Amacron Ccedilla -30 -KPX Amacron G -30 -KPX Amacron Gbreve -30 -KPX Amacron Gcommaaccent -30 -KPX Amacron O -30 -KPX Amacron Oacute -30 -KPX Amacron Ocircumflex -30 -KPX Amacron Odieresis -30 -KPX Amacron Ograve -30 -KPX Amacron Ohungarumlaut -30 -KPX Amacron Omacron -30 -KPX Amacron Oslash -30 -KPX Amacron Otilde -30 -KPX Amacron Q -30 -KPX Amacron T -120 -KPX Amacron Tcaron -120 -KPX Amacron Tcommaaccent -120 -KPX Amacron U -50 -KPX Amacron Uacute -50 -KPX Amacron Ucircumflex -50 -KPX Amacron Udieresis -50 -KPX Amacron Ugrave -50 -KPX Amacron Uhungarumlaut -50 -KPX Amacron Umacron -50 -KPX Amacron Uogonek -50 -KPX Amacron Uring -50 -KPX Amacron V -70 -KPX Amacron W -50 -KPX Amacron Y -100 -KPX Amacron Yacute -100 -KPX Amacron Ydieresis -100 -KPX Amacron u -30 -KPX Amacron uacute -30 -KPX Amacron ucircumflex -30 -KPX Amacron udieresis -30 -KPX Amacron ugrave -30 -KPX Amacron uhungarumlaut -30 -KPX Amacron umacron -30 -KPX Amacron uogonek -30 -KPX Amacron uring -30 -KPX Amacron v -40 -KPX Amacron w -40 -KPX Amacron y -40 -KPX Amacron yacute -40 -KPX Amacron ydieresis -40 -KPX Aogonek C -30 -KPX Aogonek Cacute -30 -KPX Aogonek Ccaron -30 -KPX Aogonek Ccedilla -30 -KPX Aogonek G -30 -KPX Aogonek Gbreve -30 -KPX Aogonek Gcommaaccent -30 -KPX Aogonek O -30 -KPX Aogonek Oacute -30 -KPX Aogonek Ocircumflex -30 -KPX Aogonek Odieresis -30 -KPX Aogonek Ograve -30 -KPX Aogonek Ohungarumlaut -30 -KPX Aogonek Omacron -30 -KPX Aogonek Oslash -30 -KPX Aogonek Otilde -30 -KPX Aogonek Q -30 -KPX Aogonek T -120 -KPX Aogonek Tcaron -120 -KPX Aogonek Tcommaaccent -120 -KPX Aogonek U -50 -KPX Aogonek Uacute -50 -KPX Aogonek Ucircumflex -50 -KPX Aogonek Udieresis -50 -KPX Aogonek Ugrave -50 -KPX Aogonek Uhungarumlaut -50 -KPX Aogonek Umacron -50 -KPX Aogonek Uogonek -50 -KPX Aogonek Uring -50 -KPX Aogonek V -70 -KPX Aogonek W -50 -KPX Aogonek Y -100 -KPX Aogonek Yacute -100 -KPX Aogonek Ydieresis -100 -KPX Aogonek u -30 -KPX Aogonek uacute -30 -KPX Aogonek ucircumflex -30 -KPX Aogonek udieresis -30 -KPX Aogonek ugrave -30 -KPX Aogonek uhungarumlaut -30 -KPX Aogonek umacron -30 -KPX Aogonek uogonek -30 -KPX Aogonek uring -30 -KPX Aogonek v -40 -KPX Aogonek w -40 -KPX Aogonek y -40 -KPX Aogonek yacute -40 -KPX Aogonek ydieresis -40 -KPX Aring C -30 -KPX Aring Cacute -30 -KPX Aring Ccaron -30 -KPX Aring Ccedilla -30 -KPX Aring G -30 -KPX Aring Gbreve -30 -KPX Aring Gcommaaccent -30 -KPX Aring O -30 -KPX Aring Oacute -30 -KPX Aring Ocircumflex -30 -KPX Aring Odieresis -30 -KPX Aring Ograve -30 -KPX Aring Ohungarumlaut -30 -KPX Aring Omacron -30 -KPX Aring Oslash -30 -KPX Aring Otilde -30 -KPX Aring Q -30 -KPX Aring T -120 -KPX Aring Tcaron -120 -KPX Aring Tcommaaccent -120 -KPX Aring U -50 -KPX Aring Uacute -50 -KPX Aring Ucircumflex -50 -KPX Aring Udieresis -50 -KPX Aring Ugrave -50 -KPX Aring Uhungarumlaut -50 -KPX Aring Umacron -50 -KPX Aring Uogonek -50 -KPX Aring Uring -50 -KPX Aring V -70 -KPX Aring W -50 -KPX Aring Y -100 -KPX Aring Yacute -100 -KPX Aring Ydieresis -100 -KPX Aring u -30 -KPX Aring uacute -30 -KPX Aring ucircumflex -30 -KPX Aring udieresis -30 -KPX Aring ugrave -30 -KPX Aring uhungarumlaut -30 -KPX Aring umacron -30 -KPX Aring uogonek -30 -KPX Aring uring -30 -KPX Aring v -40 -KPX Aring w -40 -KPX Aring y -40 -KPX Aring yacute -40 -KPX Aring ydieresis -40 -KPX Atilde C -30 -KPX Atilde Cacute -30 -KPX Atilde Ccaron -30 -KPX Atilde Ccedilla -30 -KPX Atilde G -30 -KPX Atilde Gbreve -30 -KPX Atilde Gcommaaccent -30 -KPX Atilde O -30 -KPX Atilde Oacute -30 -KPX Atilde Ocircumflex -30 -KPX Atilde Odieresis -30 -KPX Atilde Ograve -30 -KPX Atilde Ohungarumlaut -30 -KPX Atilde Omacron -30 -KPX Atilde Oslash -30 -KPX Atilde Otilde -30 -KPX Atilde Q -30 -KPX Atilde T -120 -KPX Atilde Tcaron -120 -KPX Atilde Tcommaaccent -120 -KPX Atilde U -50 -KPX Atilde Uacute -50 -KPX Atilde Ucircumflex -50 -KPX Atilde Udieresis -50 -KPX Atilde Ugrave -50 -KPX Atilde Uhungarumlaut -50 -KPX Atilde Umacron -50 -KPX Atilde Uogonek -50 -KPX Atilde Uring -50 -KPX Atilde V -70 -KPX Atilde W -50 -KPX Atilde Y -100 -KPX Atilde Yacute -100 -KPX Atilde Ydieresis -100 -KPX Atilde u -30 -KPX Atilde uacute -30 -KPX Atilde ucircumflex -30 -KPX Atilde udieresis -30 -KPX Atilde ugrave -30 -KPX Atilde uhungarumlaut -30 -KPX Atilde umacron -30 -KPX Atilde uogonek -30 -KPX Atilde uring -30 -KPX Atilde v -40 -KPX Atilde w -40 -KPX Atilde y -40 -KPX Atilde yacute -40 -KPX Atilde ydieresis -40 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX B comma -20 -KPX B period -20 -KPX C comma -30 -KPX C period -30 -KPX Cacute comma -30 -KPX Cacute period -30 -KPX Ccaron comma -30 -KPX Ccaron period -30 -KPX Ccedilla comma -30 -KPX Ccedilla period -30 -KPX D A -40 -KPX D Aacute -40 -KPX D Abreve -40 -KPX D Acircumflex -40 -KPX D Adieresis -40 -KPX D Agrave -40 -KPX D Amacron -40 -KPX D Aogonek -40 -KPX D Aring -40 -KPX D Atilde -40 -KPX D V -70 -KPX D W -40 -KPX D Y -90 -KPX D Yacute -90 -KPX D Ydieresis -90 -KPX D comma -70 -KPX D period -70 -KPX Dcaron A -40 -KPX Dcaron Aacute -40 -KPX Dcaron Abreve -40 -KPX Dcaron Acircumflex -40 -KPX Dcaron Adieresis -40 -KPX Dcaron Agrave -40 -KPX Dcaron Amacron -40 -KPX Dcaron Aogonek -40 -KPX Dcaron Aring -40 -KPX Dcaron Atilde -40 -KPX Dcaron V -70 -KPX Dcaron W -40 -KPX Dcaron Y -90 -KPX Dcaron Yacute -90 -KPX Dcaron Ydieresis -90 -KPX Dcaron comma -70 -KPX Dcaron period -70 -KPX Dcroat A -40 -KPX Dcroat Aacute -40 -KPX Dcroat Abreve -40 -KPX Dcroat Acircumflex -40 -KPX Dcroat Adieresis -40 -KPX Dcroat Agrave -40 -KPX Dcroat Amacron -40 -KPX Dcroat Aogonek -40 -KPX Dcroat Aring -40 -KPX Dcroat Atilde -40 -KPX Dcroat V -70 -KPX Dcroat W -40 -KPX Dcroat Y -90 -KPX Dcroat Yacute -90 -KPX Dcroat Ydieresis -90 -KPX Dcroat comma -70 -KPX Dcroat period -70 -KPX F A -80 -KPX F Aacute -80 -KPX F Abreve -80 -KPX F Acircumflex -80 -KPX F Adieresis -80 -KPX F Agrave -80 -KPX F Amacron -80 -KPX F Aogonek -80 -KPX F Aring -80 -KPX F Atilde -80 -KPX F a -50 -KPX F aacute -50 -KPX F abreve -50 -KPX F acircumflex -50 -KPX F adieresis -50 -KPX F agrave -50 -KPX F amacron -50 -KPX F aogonek -50 -KPX F aring -50 -KPX F atilde -50 -KPX F comma -150 -KPX F e -30 -KPX F eacute -30 -KPX F ecaron -30 -KPX F ecircumflex -30 -KPX F edieresis -30 -KPX F edotaccent -30 -KPX F egrave -30 -KPX F emacron -30 -KPX F eogonek -30 -KPX F o -30 -KPX F oacute -30 -KPX F ocircumflex -30 -KPX F odieresis -30 -KPX F ograve -30 -KPX F ohungarumlaut -30 -KPX F omacron -30 -KPX F oslash -30 -KPX F otilde -30 -KPX F period -150 -KPX F r -45 -KPX F racute -45 -KPX F rcaron -45 -KPX F rcommaaccent -45 -KPX J A -20 -KPX J Aacute -20 -KPX J Abreve -20 -KPX J Acircumflex -20 -KPX J Adieresis -20 -KPX J Agrave -20 -KPX J Amacron -20 -KPX J Aogonek -20 -KPX J Aring -20 -KPX J Atilde -20 -KPX J a -20 -KPX J aacute -20 -KPX J abreve -20 -KPX J acircumflex -20 -KPX J adieresis -20 -KPX J agrave -20 -KPX J amacron -20 -KPX J aogonek -20 -KPX J aring -20 -KPX J atilde -20 -KPX J comma -30 -KPX J period -30 -KPX J u -20 -KPX J uacute -20 -KPX J ucircumflex -20 -KPX J udieresis -20 -KPX J ugrave -20 -KPX J uhungarumlaut -20 -KPX J umacron -20 -KPX J uogonek -20 -KPX J uring -20 -KPX K O -50 -KPX K Oacute -50 -KPX K Ocircumflex -50 -KPX K Odieresis -50 -KPX K Ograve -50 -KPX K Ohungarumlaut -50 -KPX K Omacron -50 -KPX K Oslash -50 -KPX K Otilde -50 -KPX K e -40 -KPX K eacute -40 -KPX K ecaron -40 -KPX K ecircumflex -40 -KPX K edieresis -40 -KPX K edotaccent -40 -KPX K egrave -40 -KPX K emacron -40 -KPX K eogonek -40 -KPX K o -40 -KPX K oacute -40 -KPX K ocircumflex -40 -KPX K odieresis -40 -KPX K ograve -40 -KPX K ohungarumlaut -40 -KPX K omacron -40 -KPX K oslash -40 -KPX K otilde -40 -KPX K u -30 -KPX K uacute -30 -KPX K ucircumflex -30 -KPX K udieresis -30 -KPX K ugrave -30 -KPX K uhungarumlaut -30 -KPX K umacron -30 -KPX K uogonek -30 -KPX K uring -30 -KPX K y -50 -KPX K yacute -50 -KPX K ydieresis -50 -KPX Kcommaaccent O -50 -KPX Kcommaaccent Oacute -50 -KPX Kcommaaccent Ocircumflex -50 -KPX Kcommaaccent Odieresis -50 -KPX Kcommaaccent Ograve -50 -KPX Kcommaaccent Ohungarumlaut -50 -KPX Kcommaaccent Omacron -50 -KPX Kcommaaccent Oslash -50 -KPX Kcommaaccent Otilde -50 -KPX Kcommaaccent e -40 -KPX Kcommaaccent eacute -40 -KPX Kcommaaccent ecaron -40 -KPX Kcommaaccent ecircumflex -40 -KPX Kcommaaccent edieresis -40 -KPX Kcommaaccent edotaccent -40 -KPX Kcommaaccent egrave -40 -KPX Kcommaaccent emacron -40 -KPX Kcommaaccent eogonek -40 -KPX Kcommaaccent o -40 -KPX Kcommaaccent oacute -40 -KPX Kcommaaccent ocircumflex -40 -KPX Kcommaaccent odieresis -40 -KPX Kcommaaccent ograve -40 -KPX Kcommaaccent ohungarumlaut -40 -KPX Kcommaaccent omacron -40 -KPX Kcommaaccent oslash -40 -KPX Kcommaaccent otilde -40 -KPX Kcommaaccent u -30 -KPX Kcommaaccent uacute -30 -KPX Kcommaaccent ucircumflex -30 -KPX Kcommaaccent udieresis -30 -KPX Kcommaaccent ugrave -30 -KPX Kcommaaccent uhungarumlaut -30 -KPX Kcommaaccent umacron -30 -KPX Kcommaaccent uogonek -30 -KPX Kcommaaccent uring -30 -KPX Kcommaaccent y -50 -KPX Kcommaaccent yacute -50 -KPX Kcommaaccent ydieresis -50 -KPX L T -110 -KPX L Tcaron -110 -KPX L Tcommaaccent -110 -KPX L V -110 -KPX L W -70 -KPX L Y -140 -KPX L Yacute -140 -KPX L Ydieresis -140 -KPX L quotedblright -140 -KPX L quoteright -160 -KPX L y -30 -KPX L yacute -30 -KPX L ydieresis -30 -KPX Lacute T -110 -KPX Lacute Tcaron -110 -KPX Lacute Tcommaaccent -110 -KPX Lacute V -110 -KPX Lacute W -70 -KPX Lacute Y -140 -KPX Lacute Yacute -140 -KPX Lacute Ydieresis -140 -KPX Lacute quotedblright -140 -KPX Lacute quoteright -160 -KPX Lacute y -30 -KPX Lacute yacute -30 -KPX Lacute ydieresis -30 -KPX Lcaron T -110 -KPX Lcaron Tcaron -110 -KPX Lcaron Tcommaaccent -110 -KPX Lcaron V -110 -KPX Lcaron W -70 -KPX Lcaron Y -140 -KPX Lcaron Yacute -140 -KPX Lcaron Ydieresis -140 -KPX Lcaron quotedblright -140 -KPX Lcaron quoteright -160 -KPX Lcaron y -30 -KPX Lcaron yacute -30 -KPX Lcaron ydieresis -30 -KPX Lcommaaccent T -110 -KPX Lcommaaccent Tcaron -110 -KPX Lcommaaccent Tcommaaccent -110 -KPX Lcommaaccent V -110 -KPX Lcommaaccent W -70 -KPX Lcommaaccent Y -140 -KPX Lcommaaccent Yacute -140 -KPX Lcommaaccent Ydieresis -140 -KPX Lcommaaccent quotedblright -140 -KPX Lcommaaccent quoteright -160 -KPX Lcommaaccent y -30 -KPX Lcommaaccent yacute -30 -KPX Lcommaaccent ydieresis -30 -KPX Lslash T -110 -KPX Lslash Tcaron -110 -KPX Lslash Tcommaaccent -110 -KPX Lslash V -110 -KPX Lslash W -70 -KPX Lslash Y -140 -KPX Lslash Yacute -140 -KPX Lslash Ydieresis -140 -KPX Lslash quotedblright -140 -KPX Lslash quoteright -160 -KPX Lslash y -30 -KPX Lslash yacute -30 -KPX Lslash ydieresis -30 -KPX O A -20 -KPX O Aacute -20 -KPX O Abreve -20 -KPX O Acircumflex -20 -KPX O Adieresis -20 -KPX O Agrave -20 -KPX O Amacron -20 -KPX O Aogonek -20 -KPX O Aring -20 -KPX O Atilde -20 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -30 -KPX O X -60 -KPX O Y -70 -KPX O Yacute -70 -KPX O Ydieresis -70 -KPX O comma -40 -KPX O period -40 -KPX Oacute A -20 -KPX Oacute Aacute -20 -KPX Oacute Abreve -20 -KPX Oacute Acircumflex -20 -KPX Oacute Adieresis -20 -KPX Oacute Agrave -20 -KPX Oacute Amacron -20 -KPX Oacute Aogonek -20 -KPX Oacute Aring -20 -KPX Oacute Atilde -20 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -30 -KPX Oacute X -60 -KPX Oacute Y -70 -KPX Oacute Yacute -70 -KPX Oacute Ydieresis -70 -KPX Oacute comma -40 -KPX Oacute period -40 -KPX Ocircumflex A -20 -KPX Ocircumflex Aacute -20 -KPX Ocircumflex Abreve -20 -KPX Ocircumflex Acircumflex -20 -KPX Ocircumflex Adieresis -20 -KPX Ocircumflex Agrave -20 -KPX Ocircumflex Amacron -20 -KPX Ocircumflex Aogonek -20 -KPX Ocircumflex Aring -20 -KPX Ocircumflex Atilde -20 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -30 -KPX Ocircumflex X -60 -KPX Ocircumflex Y -70 -KPX Ocircumflex Yacute -70 -KPX Ocircumflex Ydieresis -70 -KPX Ocircumflex comma -40 -KPX Ocircumflex period -40 -KPX Odieresis A -20 -KPX Odieresis Aacute -20 -KPX Odieresis Abreve -20 -KPX Odieresis Acircumflex -20 -KPX Odieresis Adieresis -20 -KPX Odieresis Agrave -20 -KPX Odieresis Amacron -20 -KPX Odieresis Aogonek -20 -KPX Odieresis Aring -20 -KPX Odieresis Atilde -20 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -30 -KPX Odieresis X -60 -KPX Odieresis Y -70 -KPX Odieresis Yacute -70 -KPX Odieresis Ydieresis -70 -KPX Odieresis comma -40 -KPX Odieresis period -40 -KPX Ograve A -20 -KPX Ograve Aacute -20 -KPX Ograve Abreve -20 -KPX Ograve Acircumflex -20 -KPX Ograve Adieresis -20 -KPX Ograve Agrave -20 -KPX Ograve Amacron -20 -KPX Ograve Aogonek -20 -KPX Ograve Aring -20 -KPX Ograve Atilde -20 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -30 -KPX Ograve X -60 -KPX Ograve Y -70 -KPX Ograve Yacute -70 -KPX Ograve Ydieresis -70 -KPX Ograve comma -40 -KPX Ograve period -40 -KPX Ohungarumlaut A -20 -KPX Ohungarumlaut Aacute -20 -KPX Ohungarumlaut Abreve -20 -KPX Ohungarumlaut Acircumflex -20 -KPX Ohungarumlaut Adieresis -20 -KPX Ohungarumlaut Agrave -20 -KPX Ohungarumlaut Amacron -20 -KPX Ohungarumlaut Aogonek -20 -KPX Ohungarumlaut Aring -20 -KPX Ohungarumlaut Atilde -20 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -30 -KPX Ohungarumlaut X -60 -KPX Ohungarumlaut Y -70 -KPX Ohungarumlaut Yacute -70 -KPX Ohungarumlaut Ydieresis -70 -KPX Ohungarumlaut comma -40 -KPX Ohungarumlaut period -40 -KPX Omacron A -20 -KPX Omacron Aacute -20 -KPX Omacron Abreve -20 -KPX Omacron Acircumflex -20 -KPX Omacron Adieresis -20 -KPX Omacron Agrave -20 -KPX Omacron Amacron -20 -KPX Omacron Aogonek -20 -KPX Omacron Aring -20 -KPX Omacron Atilde -20 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -30 -KPX Omacron X -60 -KPX Omacron Y -70 -KPX Omacron Yacute -70 -KPX Omacron Ydieresis -70 -KPX Omacron comma -40 -KPX Omacron period -40 -KPX Oslash A -20 -KPX Oslash Aacute -20 -KPX Oslash Abreve -20 -KPX Oslash Acircumflex -20 -KPX Oslash Adieresis -20 -KPX Oslash Agrave -20 -KPX Oslash Amacron -20 -KPX Oslash Aogonek -20 -KPX Oslash Aring -20 -KPX Oslash Atilde -20 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -30 -KPX Oslash X -60 -KPX Oslash Y -70 -KPX Oslash Yacute -70 -KPX Oslash Ydieresis -70 -KPX Oslash comma -40 -KPX Oslash period -40 -KPX Otilde A -20 -KPX Otilde Aacute -20 -KPX Otilde Abreve -20 -KPX Otilde Acircumflex -20 -KPX Otilde Adieresis -20 -KPX Otilde Agrave -20 -KPX Otilde Amacron -20 -KPX Otilde Aogonek -20 -KPX Otilde Aring -20 -KPX Otilde Atilde -20 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -30 -KPX Otilde X -60 -KPX Otilde Y -70 -KPX Otilde Yacute -70 -KPX Otilde Ydieresis -70 -KPX Otilde comma -40 -KPX Otilde period -40 -KPX P A -120 -KPX P Aacute -120 -KPX P Abreve -120 -KPX P Acircumflex -120 -KPX P Adieresis -120 -KPX P Agrave -120 -KPX P Amacron -120 -KPX P Aogonek -120 -KPX P Aring -120 -KPX P Atilde -120 -KPX P a -40 -KPX P aacute -40 -KPX P abreve -40 -KPX P acircumflex -40 -KPX P adieresis -40 -KPX P agrave -40 -KPX P amacron -40 -KPX P aogonek -40 -KPX P aring -40 -KPX P atilde -40 -KPX P comma -180 -KPX P e -50 -KPX P eacute -50 -KPX P ecaron -50 -KPX P ecircumflex -50 -KPX P edieresis -50 -KPX P edotaccent -50 -KPX P egrave -50 -KPX P emacron -50 -KPX P eogonek -50 -KPX P o -50 -KPX P oacute -50 -KPX P ocircumflex -50 -KPX P odieresis -50 -KPX P ograve -50 -KPX P ohungarumlaut -50 -KPX P omacron -50 -KPX P oslash -50 -KPX P otilde -50 -KPX P period -180 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX R O -20 -KPX R Oacute -20 -KPX R Ocircumflex -20 -KPX R Odieresis -20 -KPX R Ograve -20 -KPX R Ohungarumlaut -20 -KPX R Omacron -20 -KPX R Oslash -20 -KPX R Otilde -20 -KPX R T -30 -KPX R Tcaron -30 -KPX R Tcommaaccent -30 -KPX R U -40 -KPX R Uacute -40 -KPX R Ucircumflex -40 -KPX R Udieresis -40 -KPX R Ugrave -40 -KPX R Uhungarumlaut -40 -KPX R Umacron -40 -KPX R Uogonek -40 -KPX R Uring -40 -KPX R V -50 -KPX R W -30 -KPX R Y -50 -KPX R Yacute -50 -KPX R Ydieresis -50 -KPX Racute O -20 -KPX Racute Oacute -20 -KPX Racute Ocircumflex -20 -KPX Racute Odieresis -20 -KPX Racute Ograve -20 -KPX Racute Ohungarumlaut -20 -KPX Racute Omacron -20 -KPX Racute Oslash -20 -KPX Racute Otilde -20 -KPX Racute T -30 -KPX Racute Tcaron -30 -KPX Racute Tcommaaccent -30 -KPX Racute U -40 -KPX Racute Uacute -40 -KPX Racute Ucircumflex -40 -KPX Racute Udieresis -40 -KPX Racute Ugrave -40 -KPX Racute Uhungarumlaut -40 -KPX Racute Umacron -40 -KPX Racute Uogonek -40 -KPX Racute Uring -40 -KPX Racute V -50 -KPX Racute W -30 -KPX Racute Y -50 -KPX Racute Yacute -50 -KPX Racute Ydieresis -50 -KPX Rcaron O -20 -KPX Rcaron Oacute -20 -KPX Rcaron Ocircumflex -20 -KPX Rcaron Odieresis -20 -KPX Rcaron Ograve -20 -KPX Rcaron Ohungarumlaut -20 -KPX Rcaron Omacron -20 -KPX Rcaron Oslash -20 -KPX Rcaron Otilde -20 -KPX Rcaron T -30 -KPX Rcaron Tcaron -30 -KPX Rcaron Tcommaaccent -30 -KPX Rcaron U -40 -KPX Rcaron Uacute -40 -KPX Rcaron Ucircumflex -40 -KPX Rcaron Udieresis -40 -KPX Rcaron Ugrave -40 -KPX Rcaron Uhungarumlaut -40 -KPX Rcaron Umacron -40 -KPX Rcaron Uogonek -40 -KPX Rcaron Uring -40 -KPX Rcaron V -50 -KPX Rcaron W -30 -KPX Rcaron Y -50 -KPX Rcaron Yacute -50 -KPX Rcaron Ydieresis -50 -KPX Rcommaaccent O -20 -KPX Rcommaaccent Oacute -20 -KPX Rcommaaccent Ocircumflex -20 -KPX Rcommaaccent Odieresis -20 -KPX Rcommaaccent Ograve -20 -KPX Rcommaaccent Ohungarumlaut -20 -KPX Rcommaaccent Omacron -20 -KPX Rcommaaccent Oslash -20 -KPX Rcommaaccent Otilde -20 -KPX Rcommaaccent T -30 -KPX Rcommaaccent Tcaron -30 -KPX Rcommaaccent Tcommaaccent -30 -KPX Rcommaaccent U -40 -KPX Rcommaaccent Uacute -40 -KPX Rcommaaccent Ucircumflex -40 -KPX Rcommaaccent Udieresis -40 -KPX Rcommaaccent Ugrave -40 -KPX Rcommaaccent Uhungarumlaut -40 -KPX Rcommaaccent Umacron -40 -KPX Rcommaaccent Uogonek -40 -KPX Rcommaaccent Uring -40 -KPX Rcommaaccent V -50 -KPX Rcommaaccent W -30 -KPX Rcommaaccent Y -50 -KPX Rcommaaccent Yacute -50 -KPX Rcommaaccent Ydieresis -50 -KPX S comma -20 -KPX S period -20 -KPX Sacute comma -20 -KPX Sacute period -20 -KPX Scaron comma -20 -KPX Scaron period -20 -KPX Scedilla comma -20 -KPX Scedilla period -20 -KPX Scommaaccent comma -20 -KPX Scommaaccent period -20 -KPX T A -120 -KPX T Aacute -120 -KPX T Abreve -120 -KPX T Acircumflex -120 -KPX T Adieresis -120 -KPX T Agrave -120 -KPX T Amacron -120 -KPX T Aogonek -120 -KPX T Aring -120 -KPX T Atilde -120 -KPX T O -40 -KPX T Oacute -40 -KPX T Ocircumflex -40 -KPX T Odieresis -40 -KPX T Ograve -40 -KPX T Ohungarumlaut -40 -KPX T Omacron -40 -KPX T Oslash -40 -KPX T Otilde -40 -KPX T a -120 -KPX T aacute -120 -KPX T abreve -60 -KPX T acircumflex -120 -KPX T adieresis -120 -KPX T agrave -120 -KPX T amacron -60 -KPX T aogonek -120 -KPX T aring -120 -KPX T atilde -60 -KPX T colon -20 -KPX T comma -120 -KPX T e -120 -KPX T eacute -120 -KPX T ecaron -120 -KPX T ecircumflex -120 -KPX T edieresis -120 -KPX T edotaccent -120 -KPX T egrave -60 -KPX T emacron -60 -KPX T eogonek -120 -KPX T hyphen -140 -KPX T o -120 -KPX T oacute -120 -KPX T ocircumflex -120 -KPX T odieresis -120 -KPX T ograve -120 -KPX T ohungarumlaut -120 -KPX T omacron -60 -KPX T oslash -120 -KPX T otilde -60 -KPX T period -120 -KPX T r -120 -KPX T racute -120 -KPX T rcaron -120 -KPX T rcommaaccent -120 -KPX T semicolon -20 -KPX T u -120 -KPX T uacute -120 -KPX T ucircumflex -120 -KPX T udieresis -120 -KPX T ugrave -120 -KPX T uhungarumlaut -120 -KPX T umacron -60 -KPX T uogonek -120 -KPX T uring -120 -KPX T w -120 -KPX T y -120 -KPX T yacute -120 -KPX T ydieresis -60 -KPX Tcaron A -120 -KPX Tcaron Aacute -120 -KPX Tcaron Abreve -120 -KPX Tcaron Acircumflex -120 -KPX Tcaron Adieresis -120 -KPX Tcaron Agrave -120 -KPX Tcaron Amacron -120 -KPX Tcaron Aogonek -120 -KPX Tcaron Aring -120 -KPX Tcaron Atilde -120 -KPX Tcaron O -40 -KPX Tcaron Oacute -40 -KPX Tcaron Ocircumflex -40 -KPX Tcaron Odieresis -40 -KPX Tcaron Ograve -40 -KPX Tcaron Ohungarumlaut -40 -KPX Tcaron Omacron -40 -KPX Tcaron Oslash -40 -KPX Tcaron Otilde -40 -KPX Tcaron a -120 -KPX Tcaron aacute -120 -KPX Tcaron abreve -60 -KPX Tcaron acircumflex -120 -KPX Tcaron adieresis -120 -KPX Tcaron agrave -120 -KPX Tcaron amacron -60 -KPX Tcaron aogonek -120 -KPX Tcaron aring -120 -KPX Tcaron atilde -60 -KPX Tcaron colon -20 -KPX Tcaron comma -120 -KPX Tcaron e -120 -KPX Tcaron eacute -120 -KPX Tcaron ecaron -120 -KPX Tcaron ecircumflex -120 -KPX Tcaron edieresis -120 -KPX Tcaron edotaccent -120 -KPX Tcaron egrave -60 -KPX Tcaron emacron -60 -KPX Tcaron eogonek -120 -KPX Tcaron hyphen -140 -KPX Tcaron o -120 -KPX Tcaron oacute -120 -KPX Tcaron ocircumflex -120 -KPX Tcaron odieresis -120 -KPX Tcaron ograve -120 -KPX Tcaron ohungarumlaut -120 -KPX Tcaron omacron -60 -KPX Tcaron oslash -120 -KPX Tcaron otilde -60 -KPX Tcaron period -120 -KPX Tcaron r -120 -KPX Tcaron racute -120 -KPX Tcaron rcaron -120 -KPX Tcaron rcommaaccent -120 -KPX Tcaron semicolon -20 -KPX Tcaron u -120 -KPX Tcaron uacute -120 -KPX Tcaron ucircumflex -120 -KPX Tcaron udieresis -120 -KPX Tcaron ugrave -120 -KPX Tcaron uhungarumlaut -120 -KPX Tcaron umacron -60 -KPX Tcaron uogonek -120 -KPX Tcaron uring -120 -KPX Tcaron w -120 -KPX Tcaron y -120 -KPX Tcaron yacute -120 -KPX Tcaron ydieresis -60 -KPX Tcommaaccent A -120 -KPX Tcommaaccent Aacute -120 -KPX Tcommaaccent Abreve -120 -KPX Tcommaaccent Acircumflex -120 -KPX Tcommaaccent Adieresis -120 -KPX Tcommaaccent Agrave -120 -KPX Tcommaaccent Amacron -120 -KPX Tcommaaccent Aogonek -120 -KPX Tcommaaccent Aring -120 -KPX Tcommaaccent Atilde -120 -KPX Tcommaaccent O -40 -KPX Tcommaaccent Oacute -40 -KPX Tcommaaccent Ocircumflex -40 -KPX Tcommaaccent Odieresis -40 -KPX Tcommaaccent Ograve -40 -KPX Tcommaaccent Ohungarumlaut -40 -KPX Tcommaaccent Omacron -40 -KPX Tcommaaccent Oslash -40 -KPX Tcommaaccent Otilde -40 -KPX Tcommaaccent a -120 -KPX Tcommaaccent aacute -120 -KPX Tcommaaccent abreve -60 -KPX Tcommaaccent acircumflex -120 -KPX Tcommaaccent adieresis -120 -KPX Tcommaaccent agrave -120 -KPX Tcommaaccent amacron -60 -KPX Tcommaaccent aogonek -120 -KPX Tcommaaccent aring -120 -KPX Tcommaaccent atilde -60 -KPX Tcommaaccent colon -20 -KPX Tcommaaccent comma -120 -KPX Tcommaaccent e -120 -KPX Tcommaaccent eacute -120 -KPX Tcommaaccent ecaron -120 -KPX Tcommaaccent ecircumflex -120 -KPX Tcommaaccent edieresis -120 -KPX Tcommaaccent edotaccent -120 -KPX Tcommaaccent egrave -60 -KPX Tcommaaccent emacron -60 -KPX Tcommaaccent eogonek -120 -KPX Tcommaaccent hyphen -140 -KPX Tcommaaccent o -120 -KPX Tcommaaccent oacute -120 -KPX Tcommaaccent ocircumflex -120 -KPX Tcommaaccent odieresis -120 -KPX Tcommaaccent ograve -120 -KPX Tcommaaccent ohungarumlaut -120 -KPX Tcommaaccent omacron -60 -KPX Tcommaaccent oslash -120 -KPX Tcommaaccent otilde -60 -KPX Tcommaaccent period -120 -KPX Tcommaaccent r -120 -KPX Tcommaaccent racute -120 -KPX Tcommaaccent rcaron -120 -KPX Tcommaaccent rcommaaccent -120 -KPX Tcommaaccent semicolon -20 -KPX Tcommaaccent u -120 -KPX Tcommaaccent uacute -120 -KPX Tcommaaccent ucircumflex -120 -KPX Tcommaaccent udieresis -120 -KPX Tcommaaccent ugrave -120 -KPX Tcommaaccent uhungarumlaut -120 -KPX Tcommaaccent umacron -60 -KPX Tcommaaccent uogonek -120 -KPX Tcommaaccent uring -120 -KPX Tcommaaccent w -120 -KPX Tcommaaccent y -120 -KPX Tcommaaccent yacute -120 -KPX Tcommaaccent ydieresis -60 -KPX U A -40 -KPX U Aacute -40 -KPX U Abreve -40 -KPX U Acircumflex -40 -KPX U Adieresis -40 -KPX U Agrave -40 -KPX U Amacron -40 -KPX U Aogonek -40 -KPX U Aring -40 -KPX U Atilde -40 -KPX U comma -40 -KPX U period -40 -KPX Uacute A -40 -KPX Uacute Aacute -40 -KPX Uacute Abreve -40 -KPX Uacute Acircumflex -40 -KPX Uacute Adieresis -40 -KPX Uacute Agrave -40 -KPX Uacute Amacron -40 -KPX Uacute Aogonek -40 -KPX Uacute Aring -40 -KPX Uacute Atilde -40 -KPX Uacute comma -40 -KPX Uacute period -40 -KPX Ucircumflex A -40 -KPX Ucircumflex Aacute -40 -KPX Ucircumflex Abreve -40 -KPX Ucircumflex Acircumflex -40 -KPX Ucircumflex Adieresis -40 -KPX Ucircumflex Agrave -40 -KPX Ucircumflex Amacron -40 -KPX Ucircumflex Aogonek -40 -KPX Ucircumflex Aring -40 -KPX Ucircumflex Atilde -40 -KPX Ucircumflex comma -40 -KPX Ucircumflex period -40 -KPX Udieresis A -40 -KPX Udieresis Aacute -40 -KPX Udieresis Abreve -40 -KPX Udieresis Acircumflex -40 -KPX Udieresis Adieresis -40 -KPX Udieresis Agrave -40 -KPX Udieresis Amacron -40 -KPX Udieresis Aogonek -40 -KPX Udieresis Aring -40 -KPX Udieresis Atilde -40 -KPX Udieresis comma -40 -KPX Udieresis period -40 -KPX Ugrave A -40 -KPX Ugrave Aacute -40 -KPX Ugrave Abreve -40 -KPX Ugrave Acircumflex -40 -KPX Ugrave Adieresis -40 -KPX Ugrave Agrave -40 -KPX Ugrave Amacron -40 -KPX Ugrave Aogonek -40 -KPX Ugrave Aring -40 -KPX Ugrave Atilde -40 -KPX Ugrave comma -40 -KPX Ugrave period -40 -KPX Uhungarumlaut A -40 -KPX Uhungarumlaut Aacute -40 -KPX Uhungarumlaut Abreve -40 -KPX Uhungarumlaut Acircumflex -40 -KPX Uhungarumlaut Adieresis -40 -KPX Uhungarumlaut Agrave -40 -KPX Uhungarumlaut Amacron -40 -KPX Uhungarumlaut Aogonek -40 -KPX Uhungarumlaut Aring -40 -KPX Uhungarumlaut Atilde -40 -KPX Uhungarumlaut comma -40 -KPX Uhungarumlaut period -40 -KPX Umacron A -40 -KPX Umacron Aacute -40 -KPX Umacron Abreve -40 -KPX Umacron Acircumflex -40 -KPX Umacron Adieresis -40 -KPX Umacron Agrave -40 -KPX Umacron Amacron -40 -KPX Umacron Aogonek -40 -KPX Umacron Aring -40 -KPX Umacron Atilde -40 -KPX Umacron comma -40 -KPX Umacron period -40 -KPX Uogonek A -40 -KPX Uogonek Aacute -40 -KPX Uogonek Abreve -40 -KPX Uogonek Acircumflex -40 -KPX Uogonek Adieresis -40 -KPX Uogonek Agrave -40 -KPX Uogonek Amacron -40 -KPX Uogonek Aogonek -40 -KPX Uogonek Aring -40 -KPX Uogonek Atilde -40 -KPX Uogonek comma -40 -KPX Uogonek period -40 -KPX Uring A -40 -KPX Uring Aacute -40 -KPX Uring Abreve -40 -KPX Uring Acircumflex -40 -KPX Uring Adieresis -40 -KPX Uring Agrave -40 -KPX Uring Amacron -40 -KPX Uring Aogonek -40 -KPX Uring Aring -40 -KPX Uring Atilde -40 -KPX Uring comma -40 -KPX Uring period -40 -KPX V A -80 -KPX V Aacute -80 -KPX V Abreve -80 -KPX V Acircumflex -80 -KPX V Adieresis -80 -KPX V Agrave -80 -KPX V Amacron -80 -KPX V Aogonek -80 -KPX V Aring -80 -KPX V Atilde -80 -KPX V G -40 -KPX V Gbreve -40 -KPX V Gcommaaccent -40 -KPX V O -40 -KPX V Oacute -40 -KPX V Ocircumflex -40 -KPX V Odieresis -40 -KPX V Ograve -40 -KPX V Ohungarumlaut -40 -KPX V Omacron -40 -KPX V Oslash -40 -KPX V Otilde -40 -KPX V a -70 -KPX V aacute -70 -KPX V abreve -70 -KPX V acircumflex -70 -KPX V adieresis -70 -KPX V agrave -70 -KPX V amacron -70 -KPX V aogonek -70 -KPX V aring -70 -KPX V atilde -70 -KPX V colon -40 -KPX V comma -125 -KPX V e -80 -KPX V eacute -80 -KPX V ecaron -80 -KPX V ecircumflex -80 -KPX V edieresis -80 -KPX V edotaccent -80 -KPX V egrave -80 -KPX V emacron -80 -KPX V eogonek -80 -KPX V hyphen -80 -KPX V o -80 -KPX V oacute -80 -KPX V ocircumflex -80 -KPX V odieresis -80 -KPX V ograve -80 -KPX V ohungarumlaut -80 -KPX V omacron -80 -KPX V oslash -80 -KPX V otilde -80 -KPX V period -125 -KPX V semicolon -40 -KPX V u -70 -KPX V uacute -70 -KPX V ucircumflex -70 -KPX V udieresis -70 -KPX V ugrave -70 -KPX V uhungarumlaut -70 -KPX V umacron -70 -KPX V uogonek -70 -KPX V uring -70 -KPX W A -50 -KPX W Aacute -50 -KPX W Abreve -50 -KPX W Acircumflex -50 -KPX W Adieresis -50 -KPX W Agrave -50 -KPX W Amacron -50 -KPX W Aogonek -50 -KPX W Aring -50 -KPX W Atilde -50 -KPX W O -20 -KPX W Oacute -20 -KPX W Ocircumflex -20 -KPX W Odieresis -20 -KPX W Ograve -20 -KPX W Ohungarumlaut -20 -KPX W Omacron -20 -KPX W Oslash -20 -KPX W Otilde -20 -KPX W a -40 -KPX W aacute -40 -KPX W abreve -40 -KPX W acircumflex -40 -KPX W adieresis -40 -KPX W agrave -40 -KPX W amacron -40 -KPX W aogonek -40 -KPX W aring -40 -KPX W atilde -40 -KPX W comma -80 -KPX W e -30 -KPX W eacute -30 -KPX W ecaron -30 -KPX W ecircumflex -30 -KPX W edieresis -30 -KPX W edotaccent -30 -KPX W egrave -30 -KPX W emacron -30 -KPX W eogonek -30 -KPX W hyphen -40 -KPX W o -30 -KPX W oacute -30 -KPX W ocircumflex -30 -KPX W odieresis -30 -KPX W ograve -30 -KPX W ohungarumlaut -30 -KPX W omacron -30 -KPX W oslash -30 -KPX W otilde -30 -KPX W period -80 -KPX W u -30 -KPX W uacute -30 -KPX W ucircumflex -30 -KPX W udieresis -30 -KPX W ugrave -30 -KPX W uhungarumlaut -30 -KPX W umacron -30 -KPX W uogonek -30 -KPX W uring -30 -KPX W y -20 -KPX W yacute -20 -KPX W ydieresis -20 -KPX Y A -110 -KPX Y Aacute -110 -KPX Y Abreve -110 -KPX Y Acircumflex -110 -KPX Y Adieresis -110 -KPX Y Agrave -110 -KPX Y Amacron -110 -KPX Y Aogonek -110 -KPX Y Aring -110 -KPX Y Atilde -110 -KPX Y O -85 -KPX Y Oacute -85 -KPX Y Ocircumflex -85 -KPX Y Odieresis -85 -KPX Y Ograve -85 -KPX Y Ohungarumlaut -85 -KPX Y Omacron -85 -KPX Y Oslash -85 -KPX Y Otilde -85 -KPX Y a -140 -KPX Y aacute -140 -KPX Y abreve -70 -KPX Y acircumflex -140 -KPX Y adieresis -140 -KPX Y agrave -140 -KPX Y amacron -70 -KPX Y aogonek -140 -KPX Y aring -140 -KPX Y atilde -140 -KPX Y colon -60 -KPX Y comma -140 -KPX Y e -140 -KPX Y eacute -140 -KPX Y ecaron -140 -KPX Y ecircumflex -140 -KPX Y edieresis -140 -KPX Y edotaccent -140 -KPX Y egrave -140 -KPX Y emacron -70 -KPX Y eogonek -140 -KPX Y hyphen -140 -KPX Y i -20 -KPX Y iacute -20 -KPX Y iogonek -20 -KPX Y o -140 -KPX Y oacute -140 -KPX Y ocircumflex -140 -KPX Y odieresis -140 -KPX Y ograve -140 -KPX Y ohungarumlaut -140 -KPX Y omacron -140 -KPX Y oslash -140 -KPX Y otilde -140 -KPX Y period -140 -KPX Y semicolon -60 -KPX Y u -110 -KPX Y uacute -110 -KPX Y ucircumflex -110 -KPX Y udieresis -110 -KPX Y ugrave -110 -KPX Y uhungarumlaut -110 -KPX Y umacron -110 -KPX Y uogonek -110 -KPX Y uring -110 -KPX Yacute A -110 -KPX Yacute Aacute -110 -KPX Yacute Abreve -110 -KPX Yacute Acircumflex -110 -KPX Yacute Adieresis -110 -KPX Yacute Agrave -110 -KPX Yacute Amacron -110 -KPX Yacute Aogonek -110 -KPX Yacute Aring -110 -KPX Yacute Atilde -110 -KPX Yacute O -85 -KPX Yacute Oacute -85 -KPX Yacute Ocircumflex -85 -KPX Yacute Odieresis -85 -KPX Yacute Ograve -85 -KPX Yacute Ohungarumlaut -85 -KPX Yacute Omacron -85 -KPX Yacute Oslash -85 -KPX Yacute Otilde -85 -KPX Yacute a -140 -KPX Yacute aacute -140 -KPX Yacute abreve -70 -KPX Yacute acircumflex -140 -KPX Yacute adieresis -140 -KPX Yacute agrave -140 -KPX Yacute amacron -70 -KPX Yacute aogonek -140 -KPX Yacute aring -140 -KPX Yacute atilde -70 -KPX Yacute colon -60 -KPX Yacute comma -140 -KPX Yacute e -140 -KPX Yacute eacute -140 -KPX Yacute ecaron -140 -KPX Yacute ecircumflex -140 -KPX Yacute edieresis -140 -KPX Yacute edotaccent -140 -KPX Yacute egrave -140 -KPX Yacute emacron -70 -KPX Yacute eogonek -140 -KPX Yacute hyphen -140 -KPX Yacute i -20 -KPX Yacute iacute -20 -KPX Yacute iogonek -20 -KPX Yacute o -140 -KPX Yacute oacute -140 -KPX Yacute ocircumflex -140 -KPX Yacute odieresis -140 -KPX Yacute ograve -140 -KPX Yacute ohungarumlaut -140 -KPX Yacute omacron -70 -KPX Yacute oslash -140 -KPX Yacute otilde -140 -KPX Yacute period -140 -KPX Yacute semicolon -60 -KPX Yacute u -110 -KPX Yacute uacute -110 -KPX Yacute ucircumflex -110 -KPX Yacute udieresis -110 -KPX Yacute ugrave -110 -KPX Yacute uhungarumlaut -110 -KPX Yacute umacron -110 -KPX Yacute uogonek -110 -KPX Yacute uring -110 -KPX Ydieresis A -110 -KPX Ydieresis Aacute -110 -KPX Ydieresis Abreve -110 -KPX Ydieresis Acircumflex -110 -KPX Ydieresis Adieresis -110 -KPX Ydieresis Agrave -110 -KPX Ydieresis Amacron -110 -KPX Ydieresis Aogonek -110 -KPX Ydieresis Aring -110 -KPX Ydieresis Atilde -110 -KPX Ydieresis O -85 -KPX Ydieresis Oacute -85 -KPX Ydieresis Ocircumflex -85 -KPX Ydieresis Odieresis -85 -KPX Ydieresis Ograve -85 -KPX Ydieresis Ohungarumlaut -85 -KPX Ydieresis Omacron -85 -KPX Ydieresis Oslash -85 -KPX Ydieresis Otilde -85 -KPX Ydieresis a -140 -KPX Ydieresis aacute -140 -KPX Ydieresis abreve -70 -KPX Ydieresis acircumflex -140 -KPX Ydieresis adieresis -140 -KPX Ydieresis agrave -140 -KPX Ydieresis amacron -70 -KPX Ydieresis aogonek -140 -KPX Ydieresis aring -140 -KPX Ydieresis atilde -70 -KPX Ydieresis colon -60 -KPX Ydieresis comma -140 -KPX Ydieresis e -140 -KPX Ydieresis eacute -140 -KPX Ydieresis ecaron -140 -KPX Ydieresis ecircumflex -140 -KPX Ydieresis edieresis -140 -KPX Ydieresis edotaccent -140 -KPX Ydieresis egrave -140 -KPX Ydieresis emacron -70 -KPX Ydieresis eogonek -140 -KPX Ydieresis hyphen -140 -KPX Ydieresis i -20 -KPX Ydieresis iacute -20 -KPX Ydieresis iogonek -20 -KPX Ydieresis o -140 -KPX Ydieresis oacute -140 -KPX Ydieresis ocircumflex -140 -KPX Ydieresis odieresis -140 -KPX Ydieresis ograve -140 -KPX Ydieresis ohungarumlaut -140 -KPX Ydieresis omacron -140 -KPX Ydieresis oslash -140 -KPX Ydieresis otilde -140 -KPX Ydieresis period -140 -KPX Ydieresis semicolon -60 -KPX Ydieresis u -110 -KPX Ydieresis uacute -110 -KPX Ydieresis ucircumflex -110 -KPX Ydieresis udieresis -110 -KPX Ydieresis ugrave -110 -KPX Ydieresis uhungarumlaut -110 -KPX Ydieresis umacron -110 -KPX Ydieresis uogonek -110 -KPX Ydieresis uring -110 -KPX a v -20 -KPX a w -20 -KPX a y -30 -KPX a yacute -30 -KPX a ydieresis -30 -KPX aacute v -20 -KPX aacute w -20 -KPX aacute y -30 -KPX aacute yacute -30 -KPX aacute ydieresis -30 -KPX abreve v -20 -KPX abreve w -20 -KPX abreve y -30 -KPX abreve yacute -30 -KPX abreve ydieresis -30 -KPX acircumflex v -20 -KPX acircumflex w -20 -KPX acircumflex y -30 -KPX acircumflex yacute -30 -KPX acircumflex ydieresis -30 -KPX adieresis v -20 -KPX adieresis w -20 -KPX adieresis y -30 -KPX adieresis yacute -30 -KPX adieresis ydieresis -30 -KPX agrave v -20 -KPX agrave w -20 -KPX agrave y -30 -KPX agrave yacute -30 -KPX agrave ydieresis -30 -KPX amacron v -20 -KPX amacron w -20 -KPX amacron y -30 -KPX amacron yacute -30 -KPX amacron ydieresis -30 -KPX aogonek v -20 -KPX aogonek w -20 -KPX aogonek y -30 -KPX aogonek yacute -30 -KPX aogonek ydieresis -30 -KPX aring v -20 -KPX aring w -20 -KPX aring y -30 -KPX aring yacute -30 -KPX aring ydieresis -30 -KPX atilde v -20 -KPX atilde w -20 -KPX atilde y -30 -KPX atilde yacute -30 -KPX atilde ydieresis -30 -KPX b b -10 -KPX b comma -40 -KPX b l -20 -KPX b lacute -20 -KPX b lcommaaccent -20 -KPX b lslash -20 -KPX b period -40 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX b v -20 -KPX b y -20 -KPX b yacute -20 -KPX b ydieresis -20 -KPX c comma -15 -KPX c k -20 -KPX c kcommaaccent -20 -KPX cacute comma -15 -KPX cacute k -20 -KPX cacute kcommaaccent -20 -KPX ccaron comma -15 -KPX ccaron k -20 -KPX ccaron kcommaaccent -20 -KPX ccedilla comma -15 -KPX ccedilla k -20 -KPX ccedilla kcommaaccent -20 -KPX colon space -50 -KPX comma quotedblright -100 -KPX comma quoteright -100 -KPX e comma -15 -KPX e period -15 -KPX e v -30 -KPX e w -20 -KPX e x -30 -KPX e y -20 -KPX e yacute -20 -KPX e ydieresis -20 -KPX eacute comma -15 -KPX eacute period -15 -KPX eacute v -30 -KPX eacute w -20 -KPX eacute x -30 -KPX eacute y -20 -KPX eacute yacute -20 -KPX eacute ydieresis -20 -KPX ecaron comma -15 -KPX ecaron period -15 -KPX ecaron v -30 -KPX ecaron w -20 -KPX ecaron x -30 -KPX ecaron y -20 -KPX ecaron yacute -20 -KPX ecaron ydieresis -20 -KPX ecircumflex comma -15 -KPX ecircumflex period -15 -KPX ecircumflex v -30 -KPX ecircumflex w -20 -KPX ecircumflex x -30 -KPX ecircumflex y -20 -KPX ecircumflex yacute -20 -KPX ecircumflex ydieresis -20 -KPX edieresis comma -15 -KPX edieresis period -15 -KPX edieresis v -30 -KPX edieresis w -20 -KPX edieresis x -30 -KPX edieresis y -20 -KPX edieresis yacute -20 -KPX edieresis ydieresis -20 -KPX edotaccent comma -15 -KPX edotaccent period -15 -KPX edotaccent v -30 -KPX edotaccent w -20 -KPX edotaccent x -30 -KPX edotaccent y -20 -KPX edotaccent yacute -20 -KPX edotaccent ydieresis -20 -KPX egrave comma -15 -KPX egrave period -15 -KPX egrave v -30 -KPX egrave w -20 -KPX egrave x -30 -KPX egrave y -20 -KPX egrave yacute -20 -KPX egrave ydieresis -20 -KPX emacron comma -15 -KPX emacron period -15 -KPX emacron v -30 -KPX emacron w -20 -KPX emacron x -30 -KPX emacron y -20 -KPX emacron yacute -20 -KPX emacron ydieresis -20 -KPX eogonek comma -15 -KPX eogonek period -15 -KPX eogonek v -30 -KPX eogonek w -20 -KPX eogonek x -30 -KPX eogonek y -20 -KPX eogonek yacute -20 -KPX eogonek ydieresis -20 -KPX f a -30 -KPX f aacute -30 -KPX f abreve -30 -KPX f acircumflex -30 -KPX f adieresis -30 -KPX f agrave -30 -KPX f amacron -30 -KPX f aogonek -30 -KPX f aring -30 -KPX f atilde -30 -KPX f comma -30 -KPX f dotlessi -28 -KPX f e -30 -KPX f eacute -30 -KPX f ecaron -30 -KPX f ecircumflex -30 -KPX f edieresis -30 -KPX f edotaccent -30 -KPX f egrave -30 -KPX f emacron -30 -KPX f eogonek -30 -KPX f o -30 -KPX f oacute -30 -KPX f ocircumflex -30 -KPX f odieresis -30 -KPX f ograve -30 -KPX f ohungarumlaut -30 -KPX f omacron -30 -KPX f oslash -30 -KPX f otilde -30 -KPX f period -30 -KPX f quotedblright 60 -KPX f quoteright 50 -KPX g r -10 -KPX g racute -10 -KPX g rcaron -10 -KPX g rcommaaccent -10 -KPX gbreve r -10 -KPX gbreve racute -10 -KPX gbreve rcaron -10 -KPX gbreve rcommaaccent -10 -KPX gcommaaccent r -10 -KPX gcommaaccent racute -10 -KPX gcommaaccent rcaron -10 -KPX gcommaaccent rcommaaccent -10 -KPX h y -30 -KPX h yacute -30 -KPX h ydieresis -30 -KPX k e -20 -KPX k eacute -20 -KPX k ecaron -20 -KPX k ecircumflex -20 -KPX k edieresis -20 -KPX k edotaccent -20 -KPX k egrave -20 -KPX k emacron -20 -KPX k eogonek -20 -KPX k o -20 -KPX k oacute -20 -KPX k ocircumflex -20 -KPX k odieresis -20 -KPX k ograve -20 -KPX k ohungarumlaut -20 -KPX k omacron -20 -KPX k oslash -20 -KPX k otilde -20 -KPX kcommaaccent e -20 -KPX kcommaaccent eacute -20 -KPX kcommaaccent ecaron -20 -KPX kcommaaccent ecircumflex -20 -KPX kcommaaccent edieresis -20 -KPX kcommaaccent edotaccent -20 -KPX kcommaaccent egrave -20 -KPX kcommaaccent emacron -20 -KPX kcommaaccent eogonek -20 -KPX kcommaaccent o -20 -KPX kcommaaccent oacute -20 -KPX kcommaaccent ocircumflex -20 -KPX kcommaaccent odieresis -20 -KPX kcommaaccent ograve -20 -KPX kcommaaccent ohungarumlaut -20 -KPX kcommaaccent omacron -20 -KPX kcommaaccent oslash -20 -KPX kcommaaccent otilde -20 -KPX m u -10 -KPX m uacute -10 -KPX m ucircumflex -10 -KPX m udieresis -10 -KPX m ugrave -10 -KPX m uhungarumlaut -10 -KPX m umacron -10 -KPX m uogonek -10 -KPX m uring -10 -KPX m y -15 -KPX m yacute -15 -KPX m ydieresis -15 -KPX n u -10 -KPX n uacute -10 -KPX n ucircumflex -10 -KPX n udieresis -10 -KPX n ugrave -10 -KPX n uhungarumlaut -10 -KPX n umacron -10 -KPX n uogonek -10 -KPX n uring -10 -KPX n v -20 -KPX n y -15 -KPX n yacute -15 -KPX n ydieresis -15 -KPX nacute u -10 -KPX nacute uacute -10 -KPX nacute ucircumflex -10 -KPX nacute udieresis -10 -KPX nacute ugrave -10 -KPX nacute uhungarumlaut -10 -KPX nacute umacron -10 -KPX nacute uogonek -10 -KPX nacute uring -10 -KPX nacute v -20 -KPX nacute y -15 -KPX nacute yacute -15 -KPX nacute ydieresis -15 -KPX ncaron u -10 -KPX ncaron uacute -10 -KPX ncaron ucircumflex -10 -KPX ncaron udieresis -10 -KPX ncaron ugrave -10 -KPX ncaron uhungarumlaut -10 -KPX ncaron umacron -10 -KPX ncaron uogonek -10 -KPX ncaron uring -10 -KPX ncaron v -20 -KPX ncaron y -15 -KPX ncaron yacute -15 -KPX ncaron ydieresis -15 -KPX ncommaaccent u -10 -KPX ncommaaccent uacute -10 -KPX ncommaaccent ucircumflex -10 -KPX ncommaaccent udieresis -10 -KPX ncommaaccent ugrave -10 -KPX ncommaaccent uhungarumlaut -10 -KPX ncommaaccent umacron -10 -KPX ncommaaccent uogonek -10 -KPX ncommaaccent uring -10 -KPX ncommaaccent v -20 -KPX ncommaaccent y -15 -KPX ncommaaccent yacute -15 -KPX ncommaaccent ydieresis -15 -KPX ntilde u -10 -KPX ntilde uacute -10 -KPX ntilde ucircumflex -10 -KPX ntilde udieresis -10 -KPX ntilde ugrave -10 -KPX ntilde uhungarumlaut -10 -KPX ntilde umacron -10 -KPX ntilde uogonek -10 -KPX ntilde uring -10 -KPX ntilde v -20 -KPX ntilde y -15 -KPX ntilde yacute -15 -KPX ntilde ydieresis -15 -KPX o comma -40 -KPX o period -40 -KPX o v -15 -KPX o w -15 -KPX o x -30 -KPX o y -30 -KPX o yacute -30 -KPX o ydieresis -30 -KPX oacute comma -40 -KPX oacute period -40 -KPX oacute v -15 -KPX oacute w -15 -KPX oacute x -30 -KPX oacute y -30 -KPX oacute yacute -30 -KPX oacute ydieresis -30 -KPX ocircumflex comma -40 -KPX ocircumflex period -40 -KPX ocircumflex v -15 -KPX ocircumflex w -15 -KPX ocircumflex x -30 -KPX ocircumflex y -30 -KPX ocircumflex yacute -30 -KPX ocircumflex ydieresis -30 -KPX odieresis comma -40 -KPX odieresis period -40 -KPX odieresis v -15 -KPX odieresis w -15 -KPX odieresis x -30 -KPX odieresis y -30 -KPX odieresis yacute -30 -KPX odieresis ydieresis -30 -KPX ograve comma -40 -KPX ograve period -40 -KPX ograve v -15 -KPX ograve w -15 -KPX ograve x -30 -KPX ograve y -30 -KPX ograve yacute -30 -KPX ograve ydieresis -30 -KPX ohungarumlaut comma -40 -KPX ohungarumlaut period -40 -KPX ohungarumlaut v -15 -KPX ohungarumlaut w -15 -KPX ohungarumlaut x -30 -KPX ohungarumlaut y -30 -KPX ohungarumlaut yacute -30 -KPX ohungarumlaut ydieresis -30 -KPX omacron comma -40 -KPX omacron period -40 -KPX omacron v -15 -KPX omacron w -15 -KPX omacron x -30 -KPX omacron y -30 -KPX omacron yacute -30 -KPX omacron ydieresis -30 -KPX oslash a -55 -KPX oslash aacute -55 -KPX oslash abreve -55 -KPX oslash acircumflex -55 -KPX oslash adieresis -55 -KPX oslash agrave -55 -KPX oslash amacron -55 -KPX oslash aogonek -55 -KPX oslash aring -55 -KPX oslash atilde -55 -KPX oslash b -55 -KPX oslash c -55 -KPX oslash cacute -55 -KPX oslash ccaron -55 -KPX oslash ccedilla -55 -KPX oslash comma -95 -KPX oslash d -55 -KPX oslash dcroat -55 -KPX oslash e -55 -KPX oslash eacute -55 -KPX oslash ecaron -55 -KPX oslash ecircumflex -55 -KPX oslash edieresis -55 -KPX oslash edotaccent -55 -KPX oslash egrave -55 -KPX oslash emacron -55 -KPX oslash eogonek -55 -KPX oslash f -55 -KPX oslash g -55 -KPX oslash gbreve -55 -KPX oslash gcommaaccent -55 -KPX oslash h -55 -KPX oslash i -55 -KPX oslash iacute -55 -KPX oslash icircumflex -55 -KPX oslash idieresis -55 -KPX oslash igrave -55 -KPX oslash imacron -55 -KPX oslash iogonek -55 -KPX oslash j -55 -KPX oslash k -55 -KPX oslash kcommaaccent -55 -KPX oslash l -55 -KPX oslash lacute -55 -KPX oslash lcommaaccent -55 -KPX oslash lslash -55 -KPX oslash m -55 -KPX oslash n -55 -KPX oslash nacute -55 -KPX oslash ncaron -55 -KPX oslash ncommaaccent -55 -KPX oslash ntilde -55 -KPX oslash o -55 -KPX oslash oacute -55 -KPX oslash ocircumflex -55 -KPX oslash odieresis -55 -KPX oslash ograve -55 -KPX oslash ohungarumlaut -55 -KPX oslash omacron -55 -KPX oslash oslash -55 -KPX oslash otilde -55 -KPX oslash p -55 -KPX oslash period -95 -KPX oslash q -55 -KPX oslash r -55 -KPX oslash racute -55 -KPX oslash rcaron -55 -KPX oslash rcommaaccent -55 -KPX oslash s -55 -KPX oslash sacute -55 -KPX oslash scaron -55 -KPX oslash scedilla -55 -KPX oslash scommaaccent -55 -KPX oslash t -55 -KPX oslash tcommaaccent -55 -KPX oslash u -55 -KPX oslash uacute -55 -KPX oslash ucircumflex -55 -KPX oslash udieresis -55 -KPX oslash ugrave -55 -KPX oslash uhungarumlaut -55 -KPX oslash umacron -55 -KPX oslash uogonek -55 -KPX oslash uring -55 -KPX oslash v -70 -KPX oslash w -70 -KPX oslash x -85 -KPX oslash y -70 -KPX oslash yacute -70 -KPX oslash ydieresis -70 -KPX oslash z -55 -KPX oslash zacute -55 -KPX oslash zcaron -55 -KPX oslash zdotaccent -55 -KPX otilde comma -40 -KPX otilde period -40 -KPX otilde v -15 -KPX otilde w -15 -KPX otilde x -30 -KPX otilde y -30 -KPX otilde yacute -30 -KPX otilde ydieresis -30 -KPX p comma -35 -KPX p period -35 -KPX p y -30 -KPX p yacute -30 -KPX p ydieresis -30 -KPX period quotedblright -100 -KPX period quoteright -100 -KPX period space -60 -KPX quotedblright space -40 -KPX quoteleft quoteleft -57 -KPX quoteright d -50 -KPX quoteright dcroat -50 -KPX quoteright quoteright -57 -KPX quoteright r -50 -KPX quoteright racute -50 -KPX quoteright rcaron -50 -KPX quoteright rcommaaccent -50 -KPX quoteright s -50 -KPX quoteright sacute -50 -KPX quoteright scaron -50 -KPX quoteright scedilla -50 -KPX quoteright scommaaccent -50 -KPX quoteright space -70 -KPX r a -10 -KPX r aacute -10 -KPX r abreve -10 -KPX r acircumflex -10 -KPX r adieresis -10 -KPX r agrave -10 -KPX r amacron -10 -KPX r aogonek -10 -KPX r aring -10 -KPX r atilde -10 -KPX r colon 30 -KPX r comma -50 -KPX r i 15 -KPX r iacute 15 -KPX r icircumflex 15 -KPX r idieresis 15 -KPX r igrave 15 -KPX r imacron 15 -KPX r iogonek 15 -KPX r k 15 -KPX r kcommaaccent 15 -KPX r l 15 -KPX r lacute 15 -KPX r lcommaaccent 15 -KPX r lslash 15 -KPX r m 25 -KPX r n 25 -KPX r nacute 25 -KPX r ncaron 25 -KPX r ncommaaccent 25 -KPX r ntilde 25 -KPX r p 30 -KPX r period -50 -KPX r semicolon 30 -KPX r t 40 -KPX r tcommaaccent 40 -KPX r u 15 -KPX r uacute 15 -KPX r ucircumflex 15 -KPX r udieresis 15 -KPX r ugrave 15 -KPX r uhungarumlaut 15 -KPX r umacron 15 -KPX r uogonek 15 -KPX r uring 15 -KPX r v 30 -KPX r y 30 -KPX r yacute 30 -KPX r ydieresis 30 -KPX racute a -10 -KPX racute aacute -10 -KPX racute abreve -10 -KPX racute acircumflex -10 -KPX racute adieresis -10 -KPX racute agrave -10 -KPX racute amacron -10 -KPX racute aogonek -10 -KPX racute aring -10 -KPX racute atilde -10 -KPX racute colon 30 -KPX racute comma -50 -KPX racute i 15 -KPX racute iacute 15 -KPX racute icircumflex 15 -KPX racute idieresis 15 -KPX racute igrave 15 -KPX racute imacron 15 -KPX racute iogonek 15 -KPX racute k 15 -KPX racute kcommaaccent 15 -KPX racute l 15 -KPX racute lacute 15 -KPX racute lcommaaccent 15 -KPX racute lslash 15 -KPX racute m 25 -KPX racute n 25 -KPX racute nacute 25 -KPX racute ncaron 25 -KPX racute ncommaaccent 25 -KPX racute ntilde 25 -KPX racute p 30 -KPX racute period -50 -KPX racute semicolon 30 -KPX racute t 40 -KPX racute tcommaaccent 40 -KPX racute u 15 -KPX racute uacute 15 -KPX racute ucircumflex 15 -KPX racute udieresis 15 -KPX racute ugrave 15 -KPX racute uhungarumlaut 15 -KPX racute umacron 15 -KPX racute uogonek 15 -KPX racute uring 15 -KPX racute v 30 -KPX racute y 30 -KPX racute yacute 30 -KPX racute ydieresis 30 -KPX rcaron a -10 -KPX rcaron aacute -10 -KPX rcaron abreve -10 -KPX rcaron acircumflex -10 -KPX rcaron adieresis -10 -KPX rcaron agrave -10 -KPX rcaron amacron -10 -KPX rcaron aogonek -10 -KPX rcaron aring -10 -KPX rcaron atilde -10 -KPX rcaron colon 30 -KPX rcaron comma -50 -KPX rcaron i 15 -KPX rcaron iacute 15 -KPX rcaron icircumflex 15 -KPX rcaron idieresis 15 -KPX rcaron igrave 15 -KPX rcaron imacron 15 -KPX rcaron iogonek 15 -KPX rcaron k 15 -KPX rcaron kcommaaccent 15 -KPX rcaron l 15 -KPX rcaron lacute 15 -KPX rcaron lcommaaccent 15 -KPX rcaron lslash 15 -KPX rcaron m 25 -KPX rcaron n 25 -KPX rcaron nacute 25 -KPX rcaron ncaron 25 -KPX rcaron ncommaaccent 25 -KPX rcaron ntilde 25 -KPX rcaron p 30 -KPX rcaron period -50 -KPX rcaron semicolon 30 -KPX rcaron t 40 -KPX rcaron tcommaaccent 40 -KPX rcaron u 15 -KPX rcaron uacute 15 -KPX rcaron ucircumflex 15 -KPX rcaron udieresis 15 -KPX rcaron ugrave 15 -KPX rcaron uhungarumlaut 15 -KPX rcaron umacron 15 -KPX rcaron uogonek 15 -KPX rcaron uring 15 -KPX rcaron v 30 -KPX rcaron y 30 -KPX rcaron yacute 30 -KPX rcaron ydieresis 30 -KPX rcommaaccent a -10 -KPX rcommaaccent aacute -10 -KPX rcommaaccent abreve -10 -KPX rcommaaccent acircumflex -10 -KPX rcommaaccent adieresis -10 -KPX rcommaaccent agrave -10 -KPX rcommaaccent amacron -10 -KPX rcommaaccent aogonek -10 -KPX rcommaaccent aring -10 -KPX rcommaaccent atilde -10 -KPX rcommaaccent colon 30 -KPX rcommaaccent comma -50 -KPX rcommaaccent i 15 -KPX rcommaaccent iacute 15 -KPX rcommaaccent icircumflex 15 -KPX rcommaaccent idieresis 15 -KPX rcommaaccent igrave 15 -KPX rcommaaccent imacron 15 -KPX rcommaaccent iogonek 15 -KPX rcommaaccent k 15 -KPX rcommaaccent kcommaaccent 15 -KPX rcommaaccent l 15 -KPX rcommaaccent lacute 15 -KPX rcommaaccent lcommaaccent 15 -KPX rcommaaccent lslash 15 -KPX rcommaaccent m 25 -KPX rcommaaccent n 25 -KPX rcommaaccent nacute 25 -KPX rcommaaccent ncaron 25 -KPX rcommaaccent ncommaaccent 25 -KPX rcommaaccent ntilde 25 -KPX rcommaaccent p 30 -KPX rcommaaccent period -50 -KPX rcommaaccent semicolon 30 -KPX rcommaaccent t 40 -KPX rcommaaccent tcommaaccent 40 -KPX rcommaaccent u 15 -KPX rcommaaccent uacute 15 -KPX rcommaaccent ucircumflex 15 -KPX rcommaaccent udieresis 15 -KPX rcommaaccent ugrave 15 -KPX rcommaaccent uhungarumlaut 15 -KPX rcommaaccent umacron 15 -KPX rcommaaccent uogonek 15 -KPX rcommaaccent uring 15 -KPX rcommaaccent v 30 -KPX rcommaaccent y 30 -KPX rcommaaccent yacute 30 -KPX rcommaaccent ydieresis 30 -KPX s comma -15 -KPX s period -15 -KPX s w -30 -KPX sacute comma -15 -KPX sacute period -15 -KPX sacute w -30 -KPX scaron comma -15 -KPX scaron period -15 -KPX scaron w -30 -KPX scedilla comma -15 -KPX scedilla period -15 -KPX scedilla w -30 -KPX scommaaccent comma -15 -KPX scommaaccent period -15 -KPX scommaaccent w -30 -KPX semicolon space -50 -KPX space T -50 -KPX space Tcaron -50 -KPX space Tcommaaccent -50 -KPX space V -50 -KPX space W -40 -KPX space Y -90 -KPX space Yacute -90 -KPX space Ydieresis -90 -KPX space quotedblleft -30 -KPX space quoteleft -60 -KPX v a -25 -KPX v aacute -25 -KPX v abreve -25 -KPX v acircumflex -25 -KPX v adieresis -25 -KPX v agrave -25 -KPX v amacron -25 -KPX v aogonek -25 -KPX v aring -25 -KPX v atilde -25 -KPX v comma -80 -KPX v e -25 -KPX v eacute -25 -KPX v ecaron -25 -KPX v ecircumflex -25 -KPX v edieresis -25 -KPX v edotaccent -25 -KPX v egrave -25 -KPX v emacron -25 -KPX v eogonek -25 -KPX v o -25 -KPX v oacute -25 -KPX v ocircumflex -25 -KPX v odieresis -25 -KPX v ograve -25 -KPX v ohungarumlaut -25 -KPX v omacron -25 -KPX v oslash -25 -KPX v otilde -25 -KPX v period -80 -KPX w a -15 -KPX w aacute -15 -KPX w abreve -15 -KPX w acircumflex -15 -KPX w adieresis -15 -KPX w agrave -15 -KPX w amacron -15 -KPX w aogonek -15 -KPX w aring -15 -KPX w atilde -15 -KPX w comma -60 -KPX w e -10 -KPX w eacute -10 -KPX w ecaron -10 -KPX w ecircumflex -10 -KPX w edieresis -10 -KPX w edotaccent -10 -KPX w egrave -10 -KPX w emacron -10 -KPX w eogonek -10 -KPX w o -10 -KPX w oacute -10 -KPX w ocircumflex -10 -KPX w odieresis -10 -KPX w ograve -10 -KPX w ohungarumlaut -10 -KPX w omacron -10 -KPX w oslash -10 -KPX w otilde -10 -KPX w period -60 -KPX x e -30 -KPX x eacute -30 -KPX x ecaron -30 -KPX x ecircumflex -30 -KPX x edieresis -30 -KPX x edotaccent -30 -KPX x egrave -30 -KPX x emacron -30 -KPX x eogonek -30 -KPX y a -20 -KPX y aacute -20 -KPX y abreve -20 -KPX y acircumflex -20 -KPX y adieresis -20 -KPX y agrave -20 -KPX y amacron -20 -KPX y aogonek -20 -KPX y aring -20 -KPX y atilde -20 -KPX y comma -100 -KPX y e -20 -KPX y eacute -20 -KPX y ecaron -20 -KPX y ecircumflex -20 -KPX y edieresis -20 -KPX y edotaccent -20 -KPX y egrave -20 -KPX y emacron -20 -KPX y eogonek -20 -KPX y o -20 -KPX y oacute -20 -KPX y ocircumflex -20 -KPX y odieresis -20 -KPX y ograve -20 -KPX y ohungarumlaut -20 -KPX y omacron -20 -KPX y oslash -20 -KPX y otilde -20 -KPX y period -100 -KPX yacute a -20 -KPX yacute aacute -20 -KPX yacute abreve -20 -KPX yacute acircumflex -20 -KPX yacute adieresis -20 -KPX yacute agrave -20 -KPX yacute amacron -20 -KPX yacute aogonek -20 -KPX yacute aring -20 -KPX yacute atilde -20 -KPX yacute comma -100 -KPX yacute e -20 -KPX yacute eacute -20 -KPX yacute ecaron -20 -KPX yacute ecircumflex -20 -KPX yacute edieresis -20 -KPX yacute edotaccent -20 -KPX yacute egrave -20 -KPX yacute emacron -20 -KPX yacute eogonek -20 -KPX yacute o -20 -KPX yacute oacute -20 -KPX yacute ocircumflex -20 -KPX yacute odieresis -20 -KPX yacute ograve -20 -KPX yacute ohungarumlaut -20 -KPX yacute omacron -20 -KPX yacute oslash -20 -KPX yacute otilde -20 -KPX yacute period -100 -KPX ydieresis a -20 -KPX ydieresis aacute -20 -KPX ydieresis abreve -20 -KPX ydieresis acircumflex -20 -KPX ydieresis adieresis -20 -KPX ydieresis agrave -20 -KPX ydieresis amacron -20 -KPX ydieresis aogonek -20 -KPX ydieresis aring -20 -KPX ydieresis atilde -20 -KPX ydieresis comma -100 -KPX ydieresis e -20 -KPX ydieresis eacute -20 -KPX ydieresis ecaron -20 -KPX ydieresis ecircumflex -20 -KPX ydieresis edieresis -20 -KPX ydieresis edotaccent -20 -KPX ydieresis egrave -20 -KPX ydieresis emacron -20 -KPX ydieresis eogonek -20 -KPX ydieresis o -20 -KPX ydieresis oacute -20 -KPX ydieresis ocircumflex -20 -KPX ydieresis odieresis -20 -KPX ydieresis ograve -20 -KPX ydieresis ohungarumlaut -20 -KPX ydieresis omacron -20 -KPX ydieresis oslash -20 -KPX ydieresis otilde -20 -KPX ydieresis period -100 -KPX z e -15 -KPX z eacute -15 -KPX z ecaron -15 -KPX z ecircumflex -15 -KPX z edieresis -15 -KPX z edotaccent -15 -KPX z egrave -15 -KPX z emacron -15 -KPX z eogonek -15 -KPX z o -15 -KPX z oacute -15 -KPX z ocircumflex -15 -KPX z odieresis -15 -KPX z ograve -15 -KPX z ohungarumlaut -15 -KPX z omacron -15 -KPX z oslash -15 -KPX z otilde -15 -KPX zacute e -15 -KPX zacute eacute -15 -KPX zacute ecaron -15 -KPX zacute ecircumflex -15 -KPX zacute edieresis -15 -KPX zacute edotaccent -15 -KPX zacute egrave -15 -KPX zacute emacron -15 -KPX zacute eogonek -15 -KPX zacute o -15 -KPX zacute oacute -15 -KPX zacute ocircumflex -15 -KPX zacute odieresis -15 -KPX zacute ograve -15 -KPX zacute ohungarumlaut -15 -KPX zacute omacron -15 -KPX zacute oslash -15 -KPX zacute otilde -15 -KPX zcaron e -15 -KPX zcaron eacute -15 -KPX zcaron ecaron -15 -KPX zcaron ecircumflex -15 -KPX zcaron edieresis -15 -KPX zcaron edotaccent -15 -KPX zcaron egrave -15 -KPX zcaron emacron -15 -KPX zcaron eogonek -15 -KPX zcaron o -15 -KPX zcaron oacute -15 -KPX zcaron ocircumflex -15 -KPX zcaron odieresis -15 -KPX zcaron ograve -15 -KPX zcaron ohungarumlaut -15 -KPX zcaron omacron -15 -KPX zcaron oslash -15 -KPX zcaron otilde -15 -KPX zdotaccent e -15 -KPX zdotaccent eacute -15 -KPX zdotaccent ecaron -15 -KPX zdotaccent ecircumflex -15 -KPX zdotaccent edieresis -15 -KPX zdotaccent edotaccent -15 -KPX zdotaccent egrave -15 -KPX zdotaccent emacron -15 -KPX zdotaccent eogonek -15 -KPX zdotaccent o -15 -KPX zdotaccent oacute -15 -KPX zdotaccent ocircumflex -15 -KPX zdotaccent odieresis -15 -KPX zdotaccent ograve -15 -KPX zdotaccent ohungarumlaut -15 -KPX zdotaccent omacron -15 -KPX zdotaccent oslash -15 -KPX zdotaccent otilde -15 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Symbol.afm b/target/classes/com/itextpdf/text/pdf/fonts/Symbol.afm deleted file mode 100644 index 6a5386a9..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Symbol.afm +++ /dev/null @@ -1,213 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All rights reserved. -Comment Creation Date: Thu May 1 15:12:25 1997 -Comment UniqueID 43064 -Comment VMusage 30820 39997 -FontName Symbol -FullName Symbol -FamilyName Symbol -Weight Medium -ItalicAngle 0 -IsFixedPitch false -CharacterSet Special -FontBBox -180 -293 1090 1010 -UnderlinePosition -100 -UnderlineThickness 50 -Version 001.008 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems Incorporated. All rights reserved. -EncodingScheme FontSpecific -StdHW 92 -StdVW 85 -StartCharMetrics 190 -C 32 ; WX 250 ; N space ; B 0 0 0 0 ; -C 33 ; WX 333 ; N exclam ; B 128 -17 240 672 ; -C 34 ; WX 713 ; N universal ; B 31 0 681 705 ; -C 35 ; WX 500 ; N numbersign ; B 20 -16 481 673 ; -C 36 ; WX 549 ; N existential ; B 25 0 478 707 ; -C 37 ; WX 833 ; N percent ; B 63 -36 771 655 ; -C 38 ; WX 778 ; N ampersand ; B 41 -18 750 661 ; -C 39 ; WX 439 ; N suchthat ; B 48 -17 414 500 ; -C 40 ; WX 333 ; N parenleft ; B 53 -191 300 673 ; -C 41 ; WX 333 ; N parenright ; B 30 -191 277 673 ; -C 42 ; WX 500 ; N asteriskmath ; B 65 134 427 551 ; -C 43 ; WX 549 ; N plus ; B 10 0 539 533 ; -C 44 ; WX 250 ; N comma ; B 56 -152 194 104 ; -C 45 ; WX 549 ; N minus ; B 11 233 535 288 ; -C 46 ; WX 250 ; N period ; B 69 -17 181 95 ; -C 47 ; WX 278 ; N slash ; B 0 -18 254 646 ; -C 48 ; WX 500 ; N zero ; B 24 -14 476 685 ; -C 49 ; WX 500 ; N one ; B 117 0 390 673 ; -C 50 ; WX 500 ; N two ; B 25 0 475 685 ; -C 51 ; WX 500 ; N three ; B 43 -14 435 685 ; -C 52 ; WX 500 ; N four ; B 15 0 469 685 ; -C 53 ; WX 500 ; N five ; B 32 -14 445 690 ; -C 54 ; WX 500 ; N six ; B 34 -14 468 685 ; -C 55 ; WX 500 ; N seven ; B 24 -16 448 673 ; -C 56 ; WX 500 ; N eight ; B 56 -14 445 685 ; -C 57 ; WX 500 ; N nine ; B 30 -18 459 685 ; -C 58 ; WX 278 ; N colon ; B 81 -17 193 460 ; -C 59 ; WX 278 ; N semicolon ; B 83 -152 221 460 ; -C 60 ; WX 549 ; N less ; B 26 0 523 522 ; -C 61 ; WX 549 ; N equal ; B 11 141 537 390 ; -C 62 ; WX 549 ; N greater ; B 26 0 523 522 ; -C 63 ; WX 444 ; N question ; B 70 -17 412 686 ; -C 64 ; WX 549 ; N congruent ; B 11 0 537 475 ; -C 65 ; WX 722 ; N Alpha ; B 4 0 684 673 ; -C 66 ; WX 667 ; N Beta ; B 29 0 592 673 ; -C 67 ; WX 722 ; N Chi ; B -9 0 704 673 ; -C 68 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C 69 ; WX 611 ; N Epsilon ; B 32 0 617 673 ; -C 70 ; WX 763 ; N Phi ; B 26 0 741 673 ; -C 71 ; WX 603 ; N Gamma ; B 24 0 609 673 ; -C 72 ; WX 722 ; N Eta ; B 39 0 729 673 ; -C 73 ; WX 333 ; N Iota ; B 32 0 316 673 ; -C 74 ; WX 631 ; N theta1 ; B 18 -18 623 689 ; -C 75 ; WX 722 ; N Kappa ; B 35 0 722 673 ; -C 76 ; WX 686 ; N Lambda ; B 6 0 680 688 ; -C 77 ; WX 889 ; N Mu ; B 28 0 887 673 ; -C 78 ; WX 722 ; N Nu ; B 29 -8 720 673 ; -C 79 ; WX 722 ; N Omicron ; B 41 -17 715 685 ; -C 80 ; WX 768 ; N Pi ; B 25 0 745 673 ; -C 81 ; WX 741 ; N Theta ; B 41 -17 715 685 ; -C 82 ; WX 556 ; N Rho ; B 28 0 563 673 ; -C 83 ; WX 592 ; N Sigma ; B 5 0 589 673 ; -C 84 ; WX 611 ; N Tau ; B 33 0 607 673 ; -C 85 ; WX 690 ; N Upsilon ; B -8 0 694 673 ; -C 86 ; WX 439 ; N sigma1 ; B 40 -233 436 500 ; -C 87 ; WX 768 ; N Omega ; B 34 0 736 688 ; -C 88 ; WX 645 ; N Xi ; B 40 0 599 673 ; -C 89 ; WX 795 ; N Psi ; B 15 0 781 684 ; -C 90 ; WX 611 ; N Zeta ; B 44 0 636 673 ; -C 91 ; WX 333 ; N bracketleft ; B 86 -155 299 674 ; -C 92 ; WX 863 ; N therefore ; B 163 0 701 487 ; -C 93 ; WX 333 ; N bracketright ; B 33 -155 246 674 ; -C 94 ; WX 658 ; N perpendicular ; B 15 0 652 674 ; -C 95 ; WX 500 ; N underscore ; B -2 -125 502 -75 ; -C 96 ; WX 500 ; N radicalex ; B 480 881 1090 917 ; -C 97 ; WX 631 ; N alpha ; B 41 -18 622 500 ; -C 98 ; WX 549 ; N beta ; B 61 -223 515 741 ; -C 99 ; WX 549 ; N chi ; B 12 -231 522 499 ; -C 100 ; WX 494 ; N delta ; B 40 -19 481 740 ; -C 101 ; WX 439 ; N epsilon ; B 22 -19 427 502 ; -C 102 ; WX 521 ; N phi ; B 28 -224 492 673 ; -C 103 ; WX 411 ; N gamma ; B 5 -225 484 499 ; -C 104 ; WX 603 ; N eta ; B 0 -202 527 514 ; -C 105 ; WX 329 ; N iota ; B 0 -17 301 503 ; -C 106 ; WX 603 ; N phi1 ; B 36 -224 587 499 ; -C 107 ; WX 549 ; N kappa ; B 33 0 558 501 ; -C 108 ; WX 549 ; N lambda ; B 24 -17 548 739 ; -C 109 ; WX 576 ; N mu ; B 33 -223 567 500 ; -C 110 ; WX 521 ; N nu ; B -9 -16 475 507 ; -C 111 ; WX 549 ; N omicron ; B 35 -19 501 499 ; -C 112 ; WX 549 ; N pi ; B 10 -19 530 487 ; -C 113 ; WX 521 ; N theta ; B 43 -17 485 690 ; -C 114 ; WX 549 ; N rho ; B 50 -230 490 499 ; -C 115 ; WX 603 ; N sigma ; B 30 -21 588 500 ; -C 116 ; WX 439 ; N tau ; B 10 -19 418 500 ; -C 117 ; WX 576 ; N upsilon ; B 7 -18 535 507 ; -C 118 ; WX 713 ; N omega1 ; B 12 -18 671 583 ; -C 119 ; WX 686 ; N omega ; B 42 -17 684 500 ; -C 120 ; WX 493 ; N xi ; B 27 -224 469 766 ; -C 121 ; WX 686 ; N psi ; B 12 -228 701 500 ; -C 122 ; WX 494 ; N zeta ; B 60 -225 467 756 ; -C 123 ; WX 480 ; N braceleft ; B 58 -183 397 673 ; -C 124 ; WX 200 ; N bar ; B 65 -293 135 707 ; -C 125 ; WX 480 ; N braceright ; B 79 -183 418 673 ; -C 126 ; WX 549 ; N similar ; B 17 203 529 307 ; -C 160 ; WX 750 ; N Euro ; B 20 -12 714 685 ; -C 161 ; WX 620 ; N Upsilon1 ; B -2 0 610 685 ; -C 162 ; WX 247 ; N minute ; B 27 459 228 735 ; -C 163 ; WX 549 ; N lessequal ; B 29 0 526 639 ; -C 164 ; WX 167 ; N fraction ; B -180 -12 340 677 ; -C 165 ; WX 713 ; N infinity ; B 26 124 688 404 ; -C 166 ; WX 500 ; N florin ; B 2 -193 494 686 ; -C 167 ; WX 753 ; N club ; B 86 -26 660 533 ; -C 168 ; WX 753 ; N diamond ; B 142 -36 600 550 ; -C 169 ; WX 753 ; N heart ; B 117 -33 631 532 ; -C 170 ; WX 753 ; N spade ; B 113 -36 629 548 ; -C 171 ; WX 1042 ; N arrowboth ; B 24 -15 1024 511 ; -C 172 ; WX 987 ; N arrowleft ; B 32 -15 942 511 ; -C 173 ; WX 603 ; N arrowup ; B 45 0 571 910 ; -C 174 ; WX 987 ; N arrowright ; B 49 -15 959 511 ; -C 175 ; WX 603 ; N arrowdown ; B 45 -22 571 888 ; -C 176 ; WX 400 ; N degree ; B 50 385 350 685 ; -C 177 ; WX 549 ; N plusminus ; B 10 0 539 645 ; -C 178 ; WX 411 ; N second ; B 20 459 413 737 ; -C 179 ; WX 549 ; N greaterequal ; B 29 0 526 639 ; -C 180 ; WX 549 ; N multiply ; B 17 8 533 524 ; -C 181 ; WX 713 ; N proportional ; B 27 123 639 404 ; -C 182 ; WX 494 ; N partialdiff ; B 26 -20 462 746 ; -C 183 ; WX 460 ; N bullet ; B 50 113 410 473 ; -C 184 ; WX 549 ; N divide ; B 10 71 536 456 ; -C 185 ; WX 549 ; N notequal ; B 15 -25 540 549 ; -C 186 ; WX 549 ; N equivalence ; B 14 82 538 443 ; -C 187 ; WX 549 ; N approxequal ; B 14 135 527 394 ; -C 188 ; WX 1000 ; N ellipsis ; B 111 -17 889 95 ; -C 189 ; WX 603 ; N arrowvertex ; B 280 -120 336 1010 ; -C 190 ; WX 1000 ; N arrowhorizex ; B -60 220 1050 276 ; -C 191 ; WX 658 ; N carriagereturn ; B 15 -16 602 629 ; -C 192 ; WX 823 ; N aleph ; B 175 -18 661 658 ; -C 193 ; WX 686 ; N Ifraktur ; B 10 -53 578 740 ; -C 194 ; WX 795 ; N Rfraktur ; B 26 -15 759 734 ; -C 195 ; WX 987 ; N weierstrass ; B 159 -211 870 573 ; -C 196 ; WX 768 ; N circlemultiply ; B 43 -17 733 673 ; -C 197 ; WX 768 ; N circleplus ; B 43 -15 733 675 ; -C 198 ; WX 823 ; N emptyset ; B 39 -24 781 719 ; -C 199 ; WX 768 ; N intersection ; B 40 0 732 509 ; -C 200 ; WX 768 ; N union ; B 40 -17 732 492 ; -C 201 ; WX 713 ; N propersuperset ; B 20 0 673 470 ; -C 202 ; WX 713 ; N reflexsuperset ; B 20 -125 673 470 ; -C 203 ; WX 713 ; N notsubset ; B 36 -70 690 540 ; -C 204 ; WX 713 ; N propersubset ; B 37 0 690 470 ; -C 205 ; WX 713 ; N reflexsubset ; B 37 -125 690 470 ; -C 206 ; WX 713 ; N element ; B 45 0 505 468 ; -C 207 ; WX 713 ; N notelement ; B 45 -58 505 555 ; -C 208 ; WX 768 ; N angle ; B 26 0 738 673 ; -C 209 ; WX 713 ; N gradient ; B 36 -19 681 718 ; -C 210 ; WX 790 ; N registerserif ; B 50 -17 740 673 ; -C 211 ; WX 790 ; N copyrightserif ; B 51 -15 741 675 ; -C 212 ; WX 890 ; N trademarkserif ; B 18 293 855 673 ; -C 213 ; WX 823 ; N product ; B 25 -101 803 751 ; -C 214 ; WX 549 ; N radical ; B 10 -38 515 917 ; -C 215 ; WX 250 ; N dotmath ; B 69 210 169 310 ; -C 216 ; WX 713 ; N logicalnot ; B 15 0 680 288 ; -C 217 ; WX 603 ; N logicaland ; B 23 0 583 454 ; -C 218 ; WX 603 ; N logicalor ; B 30 0 578 477 ; -C 219 ; WX 1042 ; N arrowdblboth ; B 27 -20 1023 510 ; -C 220 ; WX 987 ; N arrowdblleft ; B 30 -15 939 513 ; -C 221 ; WX 603 ; N arrowdblup ; B 39 2 567 911 ; -C 222 ; WX 987 ; N arrowdblright ; B 45 -20 954 508 ; -C 223 ; WX 603 ; N arrowdbldown ; B 44 -19 572 890 ; -C 224 ; WX 494 ; N lozenge ; B 18 0 466 745 ; -C 225 ; WX 329 ; N angleleft ; B 25 -198 306 746 ; -C 226 ; WX 790 ; N registersans ; B 50 -20 740 670 ; -C 227 ; WX 790 ; N copyrightsans ; B 49 -15 739 675 ; -C 228 ; WX 786 ; N trademarksans ; B 5 293 725 673 ; -C 229 ; WX 713 ; N summation ; B 14 -108 695 752 ; -C 230 ; WX 384 ; N parenlefttp ; B 24 -293 436 926 ; -C 231 ; WX 384 ; N parenleftex ; B 24 -85 108 925 ; -C 232 ; WX 384 ; N parenleftbt ; B 24 -293 436 926 ; -C 233 ; WX 384 ; N bracketlefttp ; B 0 -80 349 926 ; -C 234 ; WX 384 ; N bracketleftex ; B 0 -79 77 925 ; -C 235 ; WX 384 ; N bracketleftbt ; B 0 -80 349 926 ; -C 236 ; WX 494 ; N bracelefttp ; B 209 -85 445 925 ; -C 237 ; WX 494 ; N braceleftmid ; B 20 -85 284 935 ; -C 238 ; WX 494 ; N braceleftbt ; B 209 -75 445 935 ; -C 239 ; WX 494 ; N braceex ; B 209 -85 284 935 ; -C 241 ; WX 329 ; N angleright ; B 21 -198 302 746 ; -C 242 ; WX 274 ; N integral ; B 2 -107 291 916 ; -C 243 ; WX 686 ; N integraltp ; B 308 -88 675 920 ; -C 244 ; WX 686 ; N integralex ; B 308 -88 378 975 ; -C 245 ; WX 686 ; N integralbt ; B 11 -87 378 921 ; -C 246 ; WX 384 ; N parenrighttp ; B 54 -293 466 926 ; -C 247 ; WX 384 ; N parenrightex ; B 382 -85 466 925 ; -C 248 ; WX 384 ; N parenrightbt ; B 54 -293 466 926 ; -C 249 ; WX 384 ; N bracketrighttp ; B 22 -80 371 926 ; -C 250 ; WX 384 ; N bracketrightex ; B 294 -79 371 925 ; -C 251 ; WX 384 ; N bracketrightbt ; B 22 -80 371 926 ; -C 252 ; WX 494 ; N bracerighttp ; B 48 -85 284 925 ; -C 253 ; WX 494 ; N bracerightmid ; B 209 -85 473 935 ; -C 254 ; WX 494 ; N bracerightbt ; B 48 -75 284 935 ; -C -1 ; WX 790 ; N apple ; B 56 -3 733 808 ; -EndCharMetrics -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Times-Bold.afm b/target/classes/com/itextpdf/text/pdf/fonts/Times-Bold.afm deleted file mode 100644 index 559ebaeb..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Times-Bold.afm +++ /dev/null @@ -1,2588 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 12:52:56 1997 -Comment UniqueID 43065 -Comment VMusage 41636 52661 -FontName Times-Bold -FullName Times Bold -FamilyName Times -Weight Bold -ItalicAngle 0 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -168 -218 1000 935 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 676 -XHeight 461 -Ascender 683 -Descender -217 -StdHW 44 -StdVW 139 -StartCharMetrics 315 -C 32 ; WX 250 ; N space ; B 0 0 0 0 ; -C 33 ; WX 333 ; N exclam ; B 81 -13 251 691 ; -C 34 ; WX 555 ; N quotedbl ; B 83 404 472 691 ; -C 35 ; WX 500 ; N numbersign ; B 4 0 496 700 ; -C 36 ; WX 500 ; N dollar ; B 29 -99 472 750 ; -C 37 ; WX 1000 ; N percent ; B 124 -14 877 692 ; -C 38 ; WX 833 ; N ampersand ; B 62 -16 787 691 ; -C 39 ; WX 333 ; N quoteright ; B 79 356 263 691 ; -C 40 ; WX 333 ; N parenleft ; B 46 -168 306 694 ; -C 41 ; WX 333 ; N parenright ; B 27 -168 287 694 ; -C 42 ; WX 500 ; N asterisk ; B 56 255 447 691 ; -C 43 ; WX 570 ; N plus ; B 33 0 537 506 ; -C 44 ; WX 250 ; N comma ; B 39 -180 223 155 ; -C 45 ; WX 333 ; N hyphen ; B 44 171 287 287 ; -C 46 ; WX 250 ; N period ; B 41 -13 210 156 ; -C 47 ; WX 278 ; N slash ; B -24 -19 302 691 ; -C 48 ; WX 500 ; N zero ; B 24 -13 476 688 ; -C 49 ; WX 500 ; N one ; B 65 0 442 688 ; -C 50 ; WX 500 ; N two ; B 17 0 478 688 ; -C 51 ; WX 500 ; N three ; B 16 -14 468 688 ; -C 52 ; WX 500 ; N four ; B 19 0 475 688 ; -C 53 ; WX 500 ; N five ; B 22 -8 470 676 ; -C 54 ; WX 500 ; N six ; B 28 -13 475 688 ; -C 55 ; WX 500 ; N seven ; B 17 0 477 676 ; -C 56 ; WX 500 ; N eight ; B 28 -13 472 688 ; -C 57 ; WX 500 ; N nine ; B 26 -13 473 688 ; -C 58 ; WX 333 ; N colon ; B 82 -13 251 472 ; -C 59 ; WX 333 ; N semicolon ; B 82 -180 266 472 ; -C 60 ; WX 570 ; N less ; B 31 -8 539 514 ; -C 61 ; WX 570 ; N equal ; B 33 107 537 399 ; -C 62 ; WX 570 ; N greater ; B 31 -8 539 514 ; -C 63 ; WX 500 ; N question ; B 57 -13 445 689 ; -C 64 ; WX 930 ; N at ; B 108 -19 822 691 ; -C 65 ; WX 722 ; N A ; B 9 0 689 690 ; -C 66 ; WX 667 ; N B ; B 16 0 619 676 ; -C 67 ; WX 722 ; N C ; B 49 -19 687 691 ; -C 68 ; WX 722 ; N D ; B 14 0 690 676 ; -C 69 ; WX 667 ; N E ; B 16 0 641 676 ; -C 70 ; WX 611 ; N F ; B 16 0 583 676 ; -C 71 ; WX 778 ; N G ; B 37 -19 755 691 ; -C 72 ; WX 778 ; N H ; B 21 0 759 676 ; -C 73 ; WX 389 ; N I ; B 20 0 370 676 ; -C 74 ; WX 500 ; N J ; B 3 -96 479 676 ; -C 75 ; WX 778 ; N K ; B 30 0 769 676 ; -C 76 ; WX 667 ; N L ; B 19 0 638 676 ; -C 77 ; WX 944 ; N M ; B 14 0 921 676 ; -C 78 ; WX 722 ; N N ; B 16 -18 701 676 ; -C 79 ; WX 778 ; N O ; B 35 -19 743 691 ; -C 80 ; WX 611 ; N P ; B 16 0 600 676 ; -C 81 ; WX 778 ; N Q ; B 35 -176 743 691 ; -C 82 ; WX 722 ; N R ; B 26 0 715 676 ; -C 83 ; WX 556 ; N S ; B 35 -19 513 692 ; -C 84 ; WX 667 ; N T ; B 31 0 636 676 ; -C 85 ; WX 722 ; N U ; B 16 -19 701 676 ; -C 86 ; WX 722 ; N V ; B 16 -18 701 676 ; -C 87 ; WX 1000 ; N W ; B 19 -15 981 676 ; -C 88 ; WX 722 ; N X ; B 16 0 699 676 ; -C 89 ; WX 722 ; N Y ; B 15 0 699 676 ; -C 90 ; WX 667 ; N Z ; B 28 0 634 676 ; -C 91 ; WX 333 ; N bracketleft ; B 67 -149 301 678 ; -C 92 ; WX 278 ; N backslash ; B -25 -19 303 691 ; -C 93 ; WX 333 ; N bracketright ; B 32 -149 266 678 ; -C 94 ; WX 581 ; N asciicircum ; B 73 311 509 676 ; -C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; -C 96 ; WX 333 ; N quoteleft ; B 70 356 254 691 ; -C 97 ; WX 500 ; N a ; B 25 -14 488 473 ; -C 98 ; WX 556 ; N b ; B 17 -14 521 676 ; -C 99 ; WX 444 ; N c ; B 25 -14 430 473 ; -C 100 ; WX 556 ; N d ; B 25 -14 534 676 ; -C 101 ; WX 444 ; N e ; B 25 -14 426 473 ; -C 102 ; WX 333 ; N f ; B 14 0 389 691 ; L i fi ; L l fl ; -C 103 ; WX 500 ; N g ; B 28 -206 483 473 ; -C 104 ; WX 556 ; N h ; B 16 0 534 676 ; -C 105 ; WX 278 ; N i ; B 16 0 255 691 ; -C 106 ; WX 333 ; N j ; B -57 -203 263 691 ; -C 107 ; WX 556 ; N k ; B 22 0 543 676 ; -C 108 ; WX 278 ; N l ; B 16 0 255 676 ; -C 109 ; WX 833 ; N m ; B 16 0 814 473 ; -C 110 ; WX 556 ; N n ; B 21 0 539 473 ; -C 111 ; WX 500 ; N o ; B 25 -14 476 473 ; -C 112 ; WX 556 ; N p ; B 19 -205 524 473 ; -C 113 ; WX 556 ; N q ; B 34 -205 536 473 ; -C 114 ; WX 444 ; N r ; B 29 0 434 473 ; -C 115 ; WX 389 ; N s ; B 25 -14 361 473 ; -C 116 ; WX 333 ; N t ; B 20 -12 332 630 ; -C 117 ; WX 556 ; N u ; B 16 -14 537 461 ; -C 118 ; WX 500 ; N v ; B 21 -14 485 461 ; -C 119 ; WX 722 ; N w ; B 23 -14 707 461 ; -C 120 ; WX 500 ; N x ; B 12 0 484 461 ; -C 121 ; WX 500 ; N y ; B 16 -205 480 461 ; -C 122 ; WX 444 ; N z ; B 21 0 420 461 ; -C 123 ; WX 394 ; N braceleft ; B 22 -175 340 698 ; -C 124 ; WX 220 ; N bar ; B 66 -218 154 782 ; -C 125 ; WX 394 ; N braceright ; B 54 -175 372 698 ; -C 126 ; WX 520 ; N asciitilde ; B 29 173 491 333 ; -C 161 ; WX 333 ; N exclamdown ; B 82 -203 252 501 ; -C 162 ; WX 500 ; N cent ; B 53 -140 458 588 ; -C 163 ; WX 500 ; N sterling ; B 21 -14 477 684 ; -C 164 ; WX 167 ; N fraction ; B -168 -12 329 688 ; -C 165 ; WX 500 ; N yen ; B -64 0 547 676 ; -C 166 ; WX 500 ; N florin ; B 0 -155 498 706 ; -C 167 ; WX 500 ; N section ; B 57 -132 443 691 ; -C 168 ; WX 500 ; N currency ; B -26 61 526 613 ; -C 169 ; WX 278 ; N quotesingle ; B 75 404 204 691 ; -C 170 ; WX 500 ; N quotedblleft ; B 32 356 486 691 ; -C 171 ; WX 500 ; N guillemotleft ; B 23 36 473 415 ; -C 172 ; WX 333 ; N guilsinglleft ; B 51 36 305 415 ; -C 173 ; WX 333 ; N guilsinglright ; B 28 36 282 415 ; -C 174 ; WX 556 ; N fi ; B 14 0 536 691 ; -C 175 ; WX 556 ; N fl ; B 14 0 536 691 ; -C 177 ; WX 500 ; N endash ; B 0 181 500 271 ; -C 178 ; WX 500 ; N dagger ; B 47 -134 453 691 ; -C 179 ; WX 500 ; N daggerdbl ; B 45 -132 456 691 ; -C 180 ; WX 250 ; N periodcentered ; B 41 248 210 417 ; -C 182 ; WX 540 ; N paragraph ; B 0 -186 519 676 ; -C 183 ; WX 350 ; N bullet ; B 35 198 315 478 ; -C 184 ; WX 333 ; N quotesinglbase ; B 79 -180 263 155 ; -C 185 ; WX 500 ; N quotedblbase ; B 14 -180 468 155 ; -C 186 ; WX 500 ; N quotedblright ; B 14 356 468 691 ; -C 187 ; WX 500 ; N guillemotright ; B 27 36 477 415 ; -C 188 ; WX 1000 ; N ellipsis ; B 82 -13 917 156 ; -C 189 ; WX 1000 ; N perthousand ; B 7 -29 995 706 ; -C 191 ; WX 500 ; N questiondown ; B 55 -201 443 501 ; -C 193 ; WX 333 ; N grave ; B 8 528 246 713 ; -C 194 ; WX 333 ; N acute ; B 86 528 324 713 ; -C 195 ; WX 333 ; N circumflex ; B -2 528 335 704 ; -C 196 ; WX 333 ; N tilde ; B -16 547 349 674 ; -C 197 ; WX 333 ; N macron ; B 1 565 331 637 ; -C 198 ; WX 333 ; N breve ; B 15 528 318 691 ; -C 199 ; WX 333 ; N dotaccent ; B 103 536 258 691 ; -C 200 ; WX 333 ; N dieresis ; B -2 537 335 667 ; -C 202 ; WX 333 ; N ring ; B 60 527 273 740 ; -C 203 ; WX 333 ; N cedilla ; B 68 -218 294 0 ; -C 205 ; WX 333 ; N hungarumlaut ; B -13 528 425 713 ; -C 206 ; WX 333 ; N ogonek ; B 90 -193 319 24 ; -C 207 ; WX 333 ; N caron ; B -2 528 335 704 ; -C 208 ; WX 1000 ; N emdash ; B 0 181 1000 271 ; -C 225 ; WX 1000 ; N AE ; B 4 0 951 676 ; -C 227 ; WX 300 ; N ordfeminine ; B -1 397 301 688 ; -C 232 ; WX 667 ; N Lslash ; B 19 0 638 676 ; -C 233 ; WX 778 ; N Oslash ; B 35 -74 743 737 ; -C 234 ; WX 1000 ; N OE ; B 22 -5 981 684 ; -C 235 ; WX 330 ; N ordmasculine ; B 18 397 312 688 ; -C 241 ; WX 722 ; N ae ; B 33 -14 693 473 ; -C 245 ; WX 278 ; N dotlessi ; B 16 0 255 461 ; -C 248 ; WX 278 ; N lslash ; B -22 0 303 676 ; -C 249 ; WX 500 ; N oslash ; B 25 -92 476 549 ; -C 250 ; WX 722 ; N oe ; B 22 -14 696 473 ; -C 251 ; WX 556 ; N germandbls ; B 19 -12 517 691 ; -C -1 ; WX 389 ; N Idieresis ; B 20 0 370 877 ; -C -1 ; WX 444 ; N eacute ; B 25 -14 426 713 ; -C -1 ; WX 500 ; N abreve ; B 25 -14 488 691 ; -C -1 ; WX 556 ; N uhungarumlaut ; B 16 -14 557 713 ; -C -1 ; WX 444 ; N ecaron ; B 25 -14 426 704 ; -C -1 ; WX 722 ; N Ydieresis ; B 15 0 699 877 ; -C -1 ; WX 570 ; N divide ; B 33 -31 537 537 ; -C -1 ; WX 722 ; N Yacute ; B 15 0 699 923 ; -C -1 ; WX 722 ; N Acircumflex ; B 9 0 689 914 ; -C -1 ; WX 500 ; N aacute ; B 25 -14 488 713 ; -C -1 ; WX 722 ; N Ucircumflex ; B 16 -19 701 914 ; -C -1 ; WX 500 ; N yacute ; B 16 -205 480 713 ; -C -1 ; WX 389 ; N scommaaccent ; B 25 -218 361 473 ; -C -1 ; WX 444 ; N ecircumflex ; B 25 -14 426 704 ; -C -1 ; WX 722 ; N Uring ; B 16 -19 701 935 ; -C -1 ; WX 722 ; N Udieresis ; B 16 -19 701 877 ; -C -1 ; WX 500 ; N aogonek ; B 25 -193 504 473 ; -C -1 ; WX 722 ; N Uacute ; B 16 -19 701 923 ; -C -1 ; WX 556 ; N uogonek ; B 16 -193 539 461 ; -C -1 ; WX 667 ; N Edieresis ; B 16 0 641 877 ; -C -1 ; WX 722 ; N Dcroat ; B 6 0 690 676 ; -C -1 ; WX 250 ; N commaaccent ; B 47 -218 203 -50 ; -C -1 ; WX 747 ; N copyright ; B 26 -19 721 691 ; -C -1 ; WX 667 ; N Emacron ; B 16 0 641 847 ; -C -1 ; WX 444 ; N ccaron ; B 25 -14 430 704 ; -C -1 ; WX 500 ; N aring ; B 25 -14 488 740 ; -C -1 ; WX 722 ; N Ncommaaccent ; B 16 -188 701 676 ; -C -1 ; WX 278 ; N lacute ; B 16 0 297 923 ; -C -1 ; WX 500 ; N agrave ; B 25 -14 488 713 ; -C -1 ; WX 667 ; N Tcommaaccent ; B 31 -218 636 676 ; -C -1 ; WX 722 ; N Cacute ; B 49 -19 687 923 ; -C -1 ; WX 500 ; N atilde ; B 25 -14 488 674 ; -C -1 ; WX 667 ; N Edotaccent ; B 16 0 641 901 ; -C -1 ; WX 389 ; N scaron ; B 25 -14 363 704 ; -C -1 ; WX 389 ; N scedilla ; B 25 -218 361 473 ; -C -1 ; WX 278 ; N iacute ; B 16 0 289 713 ; -C -1 ; WX 494 ; N lozenge ; B 10 0 484 745 ; -C -1 ; WX 722 ; N Rcaron ; B 26 0 715 914 ; -C -1 ; WX 778 ; N Gcommaaccent ; B 37 -218 755 691 ; -C -1 ; WX 556 ; N ucircumflex ; B 16 -14 537 704 ; -C -1 ; WX 500 ; N acircumflex ; B 25 -14 488 704 ; -C -1 ; WX 722 ; N Amacron ; B 9 0 689 847 ; -C -1 ; WX 444 ; N rcaron ; B 29 0 434 704 ; -C -1 ; WX 444 ; N ccedilla ; B 25 -218 430 473 ; -C -1 ; WX 667 ; N Zdotaccent ; B 28 0 634 901 ; -C -1 ; WX 611 ; N Thorn ; B 16 0 600 676 ; -C -1 ; WX 778 ; N Omacron ; B 35 -19 743 847 ; -C -1 ; WX 722 ; N Racute ; B 26 0 715 923 ; -C -1 ; WX 556 ; N Sacute ; B 35 -19 513 923 ; -C -1 ; WX 672 ; N dcaron ; B 25 -14 681 682 ; -C -1 ; WX 722 ; N Umacron ; B 16 -19 701 847 ; -C -1 ; WX 556 ; N uring ; B 16 -14 537 740 ; -C -1 ; WX 300 ; N threesuperior ; B 3 268 297 688 ; -C -1 ; WX 778 ; N Ograve ; B 35 -19 743 923 ; -C -1 ; WX 722 ; N Agrave ; B 9 0 689 923 ; -C -1 ; WX 722 ; N Abreve ; B 9 0 689 901 ; -C -1 ; WX 570 ; N multiply ; B 48 16 522 490 ; -C -1 ; WX 556 ; N uacute ; B 16 -14 537 713 ; -C -1 ; WX 667 ; N Tcaron ; B 31 0 636 914 ; -C -1 ; WX 494 ; N partialdiff ; B 11 -21 494 750 ; -C -1 ; WX 500 ; N ydieresis ; B 16 -205 480 667 ; -C -1 ; WX 722 ; N Nacute ; B 16 -18 701 923 ; -C -1 ; WX 278 ; N icircumflex ; B -37 0 300 704 ; -C -1 ; WX 667 ; N Ecircumflex ; B 16 0 641 914 ; -C -1 ; WX 500 ; N adieresis ; B 25 -14 488 667 ; -C -1 ; WX 444 ; N edieresis ; B 25 -14 426 667 ; -C -1 ; WX 444 ; N cacute ; B 25 -14 430 713 ; -C -1 ; WX 556 ; N nacute ; B 21 0 539 713 ; -C -1 ; WX 556 ; N umacron ; B 16 -14 537 637 ; -C -1 ; WX 722 ; N Ncaron ; B 16 -18 701 914 ; -C -1 ; WX 389 ; N Iacute ; B 20 0 370 923 ; -C -1 ; WX 570 ; N plusminus ; B 33 0 537 506 ; -C -1 ; WX 220 ; N brokenbar ; B 66 -143 154 707 ; -C -1 ; WX 747 ; N registered ; B 26 -19 721 691 ; -C -1 ; WX 778 ; N Gbreve ; B 37 -19 755 901 ; -C -1 ; WX 389 ; N Idotaccent ; B 20 0 370 901 ; -C -1 ; WX 600 ; N summation ; B 14 -10 585 706 ; -C -1 ; WX 667 ; N Egrave ; B 16 0 641 923 ; -C -1 ; WX 444 ; N racute ; B 29 0 434 713 ; -C -1 ; WX 500 ; N omacron ; B 25 -14 476 637 ; -C -1 ; WX 667 ; N Zacute ; B 28 0 634 923 ; -C -1 ; WX 667 ; N Zcaron ; B 28 0 634 914 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 523 704 ; -C -1 ; WX 722 ; N Eth ; B 6 0 690 676 ; -C -1 ; WX 722 ; N Ccedilla ; B 49 -218 687 691 ; -C -1 ; WX 278 ; N lcommaaccent ; B 16 -218 255 676 ; -C -1 ; WX 416 ; N tcaron ; B 20 -12 425 815 ; -C -1 ; WX 444 ; N eogonek ; B 25 -193 426 473 ; -C -1 ; WX 722 ; N Uogonek ; B 16 -193 701 676 ; -C -1 ; WX 722 ; N Aacute ; B 9 0 689 923 ; -C -1 ; WX 722 ; N Adieresis ; B 9 0 689 877 ; -C -1 ; WX 444 ; N egrave ; B 25 -14 426 713 ; -C -1 ; WX 444 ; N zacute ; B 21 0 420 713 ; -C -1 ; WX 278 ; N iogonek ; B 16 -193 274 691 ; -C -1 ; WX 778 ; N Oacute ; B 35 -19 743 923 ; -C -1 ; WX 500 ; N oacute ; B 25 -14 476 713 ; -C -1 ; WX 500 ; N amacron ; B 25 -14 488 637 ; -C -1 ; WX 389 ; N sacute ; B 25 -14 361 713 ; -C -1 ; WX 278 ; N idieresis ; B -37 0 300 667 ; -C -1 ; WX 778 ; N Ocircumflex ; B 35 -19 743 914 ; -C -1 ; WX 722 ; N Ugrave ; B 16 -19 701 923 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 556 ; N thorn ; B 19 -205 524 676 ; -C -1 ; WX 300 ; N twosuperior ; B 0 275 300 688 ; -C -1 ; WX 778 ; N Odieresis ; B 35 -19 743 877 ; -C -1 ; WX 556 ; N mu ; B 33 -206 536 461 ; -C -1 ; WX 278 ; N igrave ; B -27 0 255 713 ; -C -1 ; WX 500 ; N ohungarumlaut ; B 25 -14 529 713 ; -C -1 ; WX 667 ; N Eogonek ; B 16 -193 644 676 ; -C -1 ; WX 556 ; N dcroat ; B 25 -14 534 676 ; -C -1 ; WX 750 ; N threequarters ; B 23 -12 733 688 ; -C -1 ; WX 556 ; N Scedilla ; B 35 -218 513 692 ; -C -1 ; WX 394 ; N lcaron ; B 16 0 412 682 ; -C -1 ; WX 778 ; N Kcommaaccent ; B 30 -218 769 676 ; -C -1 ; WX 667 ; N Lacute ; B 19 0 638 923 ; -C -1 ; WX 1000 ; N trademark ; B 24 271 977 676 ; -C -1 ; WX 444 ; N edotaccent ; B 25 -14 426 691 ; -C -1 ; WX 389 ; N Igrave ; B 20 0 370 923 ; -C -1 ; WX 389 ; N Imacron ; B 20 0 370 847 ; -C -1 ; WX 667 ; N Lcaron ; B 19 0 652 682 ; -C -1 ; WX 750 ; N onehalf ; B -7 -12 775 688 ; -C -1 ; WX 549 ; N lessequal ; B 29 0 526 704 ; -C -1 ; WX 500 ; N ocircumflex ; B 25 -14 476 704 ; -C -1 ; WX 556 ; N ntilde ; B 21 0 539 674 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 16 -19 701 923 ; -C -1 ; WX 667 ; N Eacute ; B 16 0 641 923 ; -C -1 ; WX 444 ; N emacron ; B 25 -14 426 637 ; -C -1 ; WX 500 ; N gbreve ; B 28 -206 483 691 ; -C -1 ; WX 750 ; N onequarter ; B 28 -12 743 688 ; -C -1 ; WX 556 ; N Scaron ; B 35 -19 513 914 ; -C -1 ; WX 556 ; N Scommaaccent ; B 35 -218 513 692 ; -C -1 ; WX 778 ; N Ohungarumlaut ; B 35 -19 743 923 ; -C -1 ; WX 400 ; N degree ; B 57 402 343 688 ; -C -1 ; WX 500 ; N ograve ; B 25 -14 476 713 ; -C -1 ; WX 722 ; N Ccaron ; B 49 -19 687 914 ; -C -1 ; WX 556 ; N ugrave ; B 16 -14 537 713 ; -C -1 ; WX 549 ; N radical ; B 10 -46 512 850 ; -C -1 ; WX 722 ; N Dcaron ; B 14 0 690 914 ; -C -1 ; WX 444 ; N rcommaaccent ; B 29 -218 434 473 ; -C -1 ; WX 722 ; N Ntilde ; B 16 -18 701 884 ; -C -1 ; WX 500 ; N otilde ; B 25 -14 476 674 ; -C -1 ; WX 722 ; N Rcommaaccent ; B 26 -218 715 676 ; -C -1 ; WX 667 ; N Lcommaaccent ; B 19 -218 638 676 ; -C -1 ; WX 722 ; N Atilde ; B 9 0 689 884 ; -C -1 ; WX 722 ; N Aogonek ; B 9 -193 699 690 ; -C -1 ; WX 722 ; N Aring ; B 9 0 689 935 ; -C -1 ; WX 778 ; N Otilde ; B 35 -19 743 884 ; -C -1 ; WX 444 ; N zdotaccent ; B 21 0 420 691 ; -C -1 ; WX 667 ; N Ecaron ; B 16 0 641 914 ; -C -1 ; WX 389 ; N Iogonek ; B 20 -193 370 676 ; -C -1 ; WX 556 ; N kcommaaccent ; B 22 -218 543 676 ; -C -1 ; WX 570 ; N minus ; B 33 209 537 297 ; -C -1 ; WX 389 ; N Icircumflex ; B 20 0 370 914 ; -C -1 ; WX 556 ; N ncaron ; B 21 0 539 704 ; -C -1 ; WX 333 ; N tcommaaccent ; B 20 -218 332 630 ; -C -1 ; WX 570 ; N logicalnot ; B 33 108 537 399 ; -C -1 ; WX 500 ; N odieresis ; B 25 -14 476 667 ; -C -1 ; WX 556 ; N udieresis ; B 16 -14 537 667 ; -C -1 ; WX 549 ; N notequal ; B 15 -49 540 570 ; -C -1 ; WX 500 ; N gcommaaccent ; B 28 -206 483 829 ; -C -1 ; WX 500 ; N eth ; B 25 -14 476 691 ; -C -1 ; WX 444 ; N zcaron ; B 21 0 420 704 ; -C -1 ; WX 556 ; N ncommaaccent ; B 21 -218 539 473 ; -C -1 ; WX 300 ; N onesuperior ; B 28 275 273 688 ; -C -1 ; WX 278 ; N imacron ; B -8 0 272 637 ; -C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2242 -KPX A C -55 -KPX A Cacute -55 -KPX A Ccaron -55 -KPX A Ccedilla -55 -KPX A G -55 -KPX A Gbreve -55 -KPX A Gcommaaccent -55 -KPX A O -45 -KPX A Oacute -45 -KPX A Ocircumflex -45 -KPX A Odieresis -45 -KPX A Ograve -45 -KPX A Ohungarumlaut -45 -KPX A Omacron -45 -KPX A Oslash -45 -KPX A Otilde -45 -KPX A Q -45 -KPX A T -95 -KPX A Tcaron -95 -KPX A Tcommaaccent -95 -KPX A U -50 -KPX A Uacute -50 -KPX A Ucircumflex -50 -KPX A Udieresis -50 -KPX A Ugrave -50 -KPX A Uhungarumlaut -50 -KPX A Umacron -50 -KPX A Uogonek -50 -KPX A Uring -50 -KPX A V -145 -KPX A W -130 -KPX A Y -100 -KPX A Yacute -100 -KPX A Ydieresis -100 -KPX A p -25 -KPX A quoteright -74 -KPX A u -50 -KPX A uacute -50 -KPX A ucircumflex -50 -KPX A udieresis -50 -KPX A ugrave -50 -KPX A uhungarumlaut -50 -KPX A umacron -50 -KPX A uogonek -50 -KPX A uring -50 -KPX A v -100 -KPX A w -90 -KPX A y -74 -KPX A yacute -74 -KPX A ydieresis -74 -KPX Aacute C -55 -KPX Aacute Cacute -55 -KPX Aacute Ccaron -55 -KPX Aacute Ccedilla -55 -KPX Aacute G -55 -KPX Aacute Gbreve -55 -KPX Aacute Gcommaaccent -55 -KPX Aacute O -45 -KPX Aacute Oacute -45 -KPX Aacute Ocircumflex -45 -KPX Aacute Odieresis -45 -KPX Aacute Ograve -45 -KPX Aacute Ohungarumlaut -45 -KPX Aacute Omacron -45 -KPX Aacute Oslash -45 -KPX Aacute Otilde -45 -KPX Aacute Q -45 -KPX Aacute T -95 -KPX Aacute Tcaron -95 -KPX Aacute Tcommaaccent -95 -KPX Aacute U -50 -KPX Aacute Uacute -50 -KPX Aacute Ucircumflex -50 -KPX Aacute Udieresis -50 -KPX Aacute Ugrave -50 -KPX Aacute Uhungarumlaut -50 -KPX Aacute Umacron -50 -KPX Aacute Uogonek -50 -KPX Aacute Uring -50 -KPX Aacute V -145 -KPX Aacute W -130 -KPX Aacute Y -100 -KPX Aacute Yacute -100 -KPX Aacute Ydieresis -100 -KPX Aacute p -25 -KPX Aacute quoteright -74 -KPX Aacute u -50 -KPX Aacute uacute -50 -KPX Aacute ucircumflex -50 -KPX Aacute udieresis -50 -KPX Aacute ugrave -50 -KPX Aacute uhungarumlaut -50 -KPX Aacute umacron -50 -KPX Aacute uogonek -50 -KPX Aacute uring -50 -KPX Aacute v -100 -KPX Aacute w -90 -KPX Aacute y -74 -KPX Aacute yacute -74 -KPX Aacute ydieresis -74 -KPX Abreve C -55 -KPX Abreve Cacute -55 -KPX Abreve Ccaron -55 -KPX Abreve Ccedilla -55 -KPX Abreve G -55 -KPX Abreve Gbreve -55 -KPX Abreve Gcommaaccent -55 -KPX Abreve O -45 -KPX Abreve Oacute -45 -KPX Abreve Ocircumflex -45 -KPX Abreve Odieresis -45 -KPX Abreve Ograve -45 -KPX Abreve Ohungarumlaut -45 -KPX Abreve Omacron -45 -KPX Abreve Oslash -45 -KPX Abreve Otilde -45 -KPX Abreve Q -45 -KPX Abreve T -95 -KPX Abreve Tcaron -95 -KPX Abreve Tcommaaccent -95 -KPX Abreve U -50 -KPX Abreve Uacute -50 -KPX Abreve Ucircumflex -50 -KPX Abreve Udieresis -50 -KPX Abreve Ugrave -50 -KPX Abreve Uhungarumlaut -50 -KPX Abreve Umacron -50 -KPX Abreve Uogonek -50 -KPX Abreve Uring -50 -KPX Abreve V -145 -KPX Abreve W -130 -KPX Abreve Y -100 -KPX Abreve Yacute -100 -KPX Abreve Ydieresis -100 -KPX Abreve p -25 -KPX Abreve quoteright -74 -KPX Abreve u -50 -KPX Abreve uacute -50 -KPX Abreve ucircumflex -50 -KPX Abreve udieresis -50 -KPX Abreve ugrave -50 -KPX Abreve uhungarumlaut -50 -KPX Abreve umacron -50 -KPX Abreve uogonek -50 -KPX Abreve uring -50 -KPX Abreve v -100 -KPX Abreve w -90 -KPX Abreve y -74 -KPX Abreve yacute -74 -KPX Abreve ydieresis -74 -KPX Acircumflex C -55 -KPX Acircumflex Cacute -55 -KPX Acircumflex Ccaron -55 -KPX Acircumflex Ccedilla -55 -KPX Acircumflex G -55 -KPX Acircumflex Gbreve -55 -KPX Acircumflex Gcommaaccent -55 -KPX Acircumflex O -45 -KPX Acircumflex Oacute -45 -KPX Acircumflex Ocircumflex -45 -KPX Acircumflex Odieresis -45 -KPX Acircumflex Ograve -45 -KPX Acircumflex Ohungarumlaut -45 -KPX Acircumflex Omacron -45 -KPX Acircumflex Oslash -45 -KPX Acircumflex Otilde -45 -KPX Acircumflex Q -45 -KPX Acircumflex T -95 -KPX Acircumflex Tcaron -95 -KPX Acircumflex Tcommaaccent -95 -KPX Acircumflex U -50 -KPX Acircumflex Uacute -50 -KPX Acircumflex Ucircumflex -50 -KPX Acircumflex Udieresis -50 -KPX Acircumflex Ugrave -50 -KPX Acircumflex Uhungarumlaut -50 -KPX Acircumflex Umacron -50 -KPX Acircumflex Uogonek -50 -KPX Acircumflex Uring -50 -KPX Acircumflex V -145 -KPX Acircumflex W -130 -KPX Acircumflex Y -100 -KPX Acircumflex Yacute -100 -KPX Acircumflex Ydieresis -100 -KPX Acircumflex p -25 -KPX Acircumflex quoteright -74 -KPX Acircumflex u -50 -KPX Acircumflex uacute -50 -KPX Acircumflex ucircumflex -50 -KPX Acircumflex udieresis -50 -KPX Acircumflex ugrave -50 -KPX Acircumflex uhungarumlaut -50 -KPX Acircumflex umacron -50 -KPX Acircumflex uogonek -50 -KPX Acircumflex uring -50 -KPX Acircumflex v -100 -KPX Acircumflex w -90 -KPX Acircumflex y -74 -KPX Acircumflex yacute -74 -KPX Acircumflex ydieresis -74 -KPX Adieresis C -55 -KPX Adieresis Cacute -55 -KPX Adieresis Ccaron -55 -KPX Adieresis Ccedilla -55 -KPX Adieresis G -55 -KPX Adieresis Gbreve -55 -KPX Adieresis Gcommaaccent -55 -KPX Adieresis O -45 -KPX Adieresis Oacute -45 -KPX Adieresis Ocircumflex -45 -KPX Adieresis Odieresis -45 -KPX Adieresis Ograve -45 -KPX Adieresis Ohungarumlaut -45 -KPX Adieresis Omacron -45 -KPX Adieresis Oslash -45 -KPX Adieresis Otilde -45 -KPX Adieresis Q -45 -KPX Adieresis T -95 -KPX Adieresis Tcaron -95 -KPX Adieresis Tcommaaccent -95 -KPX Adieresis U -50 -KPX Adieresis Uacute -50 -KPX Adieresis Ucircumflex -50 -KPX Adieresis Udieresis -50 -KPX Adieresis Ugrave -50 -KPX Adieresis Uhungarumlaut -50 -KPX Adieresis Umacron -50 -KPX Adieresis Uogonek -50 -KPX Adieresis Uring -50 -KPX Adieresis V -145 -KPX Adieresis W -130 -KPX Adieresis Y -100 -KPX Adieresis Yacute -100 -KPX Adieresis Ydieresis -100 -KPX Adieresis p -25 -KPX Adieresis quoteright -74 -KPX Adieresis u -50 -KPX Adieresis uacute -50 -KPX Adieresis ucircumflex -50 -KPX Adieresis udieresis -50 -KPX Adieresis ugrave -50 -KPX Adieresis uhungarumlaut -50 -KPX Adieresis umacron -50 -KPX Adieresis uogonek -50 -KPX Adieresis uring -50 -KPX Adieresis v -100 -KPX Adieresis w -90 -KPX Adieresis y -74 -KPX Adieresis yacute -74 -KPX Adieresis ydieresis -74 -KPX Agrave C -55 -KPX Agrave Cacute -55 -KPX Agrave Ccaron -55 -KPX Agrave Ccedilla -55 -KPX Agrave G -55 -KPX Agrave Gbreve -55 -KPX Agrave Gcommaaccent -55 -KPX Agrave O -45 -KPX Agrave Oacute -45 -KPX Agrave Ocircumflex -45 -KPX Agrave Odieresis -45 -KPX Agrave Ograve -45 -KPX Agrave Ohungarumlaut -45 -KPX Agrave Omacron -45 -KPX Agrave Oslash -45 -KPX Agrave Otilde -45 -KPX Agrave Q -45 -KPX Agrave T -95 -KPX Agrave Tcaron -95 -KPX Agrave Tcommaaccent -95 -KPX Agrave U -50 -KPX Agrave Uacute -50 -KPX Agrave Ucircumflex -50 -KPX Agrave Udieresis -50 -KPX Agrave Ugrave -50 -KPX Agrave Uhungarumlaut -50 -KPX Agrave Umacron -50 -KPX Agrave Uogonek -50 -KPX Agrave Uring -50 -KPX Agrave V -145 -KPX Agrave W -130 -KPX Agrave Y -100 -KPX Agrave Yacute -100 -KPX Agrave Ydieresis -100 -KPX Agrave p -25 -KPX Agrave quoteright -74 -KPX Agrave u -50 -KPX Agrave uacute -50 -KPX Agrave ucircumflex -50 -KPX Agrave udieresis -50 -KPX Agrave ugrave -50 -KPX Agrave uhungarumlaut -50 -KPX Agrave umacron -50 -KPX Agrave uogonek -50 -KPX Agrave uring -50 -KPX Agrave v -100 -KPX Agrave w -90 -KPX Agrave y -74 -KPX Agrave yacute -74 -KPX Agrave ydieresis -74 -KPX Amacron C -55 -KPX Amacron Cacute -55 -KPX Amacron Ccaron -55 -KPX Amacron Ccedilla -55 -KPX Amacron G -55 -KPX Amacron Gbreve -55 -KPX Amacron Gcommaaccent -55 -KPX Amacron O -45 -KPX Amacron Oacute -45 -KPX Amacron Ocircumflex -45 -KPX Amacron Odieresis -45 -KPX Amacron Ograve -45 -KPX Amacron Ohungarumlaut -45 -KPX Amacron Omacron -45 -KPX Amacron Oslash -45 -KPX Amacron Otilde -45 -KPX Amacron Q -45 -KPX Amacron T -95 -KPX Amacron Tcaron -95 -KPX Amacron Tcommaaccent -95 -KPX Amacron U -50 -KPX Amacron Uacute -50 -KPX Amacron Ucircumflex -50 -KPX Amacron Udieresis -50 -KPX Amacron Ugrave -50 -KPX Amacron Uhungarumlaut -50 -KPX Amacron Umacron -50 -KPX Amacron Uogonek -50 -KPX Amacron Uring -50 -KPX Amacron V -145 -KPX Amacron W -130 -KPX Amacron Y -100 -KPX Amacron Yacute -100 -KPX Amacron Ydieresis -100 -KPX Amacron p -25 -KPX Amacron quoteright -74 -KPX Amacron u -50 -KPX Amacron uacute -50 -KPX Amacron ucircumflex -50 -KPX Amacron udieresis -50 -KPX Amacron ugrave -50 -KPX Amacron uhungarumlaut -50 -KPX Amacron umacron -50 -KPX Amacron uogonek -50 -KPX Amacron uring -50 -KPX Amacron v -100 -KPX Amacron w -90 -KPX Amacron y -74 -KPX Amacron yacute -74 -KPX Amacron ydieresis -74 -KPX Aogonek C -55 -KPX Aogonek Cacute -55 -KPX Aogonek Ccaron -55 -KPX Aogonek Ccedilla -55 -KPX Aogonek G -55 -KPX Aogonek Gbreve -55 -KPX Aogonek Gcommaaccent -55 -KPX Aogonek O -45 -KPX Aogonek Oacute -45 -KPX Aogonek Ocircumflex -45 -KPX Aogonek Odieresis -45 -KPX Aogonek Ograve -45 -KPX Aogonek Ohungarumlaut -45 -KPX Aogonek Omacron -45 -KPX Aogonek Oslash -45 -KPX Aogonek Otilde -45 -KPX Aogonek Q -45 -KPX Aogonek T -95 -KPX Aogonek Tcaron -95 -KPX Aogonek Tcommaaccent -95 -KPX Aogonek U -50 -KPX Aogonek Uacute -50 -KPX Aogonek Ucircumflex -50 -KPX Aogonek Udieresis -50 -KPX Aogonek Ugrave -50 -KPX Aogonek Uhungarumlaut -50 -KPX Aogonek Umacron -50 -KPX Aogonek Uogonek -50 -KPX Aogonek Uring -50 -KPX Aogonek V -145 -KPX Aogonek W -130 -KPX Aogonek Y -100 -KPX Aogonek Yacute -100 -KPX Aogonek Ydieresis -100 -KPX Aogonek p -25 -KPX Aogonek quoteright -74 -KPX Aogonek u -50 -KPX Aogonek uacute -50 -KPX Aogonek ucircumflex -50 -KPX Aogonek udieresis -50 -KPX Aogonek ugrave -50 -KPX Aogonek uhungarumlaut -50 -KPX Aogonek umacron -50 -KPX Aogonek uogonek -50 -KPX Aogonek uring -50 -KPX Aogonek v -100 -KPX Aogonek w -90 -KPX Aogonek y -34 -KPX Aogonek yacute -34 -KPX Aogonek ydieresis -34 -KPX Aring C -55 -KPX Aring Cacute -55 -KPX Aring Ccaron -55 -KPX Aring Ccedilla -55 -KPX Aring G -55 -KPX Aring Gbreve -55 -KPX Aring Gcommaaccent -55 -KPX Aring O -45 -KPX Aring Oacute -45 -KPX Aring Ocircumflex -45 -KPX Aring Odieresis -45 -KPX Aring Ograve -45 -KPX Aring Ohungarumlaut -45 -KPX Aring Omacron -45 -KPX Aring Oslash -45 -KPX Aring Otilde -45 -KPX Aring Q -45 -KPX Aring T -95 -KPX Aring Tcaron -95 -KPX Aring Tcommaaccent -95 -KPX Aring U -50 -KPX Aring Uacute -50 -KPX Aring Ucircumflex -50 -KPX Aring Udieresis -50 -KPX Aring Ugrave -50 -KPX Aring Uhungarumlaut -50 -KPX Aring Umacron -50 -KPX Aring Uogonek -50 -KPX Aring Uring -50 -KPX Aring V -145 -KPX Aring W -130 -KPX Aring Y -100 -KPX Aring Yacute -100 -KPX Aring Ydieresis -100 -KPX Aring p -25 -KPX Aring quoteright -74 -KPX Aring u -50 -KPX Aring uacute -50 -KPX Aring ucircumflex -50 -KPX Aring udieresis -50 -KPX Aring ugrave -50 -KPX Aring uhungarumlaut -50 -KPX Aring umacron -50 -KPX Aring uogonek -50 -KPX Aring uring -50 -KPX Aring v -100 -KPX Aring w -90 -KPX Aring y -74 -KPX Aring yacute -74 -KPX Aring ydieresis -74 -KPX Atilde C -55 -KPX Atilde Cacute -55 -KPX Atilde Ccaron -55 -KPX Atilde Ccedilla -55 -KPX Atilde G -55 -KPX Atilde Gbreve -55 -KPX Atilde Gcommaaccent -55 -KPX Atilde O -45 -KPX Atilde Oacute -45 -KPX Atilde Ocircumflex -45 -KPX Atilde Odieresis -45 -KPX Atilde Ograve -45 -KPX Atilde Ohungarumlaut -45 -KPX Atilde Omacron -45 -KPX Atilde Oslash -45 -KPX Atilde Otilde -45 -KPX Atilde Q -45 -KPX Atilde T -95 -KPX Atilde Tcaron -95 -KPX Atilde Tcommaaccent -95 -KPX Atilde U -50 -KPX Atilde Uacute -50 -KPX Atilde Ucircumflex -50 -KPX Atilde Udieresis -50 -KPX Atilde Ugrave -50 -KPX Atilde Uhungarumlaut -50 -KPX Atilde Umacron -50 -KPX Atilde Uogonek -50 -KPX Atilde Uring -50 -KPX Atilde V -145 -KPX Atilde W -130 -KPX Atilde Y -100 -KPX Atilde Yacute -100 -KPX Atilde Ydieresis -100 -KPX Atilde p -25 -KPX Atilde quoteright -74 -KPX Atilde u -50 -KPX Atilde uacute -50 -KPX Atilde ucircumflex -50 -KPX Atilde udieresis -50 -KPX Atilde ugrave -50 -KPX Atilde uhungarumlaut -50 -KPX Atilde umacron -50 -KPX Atilde uogonek -50 -KPX Atilde uring -50 -KPX Atilde v -100 -KPX Atilde w -90 -KPX Atilde y -74 -KPX Atilde yacute -74 -KPX Atilde ydieresis -74 -KPX B A -30 -KPX B Aacute -30 -KPX B Abreve -30 -KPX B Acircumflex -30 -KPX B Adieresis -30 -KPX B Agrave -30 -KPX B Amacron -30 -KPX B Aogonek -30 -KPX B Aring -30 -KPX B Atilde -30 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX D A -35 -KPX D Aacute -35 -KPX D Abreve -35 -KPX D Acircumflex -35 -KPX D Adieresis -35 -KPX D Agrave -35 -KPX D Amacron -35 -KPX D Aogonek -35 -KPX D Aring -35 -KPX D Atilde -35 -KPX D V -40 -KPX D W -40 -KPX D Y -40 -KPX D Yacute -40 -KPX D Ydieresis -40 -KPX D period -20 -KPX Dcaron A -35 -KPX Dcaron Aacute -35 -KPX Dcaron Abreve -35 -KPX Dcaron Acircumflex -35 -KPX Dcaron Adieresis -35 -KPX Dcaron Agrave -35 -KPX Dcaron Amacron -35 -KPX Dcaron Aogonek -35 -KPX Dcaron Aring -35 -KPX Dcaron Atilde -35 -KPX Dcaron V -40 -KPX Dcaron W -40 -KPX Dcaron Y -40 -KPX Dcaron Yacute -40 -KPX Dcaron Ydieresis -40 -KPX Dcaron period -20 -KPX Dcroat A -35 -KPX Dcroat Aacute -35 -KPX Dcroat Abreve -35 -KPX Dcroat Acircumflex -35 -KPX Dcroat Adieresis -35 -KPX Dcroat Agrave -35 -KPX Dcroat Amacron -35 -KPX Dcroat Aogonek -35 -KPX Dcroat Aring -35 -KPX Dcroat Atilde -35 -KPX Dcroat V -40 -KPX Dcroat W -40 -KPX Dcroat Y -40 -KPX Dcroat Yacute -40 -KPX Dcroat Ydieresis -40 -KPX Dcroat period -20 -KPX F A -90 -KPX F Aacute -90 -KPX F Abreve -90 -KPX F Acircumflex -90 -KPX F Adieresis -90 -KPX F Agrave -90 -KPX F Amacron -90 -KPX F Aogonek -90 -KPX F Aring -90 -KPX F Atilde -90 -KPX F a -25 -KPX F aacute -25 -KPX F abreve -25 -KPX F acircumflex -25 -KPX F adieresis -25 -KPX F agrave -25 -KPX F amacron -25 -KPX F aogonek -25 -KPX F aring -25 -KPX F atilde -25 -KPX F comma -92 -KPX F e -25 -KPX F eacute -25 -KPX F ecaron -25 -KPX F ecircumflex -25 -KPX F edieresis -25 -KPX F edotaccent -25 -KPX F egrave -25 -KPX F emacron -25 -KPX F eogonek -25 -KPX F o -25 -KPX F oacute -25 -KPX F ocircumflex -25 -KPX F odieresis -25 -KPX F ograve -25 -KPX F ohungarumlaut -25 -KPX F omacron -25 -KPX F oslash -25 -KPX F otilde -25 -KPX F period -110 -KPX J A -30 -KPX J Aacute -30 -KPX J Abreve -30 -KPX J Acircumflex -30 -KPX J Adieresis -30 -KPX J Agrave -30 -KPX J Amacron -30 -KPX J Aogonek -30 -KPX J Aring -30 -KPX J Atilde -30 -KPX J a -15 -KPX J aacute -15 -KPX J abreve -15 -KPX J acircumflex -15 -KPX J adieresis -15 -KPX J agrave -15 -KPX J amacron -15 -KPX J aogonek -15 -KPX J aring -15 -KPX J atilde -15 -KPX J e -15 -KPX J eacute -15 -KPX J ecaron -15 -KPX J ecircumflex -15 -KPX J edieresis -15 -KPX J edotaccent -15 -KPX J egrave -15 -KPX J emacron -15 -KPX J eogonek -15 -KPX J o -15 -KPX J oacute -15 -KPX J ocircumflex -15 -KPX J odieresis -15 -KPX J ograve -15 -KPX J ohungarumlaut -15 -KPX J omacron -15 -KPX J oslash -15 -KPX J otilde -15 -KPX J period -20 -KPX J u -15 -KPX J uacute -15 -KPX J ucircumflex -15 -KPX J udieresis -15 -KPX J ugrave -15 -KPX J uhungarumlaut -15 -KPX J umacron -15 -KPX J uogonek -15 -KPX J uring -15 -KPX K O -30 -KPX K Oacute -30 -KPX K Ocircumflex -30 -KPX K Odieresis -30 -KPX K Ograve -30 -KPX K Ohungarumlaut -30 -KPX K Omacron -30 -KPX K Oslash -30 -KPX K Otilde -30 -KPX K e -25 -KPX K eacute -25 -KPX K ecaron -25 -KPX K ecircumflex -25 -KPX K edieresis -25 -KPX K edotaccent -25 -KPX K egrave -25 -KPX K emacron -25 -KPX K eogonek -25 -KPX K o -25 -KPX K oacute -25 -KPX K ocircumflex -25 -KPX K odieresis -25 -KPX K ograve -25 -KPX K ohungarumlaut -25 -KPX K omacron -25 -KPX K oslash -25 -KPX K otilde -25 -KPX K u -15 -KPX K uacute -15 -KPX K ucircumflex -15 -KPX K udieresis -15 -KPX K ugrave -15 -KPX K uhungarumlaut -15 -KPX K umacron -15 -KPX K uogonek -15 -KPX K uring -15 -KPX K y -45 -KPX K yacute -45 -KPX K ydieresis -45 -KPX Kcommaaccent O -30 -KPX Kcommaaccent Oacute -30 -KPX Kcommaaccent Ocircumflex -30 -KPX Kcommaaccent Odieresis -30 -KPX Kcommaaccent Ograve -30 -KPX Kcommaaccent Ohungarumlaut -30 -KPX Kcommaaccent Omacron -30 -KPX Kcommaaccent Oslash -30 -KPX Kcommaaccent Otilde -30 -KPX Kcommaaccent e -25 -KPX Kcommaaccent eacute -25 -KPX Kcommaaccent ecaron -25 -KPX Kcommaaccent ecircumflex -25 -KPX Kcommaaccent edieresis -25 -KPX Kcommaaccent edotaccent -25 -KPX Kcommaaccent egrave -25 -KPX Kcommaaccent emacron -25 -KPX Kcommaaccent eogonek -25 -KPX Kcommaaccent o -25 -KPX Kcommaaccent oacute -25 -KPX Kcommaaccent ocircumflex -25 -KPX Kcommaaccent odieresis -25 -KPX Kcommaaccent ograve -25 -KPX Kcommaaccent ohungarumlaut -25 -KPX Kcommaaccent omacron -25 -KPX Kcommaaccent oslash -25 -KPX Kcommaaccent otilde -25 -KPX Kcommaaccent u -15 -KPX Kcommaaccent uacute -15 -KPX Kcommaaccent ucircumflex -15 -KPX Kcommaaccent udieresis -15 -KPX Kcommaaccent ugrave -15 -KPX Kcommaaccent uhungarumlaut -15 -KPX Kcommaaccent umacron -15 -KPX Kcommaaccent uogonek -15 -KPX Kcommaaccent uring -15 -KPX Kcommaaccent y -45 -KPX Kcommaaccent yacute -45 -KPX Kcommaaccent ydieresis -45 -KPX L T -92 -KPX L Tcaron -92 -KPX L Tcommaaccent -92 -KPX L V -92 -KPX L W -92 -KPX L Y -92 -KPX L Yacute -92 -KPX L Ydieresis -92 -KPX L quotedblright -20 -KPX L quoteright -110 -KPX L y -55 -KPX L yacute -55 -KPX L ydieresis -55 -KPX Lacute T -92 -KPX Lacute Tcaron -92 -KPX Lacute Tcommaaccent -92 -KPX Lacute V -92 -KPX Lacute W -92 -KPX Lacute Y -92 -KPX Lacute Yacute -92 -KPX Lacute Ydieresis -92 -KPX Lacute quotedblright -20 -KPX Lacute quoteright -110 -KPX Lacute y -55 -KPX Lacute yacute -55 -KPX Lacute ydieresis -55 -KPX Lcommaaccent T -92 -KPX Lcommaaccent Tcaron -92 -KPX Lcommaaccent Tcommaaccent -92 -KPX Lcommaaccent V -92 -KPX Lcommaaccent W -92 -KPX Lcommaaccent Y -92 -KPX Lcommaaccent Yacute -92 -KPX Lcommaaccent Ydieresis -92 -KPX Lcommaaccent quotedblright -20 -KPX Lcommaaccent quoteright -110 -KPX Lcommaaccent y -55 -KPX Lcommaaccent yacute -55 -KPX Lcommaaccent ydieresis -55 -KPX Lslash T -92 -KPX Lslash Tcaron -92 -KPX Lslash Tcommaaccent -92 -KPX Lslash V -92 -KPX Lslash W -92 -KPX Lslash Y -92 -KPX Lslash Yacute -92 -KPX Lslash Ydieresis -92 -KPX Lslash quotedblright -20 -KPX Lslash quoteright -110 -KPX Lslash y -55 -KPX Lslash yacute -55 -KPX Lslash ydieresis -55 -KPX N A -20 -KPX N Aacute -20 -KPX N Abreve -20 -KPX N Acircumflex -20 -KPX N Adieresis -20 -KPX N Agrave -20 -KPX N Amacron -20 -KPX N Aogonek -20 -KPX N Aring -20 -KPX N Atilde -20 -KPX Nacute A -20 -KPX Nacute Aacute -20 -KPX Nacute Abreve -20 -KPX Nacute Acircumflex -20 -KPX Nacute Adieresis -20 -KPX Nacute Agrave -20 -KPX Nacute Amacron -20 -KPX Nacute Aogonek -20 -KPX Nacute Aring -20 -KPX Nacute Atilde -20 -KPX Ncaron A -20 -KPX Ncaron Aacute -20 -KPX Ncaron Abreve -20 -KPX Ncaron Acircumflex -20 -KPX Ncaron Adieresis -20 -KPX Ncaron Agrave -20 -KPX Ncaron Amacron -20 -KPX Ncaron Aogonek -20 -KPX Ncaron Aring -20 -KPX Ncaron Atilde -20 -KPX Ncommaaccent A -20 -KPX Ncommaaccent Aacute -20 -KPX Ncommaaccent Abreve -20 -KPX Ncommaaccent Acircumflex -20 -KPX Ncommaaccent Adieresis -20 -KPX Ncommaaccent Agrave -20 -KPX Ncommaaccent Amacron -20 -KPX Ncommaaccent Aogonek -20 -KPX Ncommaaccent Aring -20 -KPX Ncommaaccent Atilde -20 -KPX Ntilde A -20 -KPX Ntilde Aacute -20 -KPX Ntilde Abreve -20 -KPX Ntilde Acircumflex -20 -KPX Ntilde Adieresis -20 -KPX Ntilde Agrave -20 -KPX Ntilde Amacron -20 -KPX Ntilde Aogonek -20 -KPX Ntilde Aring -20 -KPX Ntilde Atilde -20 -KPX O A -40 -KPX O Aacute -40 -KPX O Abreve -40 -KPX O Acircumflex -40 -KPX O Adieresis -40 -KPX O Agrave -40 -KPX O Amacron -40 -KPX O Aogonek -40 -KPX O Aring -40 -KPX O Atilde -40 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -50 -KPX O X -40 -KPX O Y -50 -KPX O Yacute -50 -KPX O Ydieresis -50 -KPX Oacute A -40 -KPX Oacute Aacute -40 -KPX Oacute Abreve -40 -KPX Oacute Acircumflex -40 -KPX Oacute Adieresis -40 -KPX Oacute Agrave -40 -KPX Oacute Amacron -40 -KPX Oacute Aogonek -40 -KPX Oacute Aring -40 -KPX Oacute Atilde -40 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -50 -KPX Oacute X -40 -KPX Oacute Y -50 -KPX Oacute Yacute -50 -KPX Oacute Ydieresis -50 -KPX Ocircumflex A -40 -KPX Ocircumflex Aacute -40 -KPX Ocircumflex Abreve -40 -KPX Ocircumflex Acircumflex -40 -KPX Ocircumflex Adieresis -40 -KPX Ocircumflex Agrave -40 -KPX Ocircumflex Amacron -40 -KPX Ocircumflex Aogonek -40 -KPX Ocircumflex Aring -40 -KPX Ocircumflex Atilde -40 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -50 -KPX Ocircumflex X -40 -KPX Ocircumflex Y -50 -KPX Ocircumflex Yacute -50 -KPX Ocircumflex Ydieresis -50 -KPX Odieresis A -40 -KPX Odieresis Aacute -40 -KPX Odieresis Abreve -40 -KPX Odieresis Acircumflex -40 -KPX Odieresis Adieresis -40 -KPX Odieresis Agrave -40 -KPX Odieresis Amacron -40 -KPX Odieresis Aogonek -40 -KPX Odieresis Aring -40 -KPX Odieresis Atilde -40 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -50 -KPX Odieresis X -40 -KPX Odieresis Y -50 -KPX Odieresis Yacute -50 -KPX Odieresis Ydieresis -50 -KPX Ograve A -40 -KPX Ograve Aacute -40 -KPX Ograve Abreve -40 -KPX Ograve Acircumflex -40 -KPX Ograve Adieresis -40 -KPX Ograve Agrave -40 -KPX Ograve Amacron -40 -KPX Ograve Aogonek -40 -KPX Ograve Aring -40 -KPX Ograve Atilde -40 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -50 -KPX Ograve X -40 -KPX Ograve Y -50 -KPX Ograve Yacute -50 -KPX Ograve Ydieresis -50 -KPX Ohungarumlaut A -40 -KPX Ohungarumlaut Aacute -40 -KPX Ohungarumlaut Abreve -40 -KPX Ohungarumlaut Acircumflex -40 -KPX Ohungarumlaut Adieresis -40 -KPX Ohungarumlaut Agrave -40 -KPX Ohungarumlaut Amacron -40 -KPX Ohungarumlaut Aogonek -40 -KPX Ohungarumlaut Aring -40 -KPX Ohungarumlaut Atilde -40 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -50 -KPX Ohungarumlaut X -40 -KPX Ohungarumlaut Y -50 -KPX Ohungarumlaut Yacute -50 -KPX Ohungarumlaut Ydieresis -50 -KPX Omacron A -40 -KPX Omacron Aacute -40 -KPX Omacron Abreve -40 -KPX Omacron Acircumflex -40 -KPX Omacron Adieresis -40 -KPX Omacron Agrave -40 -KPX Omacron Amacron -40 -KPX Omacron Aogonek -40 -KPX Omacron Aring -40 -KPX Omacron Atilde -40 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -50 -KPX Omacron X -40 -KPX Omacron Y -50 -KPX Omacron Yacute -50 -KPX Omacron Ydieresis -50 -KPX Oslash A -40 -KPX Oslash Aacute -40 -KPX Oslash Abreve -40 -KPX Oslash Acircumflex -40 -KPX Oslash Adieresis -40 -KPX Oslash Agrave -40 -KPX Oslash Amacron -40 -KPX Oslash Aogonek -40 -KPX Oslash Aring -40 -KPX Oslash Atilde -40 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -50 -KPX Oslash X -40 -KPX Oslash Y -50 -KPX Oslash Yacute -50 -KPX Oslash Ydieresis -50 -KPX Otilde A -40 -KPX Otilde Aacute -40 -KPX Otilde Abreve -40 -KPX Otilde Acircumflex -40 -KPX Otilde Adieresis -40 -KPX Otilde Agrave -40 -KPX Otilde Amacron -40 -KPX Otilde Aogonek -40 -KPX Otilde Aring -40 -KPX Otilde Atilde -40 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -50 -KPX Otilde X -40 -KPX Otilde Y -50 -KPX Otilde Yacute -50 -KPX Otilde Ydieresis -50 -KPX P A -74 -KPX P Aacute -74 -KPX P Abreve -74 -KPX P Acircumflex -74 -KPX P Adieresis -74 -KPX P Agrave -74 -KPX P Amacron -74 -KPX P Aogonek -74 -KPX P Aring -74 -KPX P Atilde -74 -KPX P a -10 -KPX P aacute -10 -KPX P abreve -10 -KPX P acircumflex -10 -KPX P adieresis -10 -KPX P agrave -10 -KPX P amacron -10 -KPX P aogonek -10 -KPX P aring -10 -KPX P atilde -10 -KPX P comma -92 -KPX P e -20 -KPX P eacute -20 -KPX P ecaron -20 -KPX P ecircumflex -20 -KPX P edieresis -20 -KPX P edotaccent -20 -KPX P egrave -20 -KPX P emacron -20 -KPX P eogonek -20 -KPX P o -20 -KPX P oacute -20 -KPX P ocircumflex -20 -KPX P odieresis -20 -KPX P ograve -20 -KPX P ohungarumlaut -20 -KPX P omacron -20 -KPX P oslash -20 -KPX P otilde -20 -KPX P period -110 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX Q period -20 -KPX R O -30 -KPX R Oacute -30 -KPX R Ocircumflex -30 -KPX R Odieresis -30 -KPX R Ograve -30 -KPX R Ohungarumlaut -30 -KPX R Omacron -30 -KPX R Oslash -30 -KPX R Otilde -30 -KPX R T -40 -KPX R Tcaron -40 -KPX R Tcommaaccent -40 -KPX R U -30 -KPX R Uacute -30 -KPX R Ucircumflex -30 -KPX R Udieresis -30 -KPX R Ugrave -30 -KPX R Uhungarumlaut -30 -KPX R Umacron -30 -KPX R Uogonek -30 -KPX R Uring -30 -KPX R V -55 -KPX R W -35 -KPX R Y -35 -KPX R Yacute -35 -KPX R Ydieresis -35 -KPX Racute O -30 -KPX Racute Oacute -30 -KPX Racute Ocircumflex -30 -KPX Racute Odieresis -30 -KPX Racute Ograve -30 -KPX Racute Ohungarumlaut -30 -KPX Racute Omacron -30 -KPX Racute Oslash -30 -KPX Racute Otilde -30 -KPX Racute T -40 -KPX Racute Tcaron -40 -KPX Racute Tcommaaccent -40 -KPX Racute U -30 -KPX Racute Uacute -30 -KPX Racute Ucircumflex -30 -KPX Racute Udieresis -30 -KPX Racute Ugrave -30 -KPX Racute Uhungarumlaut -30 -KPX Racute Umacron -30 -KPX Racute Uogonek -30 -KPX Racute Uring -30 -KPX Racute V -55 -KPX Racute W -35 -KPX Racute Y -35 -KPX Racute Yacute -35 -KPX Racute Ydieresis -35 -KPX Rcaron O -30 -KPX Rcaron Oacute -30 -KPX Rcaron Ocircumflex -30 -KPX Rcaron Odieresis -30 -KPX Rcaron Ograve -30 -KPX Rcaron Ohungarumlaut -30 -KPX Rcaron Omacron -30 -KPX Rcaron Oslash -30 -KPX Rcaron Otilde -30 -KPX Rcaron T -40 -KPX Rcaron Tcaron -40 -KPX Rcaron Tcommaaccent -40 -KPX Rcaron U -30 -KPX Rcaron Uacute -30 -KPX Rcaron Ucircumflex -30 -KPX Rcaron Udieresis -30 -KPX Rcaron Ugrave -30 -KPX Rcaron Uhungarumlaut -30 -KPX Rcaron Umacron -30 -KPX Rcaron Uogonek -30 -KPX Rcaron Uring -30 -KPX Rcaron V -55 -KPX Rcaron W -35 -KPX Rcaron Y -35 -KPX Rcaron Yacute -35 -KPX Rcaron Ydieresis -35 -KPX Rcommaaccent O -30 -KPX Rcommaaccent Oacute -30 -KPX Rcommaaccent Ocircumflex -30 -KPX Rcommaaccent Odieresis -30 -KPX Rcommaaccent Ograve -30 -KPX Rcommaaccent Ohungarumlaut -30 -KPX Rcommaaccent Omacron -30 -KPX Rcommaaccent Oslash -30 -KPX Rcommaaccent Otilde -30 -KPX Rcommaaccent T -40 -KPX Rcommaaccent Tcaron -40 -KPX Rcommaaccent Tcommaaccent -40 -KPX Rcommaaccent U -30 -KPX Rcommaaccent Uacute -30 -KPX Rcommaaccent Ucircumflex -30 -KPX Rcommaaccent Udieresis -30 -KPX Rcommaaccent Ugrave -30 -KPX Rcommaaccent Uhungarumlaut -30 -KPX Rcommaaccent Umacron -30 -KPX Rcommaaccent Uogonek -30 -KPX Rcommaaccent Uring -30 -KPX Rcommaaccent V -55 -KPX Rcommaaccent W -35 -KPX Rcommaaccent Y -35 -KPX Rcommaaccent Yacute -35 -KPX Rcommaaccent Ydieresis -35 -KPX T A -90 -KPX T Aacute -90 -KPX T Abreve -90 -KPX T Acircumflex -90 -KPX T Adieresis -90 -KPX T Agrave -90 -KPX T Amacron -90 -KPX T Aogonek -90 -KPX T Aring -90 -KPX T Atilde -90 -KPX T O -18 -KPX T Oacute -18 -KPX T Ocircumflex -18 -KPX T Odieresis -18 -KPX T Ograve -18 -KPX T Ohungarumlaut -18 -KPX T Omacron -18 -KPX T Oslash -18 -KPX T Otilde -18 -KPX T a -92 -KPX T aacute -92 -KPX T abreve -52 -KPX T acircumflex -52 -KPX T adieresis -52 -KPX T agrave -52 -KPX T amacron -52 -KPX T aogonek -92 -KPX T aring -92 -KPX T atilde -52 -KPX T colon -74 -KPX T comma -74 -KPX T e -92 -KPX T eacute -92 -KPX T ecaron -92 -KPX T ecircumflex -92 -KPX T edieresis -52 -KPX T edotaccent -92 -KPX T egrave -52 -KPX T emacron -52 -KPX T eogonek -92 -KPX T hyphen -92 -KPX T i -18 -KPX T iacute -18 -KPX T iogonek -18 -KPX T o -92 -KPX T oacute -92 -KPX T ocircumflex -92 -KPX T odieresis -92 -KPX T ograve -92 -KPX T ohungarumlaut -92 -KPX T omacron -92 -KPX T oslash -92 -KPX T otilde -92 -KPX T period -90 -KPX T r -74 -KPX T racute -74 -KPX T rcaron -74 -KPX T rcommaaccent -74 -KPX T semicolon -74 -KPX T u -92 -KPX T uacute -92 -KPX T ucircumflex -92 -KPX T udieresis -92 -KPX T ugrave -92 -KPX T uhungarumlaut -92 -KPX T umacron -92 -KPX T uogonek -92 -KPX T uring -92 -KPX T w -74 -KPX T y -34 -KPX T yacute -34 -KPX T ydieresis -34 -KPX Tcaron A -90 -KPX Tcaron Aacute -90 -KPX Tcaron Abreve -90 -KPX Tcaron Acircumflex -90 -KPX Tcaron Adieresis -90 -KPX Tcaron Agrave -90 -KPX Tcaron Amacron -90 -KPX Tcaron Aogonek -90 -KPX Tcaron Aring -90 -KPX Tcaron Atilde -90 -KPX Tcaron O -18 -KPX Tcaron Oacute -18 -KPX Tcaron Ocircumflex -18 -KPX Tcaron Odieresis -18 -KPX Tcaron Ograve -18 -KPX Tcaron Ohungarumlaut -18 -KPX Tcaron Omacron -18 -KPX Tcaron Oslash -18 -KPX Tcaron Otilde -18 -KPX Tcaron a -92 -KPX Tcaron aacute -92 -KPX Tcaron abreve -52 -KPX Tcaron acircumflex -52 -KPX Tcaron adieresis -52 -KPX Tcaron agrave -52 -KPX Tcaron amacron -52 -KPX Tcaron aogonek -92 -KPX Tcaron aring -92 -KPX Tcaron atilde -52 -KPX Tcaron colon -74 -KPX Tcaron comma -74 -KPX Tcaron e -92 -KPX Tcaron eacute -92 -KPX Tcaron ecaron -92 -KPX Tcaron ecircumflex -92 -KPX Tcaron edieresis -52 -KPX Tcaron edotaccent -92 -KPX Tcaron egrave -52 -KPX Tcaron emacron -52 -KPX Tcaron eogonek -92 -KPX Tcaron hyphen -92 -KPX Tcaron i -18 -KPX Tcaron iacute -18 -KPX Tcaron iogonek -18 -KPX Tcaron o -92 -KPX Tcaron oacute -92 -KPX Tcaron ocircumflex -92 -KPX Tcaron odieresis -92 -KPX Tcaron ograve -92 -KPX Tcaron ohungarumlaut -92 -KPX Tcaron omacron -92 -KPX Tcaron oslash -92 -KPX Tcaron otilde -92 -KPX Tcaron period -90 -KPX Tcaron r -74 -KPX Tcaron racute -74 -KPX Tcaron rcaron -74 -KPX Tcaron rcommaaccent -74 -KPX Tcaron semicolon -74 -KPX Tcaron u -92 -KPX Tcaron uacute -92 -KPX Tcaron ucircumflex -92 -KPX Tcaron udieresis -92 -KPX Tcaron ugrave -92 -KPX Tcaron uhungarumlaut -92 -KPX Tcaron umacron -92 -KPX Tcaron uogonek -92 -KPX Tcaron uring -92 -KPX Tcaron w -74 -KPX Tcaron y -34 -KPX Tcaron yacute -34 -KPX Tcaron ydieresis -34 -KPX Tcommaaccent A -90 -KPX Tcommaaccent Aacute -90 -KPX Tcommaaccent Abreve -90 -KPX Tcommaaccent Acircumflex -90 -KPX Tcommaaccent Adieresis -90 -KPX Tcommaaccent Agrave -90 -KPX Tcommaaccent Amacron -90 -KPX Tcommaaccent Aogonek -90 -KPX Tcommaaccent Aring -90 -KPX Tcommaaccent Atilde -90 -KPX Tcommaaccent O -18 -KPX Tcommaaccent Oacute -18 -KPX Tcommaaccent Ocircumflex -18 -KPX Tcommaaccent Odieresis -18 -KPX Tcommaaccent Ograve -18 -KPX Tcommaaccent Ohungarumlaut -18 -KPX Tcommaaccent Omacron -18 -KPX Tcommaaccent Oslash -18 -KPX Tcommaaccent Otilde -18 -KPX Tcommaaccent a -92 -KPX Tcommaaccent aacute -92 -KPX Tcommaaccent abreve -52 -KPX Tcommaaccent acircumflex -52 -KPX Tcommaaccent adieresis -52 -KPX Tcommaaccent agrave -52 -KPX Tcommaaccent amacron -52 -KPX Tcommaaccent aogonek -92 -KPX Tcommaaccent aring -92 -KPX Tcommaaccent atilde -52 -KPX Tcommaaccent colon -74 -KPX Tcommaaccent comma -74 -KPX Tcommaaccent e -92 -KPX Tcommaaccent eacute -92 -KPX Tcommaaccent ecaron -92 -KPX Tcommaaccent ecircumflex -92 -KPX Tcommaaccent edieresis -52 -KPX Tcommaaccent edotaccent -92 -KPX Tcommaaccent egrave -52 -KPX Tcommaaccent emacron -52 -KPX Tcommaaccent eogonek -92 -KPX Tcommaaccent hyphen -92 -KPX Tcommaaccent i -18 -KPX Tcommaaccent iacute -18 -KPX Tcommaaccent iogonek -18 -KPX Tcommaaccent o -92 -KPX Tcommaaccent oacute -92 -KPX Tcommaaccent ocircumflex -92 -KPX Tcommaaccent odieresis -92 -KPX Tcommaaccent ograve -92 -KPX Tcommaaccent ohungarumlaut -92 -KPX Tcommaaccent omacron -92 -KPX Tcommaaccent oslash -92 -KPX Tcommaaccent otilde -92 -KPX Tcommaaccent period -90 -KPX Tcommaaccent r -74 -KPX Tcommaaccent racute -74 -KPX Tcommaaccent rcaron -74 -KPX Tcommaaccent rcommaaccent -74 -KPX Tcommaaccent semicolon -74 -KPX Tcommaaccent u -92 -KPX Tcommaaccent uacute -92 -KPX Tcommaaccent ucircumflex -92 -KPX Tcommaaccent udieresis -92 -KPX Tcommaaccent ugrave -92 -KPX Tcommaaccent uhungarumlaut -92 -KPX Tcommaaccent umacron -92 -KPX Tcommaaccent uogonek -92 -KPX Tcommaaccent uring -92 -KPX Tcommaaccent w -74 -KPX Tcommaaccent y -34 -KPX Tcommaaccent yacute -34 -KPX Tcommaaccent ydieresis -34 -KPX U A -60 -KPX U Aacute -60 -KPX U Abreve -60 -KPX U Acircumflex -60 -KPX U Adieresis -60 -KPX U Agrave -60 -KPX U Amacron -60 -KPX U Aogonek -60 -KPX U Aring -60 -KPX U Atilde -60 -KPX U comma -50 -KPX U period -50 -KPX Uacute A -60 -KPX Uacute Aacute -60 -KPX Uacute Abreve -60 -KPX Uacute Acircumflex -60 -KPX Uacute Adieresis -60 -KPX Uacute Agrave -60 -KPX Uacute Amacron -60 -KPX Uacute Aogonek -60 -KPX Uacute Aring -60 -KPX Uacute Atilde -60 -KPX Uacute comma -50 -KPX Uacute period -50 -KPX Ucircumflex A -60 -KPX Ucircumflex Aacute -60 -KPX Ucircumflex Abreve -60 -KPX Ucircumflex Acircumflex -60 -KPX Ucircumflex Adieresis -60 -KPX Ucircumflex Agrave -60 -KPX Ucircumflex Amacron -60 -KPX Ucircumflex Aogonek -60 -KPX Ucircumflex Aring -60 -KPX Ucircumflex Atilde -60 -KPX Ucircumflex comma -50 -KPX Ucircumflex period -50 -KPX Udieresis A -60 -KPX Udieresis Aacute -60 -KPX Udieresis Abreve -60 -KPX Udieresis Acircumflex -60 -KPX Udieresis Adieresis -60 -KPX Udieresis Agrave -60 -KPX Udieresis Amacron -60 -KPX Udieresis Aogonek -60 -KPX Udieresis Aring -60 -KPX Udieresis Atilde -60 -KPX Udieresis comma -50 -KPX Udieresis period -50 -KPX Ugrave A -60 -KPX Ugrave Aacute -60 -KPX Ugrave Abreve -60 -KPX Ugrave Acircumflex -60 -KPX Ugrave Adieresis -60 -KPX Ugrave Agrave -60 -KPX Ugrave Amacron -60 -KPX Ugrave Aogonek -60 -KPX Ugrave Aring -60 -KPX Ugrave Atilde -60 -KPX Ugrave comma -50 -KPX Ugrave period -50 -KPX Uhungarumlaut A -60 -KPX Uhungarumlaut Aacute -60 -KPX Uhungarumlaut Abreve -60 -KPX Uhungarumlaut Acircumflex -60 -KPX Uhungarumlaut Adieresis -60 -KPX Uhungarumlaut Agrave -60 -KPX Uhungarumlaut Amacron -60 -KPX Uhungarumlaut Aogonek -60 -KPX Uhungarumlaut Aring -60 -KPX Uhungarumlaut Atilde -60 -KPX Uhungarumlaut comma -50 -KPX Uhungarumlaut period -50 -KPX Umacron A -60 -KPX Umacron Aacute -60 -KPX Umacron Abreve -60 -KPX Umacron Acircumflex -60 -KPX Umacron Adieresis -60 -KPX Umacron Agrave -60 -KPX Umacron Amacron -60 -KPX Umacron Aogonek -60 -KPX Umacron Aring -60 -KPX Umacron Atilde -60 -KPX Umacron comma -50 -KPX Umacron period -50 -KPX Uogonek A -60 -KPX Uogonek Aacute -60 -KPX Uogonek Abreve -60 -KPX Uogonek Acircumflex -60 -KPX Uogonek Adieresis -60 -KPX Uogonek Agrave -60 -KPX Uogonek Amacron -60 -KPX Uogonek Aogonek -60 -KPX Uogonek Aring -60 -KPX Uogonek Atilde -60 -KPX Uogonek comma -50 -KPX Uogonek period -50 -KPX Uring A -60 -KPX Uring Aacute -60 -KPX Uring Abreve -60 -KPX Uring Acircumflex -60 -KPX Uring Adieresis -60 -KPX Uring Agrave -60 -KPX Uring Amacron -60 -KPX Uring Aogonek -60 -KPX Uring Aring -60 -KPX Uring Atilde -60 -KPX Uring comma -50 -KPX Uring period -50 -KPX V A -135 -KPX V Aacute -135 -KPX V Abreve -135 -KPX V Acircumflex -135 -KPX V Adieresis -135 -KPX V Agrave -135 -KPX V Amacron -135 -KPX V Aogonek -135 -KPX V Aring -135 -KPX V Atilde -135 -KPX V G -30 -KPX V Gbreve -30 -KPX V Gcommaaccent -30 -KPX V O -45 -KPX V Oacute -45 -KPX V Ocircumflex -45 -KPX V Odieresis -45 -KPX V Ograve -45 -KPX V Ohungarumlaut -45 -KPX V Omacron -45 -KPX V Oslash -45 -KPX V Otilde -45 -KPX V a -92 -KPX V aacute -92 -KPX V abreve -92 -KPX V acircumflex -92 -KPX V adieresis -92 -KPX V agrave -92 -KPX V amacron -92 -KPX V aogonek -92 -KPX V aring -92 -KPX V atilde -92 -KPX V colon -92 -KPX V comma -129 -KPX V e -100 -KPX V eacute -100 -KPX V ecaron -100 -KPX V ecircumflex -100 -KPX V edieresis -100 -KPX V edotaccent -100 -KPX V egrave -100 -KPX V emacron -100 -KPX V eogonek -100 -KPX V hyphen -74 -KPX V i -37 -KPX V iacute -37 -KPX V icircumflex -37 -KPX V idieresis -37 -KPX V igrave -37 -KPX V imacron -37 -KPX V iogonek -37 -KPX V o -100 -KPX V oacute -100 -KPX V ocircumflex -100 -KPX V odieresis -100 -KPX V ograve -100 -KPX V ohungarumlaut -100 -KPX V omacron -100 -KPX V oslash -100 -KPX V otilde -100 -KPX V period -145 -KPX V semicolon -92 -KPX V u -92 -KPX V uacute -92 -KPX V ucircumflex -92 -KPX V udieresis -92 -KPX V ugrave -92 -KPX V uhungarumlaut -92 -KPX V umacron -92 -KPX V uogonek -92 -KPX V uring -92 -KPX W A -120 -KPX W Aacute -120 -KPX W Abreve -120 -KPX W Acircumflex -120 -KPX W Adieresis -120 -KPX W Agrave -120 -KPX W Amacron -120 -KPX W Aogonek -120 -KPX W Aring -120 -KPX W Atilde -120 -KPX W O -10 -KPX W Oacute -10 -KPX W Ocircumflex -10 -KPX W Odieresis -10 -KPX W Ograve -10 -KPX W Ohungarumlaut -10 -KPX W Omacron -10 -KPX W Oslash -10 -KPX W Otilde -10 -KPX W a -65 -KPX W aacute -65 -KPX W abreve -65 -KPX W acircumflex -65 -KPX W adieresis -65 -KPX W agrave -65 -KPX W amacron -65 -KPX W aogonek -65 -KPX W aring -65 -KPX W atilde -65 -KPX W colon -55 -KPX W comma -92 -KPX W e -65 -KPX W eacute -65 -KPX W ecaron -65 -KPX W ecircumflex -65 -KPX W edieresis -65 -KPX W edotaccent -65 -KPX W egrave -65 -KPX W emacron -65 -KPX W eogonek -65 -KPX W hyphen -37 -KPX W i -18 -KPX W iacute -18 -KPX W iogonek -18 -KPX W o -75 -KPX W oacute -75 -KPX W ocircumflex -75 -KPX W odieresis -75 -KPX W ograve -75 -KPX W ohungarumlaut -75 -KPX W omacron -75 -KPX W oslash -75 -KPX W otilde -75 -KPX W period -92 -KPX W semicolon -55 -KPX W u -50 -KPX W uacute -50 -KPX W ucircumflex -50 -KPX W udieresis -50 -KPX W ugrave -50 -KPX W uhungarumlaut -50 -KPX W umacron -50 -KPX W uogonek -50 -KPX W uring -50 -KPX W y -60 -KPX W yacute -60 -KPX W ydieresis -60 -KPX Y A -110 -KPX Y Aacute -110 -KPX Y Abreve -110 -KPX Y Acircumflex -110 -KPX Y Adieresis -110 -KPX Y Agrave -110 -KPX Y Amacron -110 -KPX Y Aogonek -110 -KPX Y Aring -110 -KPX Y Atilde -110 -KPX Y O -35 -KPX Y Oacute -35 -KPX Y Ocircumflex -35 -KPX Y Odieresis -35 -KPX Y Ograve -35 -KPX Y Ohungarumlaut -35 -KPX Y Omacron -35 -KPX Y Oslash -35 -KPX Y Otilde -35 -KPX Y a -85 -KPX Y aacute -85 -KPX Y abreve -85 -KPX Y acircumflex -85 -KPX Y adieresis -85 -KPX Y agrave -85 -KPX Y amacron -85 -KPX Y aogonek -85 -KPX Y aring -85 -KPX Y atilde -85 -KPX Y colon -92 -KPX Y comma -92 -KPX Y e -111 -KPX Y eacute -111 -KPX Y ecaron -111 -KPX Y ecircumflex -111 -KPX Y edieresis -71 -KPX Y edotaccent -111 -KPX Y egrave -71 -KPX Y emacron -71 -KPX Y eogonek -111 -KPX Y hyphen -92 -KPX Y i -37 -KPX Y iacute -37 -KPX Y iogonek -37 -KPX Y o -111 -KPX Y oacute -111 -KPX Y ocircumflex -111 -KPX Y odieresis -111 -KPX Y ograve -111 -KPX Y ohungarumlaut -111 -KPX Y omacron -111 -KPX Y oslash -111 -KPX Y otilde -111 -KPX Y period -92 -KPX Y semicolon -92 -KPX Y u -92 -KPX Y uacute -92 -KPX Y ucircumflex -92 -KPX Y udieresis -92 -KPX Y ugrave -92 -KPX Y uhungarumlaut -92 -KPX Y umacron -92 -KPX Y uogonek -92 -KPX Y uring -92 -KPX Yacute A -110 -KPX Yacute Aacute -110 -KPX Yacute Abreve -110 -KPX Yacute Acircumflex -110 -KPX Yacute Adieresis -110 -KPX Yacute Agrave -110 -KPX Yacute Amacron -110 -KPX Yacute Aogonek -110 -KPX Yacute Aring -110 -KPX Yacute Atilde -110 -KPX Yacute O -35 -KPX Yacute Oacute -35 -KPX Yacute Ocircumflex -35 -KPX Yacute Odieresis -35 -KPX Yacute Ograve -35 -KPX Yacute Ohungarumlaut -35 -KPX Yacute Omacron -35 -KPX Yacute Oslash -35 -KPX Yacute Otilde -35 -KPX Yacute a -85 -KPX Yacute aacute -85 -KPX Yacute abreve -85 -KPX Yacute acircumflex -85 -KPX Yacute adieresis -85 -KPX Yacute agrave -85 -KPX Yacute amacron -85 -KPX Yacute aogonek -85 -KPX Yacute aring -85 -KPX Yacute atilde -85 -KPX Yacute colon -92 -KPX Yacute comma -92 -KPX Yacute e -111 -KPX Yacute eacute -111 -KPX Yacute ecaron -111 -KPX Yacute ecircumflex -111 -KPX Yacute edieresis -71 -KPX Yacute edotaccent -111 -KPX Yacute egrave -71 -KPX Yacute emacron -71 -KPX Yacute eogonek -111 -KPX Yacute hyphen -92 -KPX Yacute i -37 -KPX Yacute iacute -37 -KPX Yacute iogonek -37 -KPX Yacute o -111 -KPX Yacute oacute -111 -KPX Yacute ocircumflex -111 -KPX Yacute odieresis -111 -KPX Yacute ograve -111 -KPX Yacute ohungarumlaut -111 -KPX Yacute omacron -111 -KPX Yacute oslash -111 -KPX Yacute otilde -111 -KPX Yacute period -92 -KPX Yacute semicolon -92 -KPX Yacute u -92 -KPX Yacute uacute -92 -KPX Yacute ucircumflex -92 -KPX Yacute udieresis -92 -KPX Yacute ugrave -92 -KPX Yacute uhungarumlaut -92 -KPX Yacute umacron -92 -KPX Yacute uogonek -92 -KPX Yacute uring -92 -KPX Ydieresis A -110 -KPX Ydieresis Aacute -110 -KPX Ydieresis Abreve -110 -KPX Ydieresis Acircumflex -110 -KPX Ydieresis Adieresis -110 -KPX Ydieresis Agrave -110 -KPX Ydieresis Amacron -110 -KPX Ydieresis Aogonek -110 -KPX Ydieresis Aring -110 -KPX Ydieresis Atilde -110 -KPX Ydieresis O -35 -KPX Ydieresis Oacute -35 -KPX Ydieresis Ocircumflex -35 -KPX Ydieresis Odieresis -35 -KPX Ydieresis Ograve -35 -KPX Ydieresis Ohungarumlaut -35 -KPX Ydieresis Omacron -35 -KPX Ydieresis Oslash -35 -KPX Ydieresis Otilde -35 -KPX Ydieresis a -85 -KPX Ydieresis aacute -85 -KPX Ydieresis abreve -85 -KPX Ydieresis acircumflex -85 -KPX Ydieresis adieresis -85 -KPX Ydieresis agrave -85 -KPX Ydieresis amacron -85 -KPX Ydieresis aogonek -85 -KPX Ydieresis aring -85 -KPX Ydieresis atilde -85 -KPX Ydieresis colon -92 -KPX Ydieresis comma -92 -KPX Ydieresis e -111 -KPX Ydieresis eacute -111 -KPX Ydieresis ecaron -111 -KPX Ydieresis ecircumflex -111 -KPX Ydieresis edieresis -71 -KPX Ydieresis edotaccent -111 -KPX Ydieresis egrave -71 -KPX Ydieresis emacron -71 -KPX Ydieresis eogonek -111 -KPX Ydieresis hyphen -92 -KPX Ydieresis i -37 -KPX Ydieresis iacute -37 -KPX Ydieresis iogonek -37 -KPX Ydieresis o -111 -KPX Ydieresis oacute -111 -KPX Ydieresis ocircumflex -111 -KPX Ydieresis odieresis -111 -KPX Ydieresis ograve -111 -KPX Ydieresis ohungarumlaut -111 -KPX Ydieresis omacron -111 -KPX Ydieresis oslash -111 -KPX Ydieresis otilde -111 -KPX Ydieresis period -92 -KPX Ydieresis semicolon -92 -KPX Ydieresis u -92 -KPX Ydieresis uacute -92 -KPX Ydieresis ucircumflex -92 -KPX Ydieresis udieresis -92 -KPX Ydieresis ugrave -92 -KPX Ydieresis uhungarumlaut -92 -KPX Ydieresis umacron -92 -KPX Ydieresis uogonek -92 -KPX Ydieresis uring -92 -KPX a v -25 -KPX aacute v -25 -KPX abreve v -25 -KPX acircumflex v -25 -KPX adieresis v -25 -KPX agrave v -25 -KPX amacron v -25 -KPX aogonek v -25 -KPX aring v -25 -KPX atilde v -25 -KPX b b -10 -KPX b period -40 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX b v -15 -KPX comma quotedblright -45 -KPX comma quoteright -55 -KPX d w -15 -KPX dcroat w -15 -KPX e v -15 -KPX eacute v -15 -KPX ecaron v -15 -KPX ecircumflex v -15 -KPX edieresis v -15 -KPX edotaccent v -15 -KPX egrave v -15 -KPX emacron v -15 -KPX eogonek v -15 -KPX f comma -15 -KPX f dotlessi -35 -KPX f i -25 -KPX f o -25 -KPX f oacute -25 -KPX f ocircumflex -25 -KPX f odieresis -25 -KPX f ograve -25 -KPX f ohungarumlaut -25 -KPX f omacron -25 -KPX f oslash -25 -KPX f otilde -25 -KPX f period -15 -KPX f quotedblright 50 -KPX f quoteright 55 -KPX g period -15 -KPX gbreve period -15 -KPX gcommaaccent period -15 -KPX h y -15 -KPX h yacute -15 -KPX h ydieresis -15 -KPX i v -10 -KPX iacute v -10 -KPX icircumflex v -10 -KPX idieresis v -10 -KPX igrave v -10 -KPX imacron v -10 -KPX iogonek v -10 -KPX k e -10 -KPX k eacute -10 -KPX k ecaron -10 -KPX k ecircumflex -10 -KPX k edieresis -10 -KPX k edotaccent -10 -KPX k egrave -10 -KPX k emacron -10 -KPX k eogonek -10 -KPX k o -15 -KPX k oacute -15 -KPX k ocircumflex -15 -KPX k odieresis -15 -KPX k ograve -15 -KPX k ohungarumlaut -15 -KPX k omacron -15 -KPX k oslash -15 -KPX k otilde -15 -KPX k y -15 -KPX k yacute -15 -KPX k ydieresis -15 -KPX kcommaaccent e -10 -KPX kcommaaccent eacute -10 -KPX kcommaaccent ecaron -10 -KPX kcommaaccent ecircumflex -10 -KPX kcommaaccent edieresis -10 -KPX kcommaaccent edotaccent -10 -KPX kcommaaccent egrave -10 -KPX kcommaaccent emacron -10 -KPX kcommaaccent eogonek -10 -KPX kcommaaccent o -15 -KPX kcommaaccent oacute -15 -KPX kcommaaccent ocircumflex -15 -KPX kcommaaccent odieresis -15 -KPX kcommaaccent ograve -15 -KPX kcommaaccent ohungarumlaut -15 -KPX kcommaaccent omacron -15 -KPX kcommaaccent oslash -15 -KPX kcommaaccent otilde -15 -KPX kcommaaccent y -15 -KPX kcommaaccent yacute -15 -KPX kcommaaccent ydieresis -15 -KPX n v -40 -KPX nacute v -40 -KPX ncaron v -40 -KPX ncommaaccent v -40 -KPX ntilde v -40 -KPX o v -10 -KPX o w -10 -KPX oacute v -10 -KPX oacute w -10 -KPX ocircumflex v -10 -KPX ocircumflex w -10 -KPX odieresis v -10 -KPX odieresis w -10 -KPX ograve v -10 -KPX ograve w -10 -KPX ohungarumlaut v -10 -KPX ohungarumlaut w -10 -KPX omacron v -10 -KPX omacron w -10 -KPX oslash v -10 -KPX oslash w -10 -KPX otilde v -10 -KPX otilde w -10 -KPX period quotedblright -55 -KPX period quoteright -55 -KPX quotedblleft A -10 -KPX quotedblleft Aacute -10 -KPX quotedblleft Abreve -10 -KPX quotedblleft Acircumflex -10 -KPX quotedblleft Adieresis -10 -KPX quotedblleft Agrave -10 -KPX quotedblleft Amacron -10 -KPX quotedblleft Aogonek -10 -KPX quotedblleft Aring -10 -KPX quotedblleft Atilde -10 -KPX quoteleft A -10 -KPX quoteleft Aacute -10 -KPX quoteleft Abreve -10 -KPX quoteleft Acircumflex -10 -KPX quoteleft Adieresis -10 -KPX quoteleft Agrave -10 -KPX quoteleft Amacron -10 -KPX quoteleft Aogonek -10 -KPX quoteleft Aring -10 -KPX quoteleft Atilde -10 -KPX quoteleft quoteleft -63 -KPX quoteright d -20 -KPX quoteright dcroat -20 -KPX quoteright quoteright -63 -KPX quoteright r -20 -KPX quoteright racute -20 -KPX quoteright rcaron -20 -KPX quoteright rcommaaccent -20 -KPX quoteright s -37 -KPX quoteright sacute -37 -KPX quoteright scaron -37 -KPX quoteright scedilla -37 -KPX quoteright scommaaccent -37 -KPX quoteright space -74 -KPX quoteright v -20 -KPX r c -18 -KPX r cacute -18 -KPX r ccaron -18 -KPX r ccedilla -18 -KPX r comma -92 -KPX r e -18 -KPX r eacute -18 -KPX r ecaron -18 -KPX r ecircumflex -18 -KPX r edieresis -18 -KPX r edotaccent -18 -KPX r egrave -18 -KPX r emacron -18 -KPX r eogonek -18 -KPX r g -10 -KPX r gbreve -10 -KPX r gcommaaccent -10 -KPX r hyphen -37 -KPX r n -15 -KPX r nacute -15 -KPX r ncaron -15 -KPX r ncommaaccent -15 -KPX r ntilde -15 -KPX r o -18 -KPX r oacute -18 -KPX r ocircumflex -18 -KPX r odieresis -18 -KPX r ograve -18 -KPX r ohungarumlaut -18 -KPX r omacron -18 -KPX r oslash -18 -KPX r otilde -18 -KPX r p -10 -KPX r period -100 -KPX r q -18 -KPX r v -10 -KPX racute c -18 -KPX racute cacute -18 -KPX racute ccaron -18 -KPX racute ccedilla -18 -KPX racute comma -92 -KPX racute e -18 -KPX racute eacute -18 -KPX racute ecaron -18 -KPX racute ecircumflex -18 -KPX racute edieresis -18 -KPX racute edotaccent -18 -KPX racute egrave -18 -KPX racute emacron -18 -KPX racute eogonek -18 -KPX racute g -10 -KPX racute gbreve -10 -KPX racute gcommaaccent -10 -KPX racute hyphen -37 -KPX racute n -15 -KPX racute nacute -15 -KPX racute ncaron -15 -KPX racute ncommaaccent -15 -KPX racute ntilde -15 -KPX racute o -18 -KPX racute oacute -18 -KPX racute ocircumflex -18 -KPX racute odieresis -18 -KPX racute ograve -18 -KPX racute ohungarumlaut -18 -KPX racute omacron -18 -KPX racute oslash -18 -KPX racute otilde -18 -KPX racute p -10 -KPX racute period -100 -KPX racute q -18 -KPX racute v -10 -KPX rcaron c -18 -KPX rcaron cacute -18 -KPX rcaron ccaron -18 -KPX rcaron ccedilla -18 -KPX rcaron comma -92 -KPX rcaron e -18 -KPX rcaron eacute -18 -KPX rcaron ecaron -18 -KPX rcaron ecircumflex -18 -KPX rcaron edieresis -18 -KPX rcaron edotaccent -18 -KPX rcaron egrave -18 -KPX rcaron emacron -18 -KPX rcaron eogonek -18 -KPX rcaron g -10 -KPX rcaron gbreve -10 -KPX rcaron gcommaaccent -10 -KPX rcaron hyphen -37 -KPX rcaron n -15 -KPX rcaron nacute -15 -KPX rcaron ncaron -15 -KPX rcaron ncommaaccent -15 -KPX rcaron ntilde -15 -KPX rcaron o -18 -KPX rcaron oacute -18 -KPX rcaron ocircumflex -18 -KPX rcaron odieresis -18 -KPX rcaron ograve -18 -KPX rcaron ohungarumlaut -18 -KPX rcaron omacron -18 -KPX rcaron oslash -18 -KPX rcaron otilde -18 -KPX rcaron p -10 -KPX rcaron period -100 -KPX rcaron q -18 -KPX rcaron v -10 -KPX rcommaaccent c -18 -KPX rcommaaccent cacute -18 -KPX rcommaaccent ccaron -18 -KPX rcommaaccent ccedilla -18 -KPX rcommaaccent comma -92 -KPX rcommaaccent e -18 -KPX rcommaaccent eacute -18 -KPX rcommaaccent ecaron -18 -KPX rcommaaccent ecircumflex -18 -KPX rcommaaccent edieresis -18 -KPX rcommaaccent edotaccent -18 -KPX rcommaaccent egrave -18 -KPX rcommaaccent emacron -18 -KPX rcommaaccent eogonek -18 -KPX rcommaaccent g -10 -KPX rcommaaccent gbreve -10 -KPX rcommaaccent gcommaaccent -10 -KPX rcommaaccent hyphen -37 -KPX rcommaaccent n -15 -KPX rcommaaccent nacute -15 -KPX rcommaaccent ncaron -15 -KPX rcommaaccent ncommaaccent -15 -KPX rcommaaccent ntilde -15 -KPX rcommaaccent o -18 -KPX rcommaaccent oacute -18 -KPX rcommaaccent ocircumflex -18 -KPX rcommaaccent odieresis -18 -KPX rcommaaccent ograve -18 -KPX rcommaaccent ohungarumlaut -18 -KPX rcommaaccent omacron -18 -KPX rcommaaccent oslash -18 -KPX rcommaaccent otilde -18 -KPX rcommaaccent p -10 -KPX rcommaaccent period -100 -KPX rcommaaccent q -18 -KPX rcommaaccent v -10 -KPX space A -55 -KPX space Aacute -55 -KPX space Abreve -55 -KPX space Acircumflex -55 -KPX space Adieresis -55 -KPX space Agrave -55 -KPX space Amacron -55 -KPX space Aogonek -55 -KPX space Aring -55 -KPX space Atilde -55 -KPX space T -30 -KPX space Tcaron -30 -KPX space Tcommaaccent -30 -KPX space V -45 -KPX space W -30 -KPX space Y -55 -KPX space Yacute -55 -KPX space Ydieresis -55 -KPX v a -10 -KPX v aacute -10 -KPX v abreve -10 -KPX v acircumflex -10 -KPX v adieresis -10 -KPX v agrave -10 -KPX v amacron -10 -KPX v aogonek -10 -KPX v aring -10 -KPX v atilde -10 -KPX v comma -55 -KPX v e -10 -KPX v eacute -10 -KPX v ecaron -10 -KPX v ecircumflex -10 -KPX v edieresis -10 -KPX v edotaccent -10 -KPX v egrave -10 -KPX v emacron -10 -KPX v eogonek -10 -KPX v o -10 -KPX v oacute -10 -KPX v ocircumflex -10 -KPX v odieresis -10 -KPX v ograve -10 -KPX v ohungarumlaut -10 -KPX v omacron -10 -KPX v oslash -10 -KPX v otilde -10 -KPX v period -70 -KPX w comma -55 -KPX w o -10 -KPX w oacute -10 -KPX w ocircumflex -10 -KPX w odieresis -10 -KPX w ograve -10 -KPX w ohungarumlaut -10 -KPX w omacron -10 -KPX w oslash -10 -KPX w otilde -10 -KPX w period -70 -KPX y comma -55 -KPX y e -10 -KPX y eacute -10 -KPX y ecaron -10 -KPX y ecircumflex -10 -KPX y edieresis -10 -KPX y edotaccent -10 -KPX y egrave -10 -KPX y emacron -10 -KPX y eogonek -10 -KPX y o -25 -KPX y oacute -25 -KPX y ocircumflex -25 -KPX y odieresis -25 -KPX y ograve -25 -KPX y ohungarumlaut -25 -KPX y omacron -25 -KPX y oslash -25 -KPX y otilde -25 -KPX y period -70 -KPX yacute comma -55 -KPX yacute e -10 -KPX yacute eacute -10 -KPX yacute ecaron -10 -KPX yacute ecircumflex -10 -KPX yacute edieresis -10 -KPX yacute edotaccent -10 -KPX yacute egrave -10 -KPX yacute emacron -10 -KPX yacute eogonek -10 -KPX yacute o -25 -KPX yacute oacute -25 -KPX yacute ocircumflex -25 -KPX yacute odieresis -25 -KPX yacute ograve -25 -KPX yacute ohungarumlaut -25 -KPX yacute omacron -25 -KPX yacute oslash -25 -KPX yacute otilde -25 -KPX yacute period -70 -KPX ydieresis comma -55 -KPX ydieresis e -10 -KPX ydieresis eacute -10 -KPX ydieresis ecaron -10 -KPX ydieresis ecircumflex -10 -KPX ydieresis edieresis -10 -KPX ydieresis edotaccent -10 -KPX ydieresis egrave -10 -KPX ydieresis emacron -10 -KPX ydieresis eogonek -10 -KPX ydieresis o -25 -KPX ydieresis oacute -25 -KPX ydieresis ocircumflex -25 -KPX ydieresis odieresis -25 -KPX ydieresis ograve -25 -KPX ydieresis ohungarumlaut -25 -KPX ydieresis omacron -25 -KPX ydieresis oslash -25 -KPX ydieresis otilde -25 -KPX ydieresis period -70 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Times-BoldItalic.afm b/target/classes/com/itextpdf/text/pdf/fonts/Times-BoldItalic.afm deleted file mode 100644 index 2301dfd2..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Times-BoldItalic.afm +++ /dev/null @@ -1,2384 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 13:04:06 1997 -Comment UniqueID 43066 -Comment VMusage 45874 56899 -FontName Times-BoldItalic -FullName Times Bold Italic -FamilyName Times -Weight Bold -ItalicAngle -15 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -200 -218 996 921 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 669 -XHeight 462 -Ascender 683 -Descender -217 -StdHW 42 -StdVW 121 -StartCharMetrics 315 -C 32 ; WX 250 ; N space ; B 0 0 0 0 ; -C 33 ; WX 389 ; N exclam ; B 67 -13 370 684 ; -C 34 ; WX 555 ; N quotedbl ; B 136 398 536 685 ; -C 35 ; WX 500 ; N numbersign ; B -33 0 533 700 ; -C 36 ; WX 500 ; N dollar ; B -20 -100 497 733 ; -C 37 ; WX 833 ; N percent ; B 39 -10 793 692 ; -C 38 ; WX 778 ; N ampersand ; B 5 -19 699 682 ; -C 39 ; WX 333 ; N quoteright ; B 98 369 302 685 ; -C 40 ; WX 333 ; N parenleft ; B 28 -179 344 685 ; -C 41 ; WX 333 ; N parenright ; B -44 -179 271 685 ; -C 42 ; WX 500 ; N asterisk ; B 65 249 456 685 ; -C 43 ; WX 570 ; N plus ; B 33 0 537 506 ; -C 44 ; WX 250 ; N comma ; B -60 -182 144 134 ; -C 45 ; WX 333 ; N hyphen ; B 2 166 271 282 ; -C 46 ; WX 250 ; N period ; B -9 -13 139 135 ; -C 47 ; WX 278 ; N slash ; B -64 -18 342 685 ; -C 48 ; WX 500 ; N zero ; B 17 -14 477 683 ; -C 49 ; WX 500 ; N one ; B 5 0 419 683 ; -C 50 ; WX 500 ; N two ; B -27 0 446 683 ; -C 51 ; WX 500 ; N three ; B -15 -13 450 683 ; -C 52 ; WX 500 ; N four ; B -15 0 503 683 ; -C 53 ; WX 500 ; N five ; B -11 -13 487 669 ; -C 54 ; WX 500 ; N six ; B 23 -15 509 679 ; -C 55 ; WX 500 ; N seven ; B 52 0 525 669 ; -C 56 ; WX 500 ; N eight ; B 3 -13 476 683 ; -C 57 ; WX 500 ; N nine ; B -12 -10 475 683 ; -C 58 ; WX 333 ; N colon ; B 23 -13 264 459 ; -C 59 ; WX 333 ; N semicolon ; B -25 -183 264 459 ; -C 60 ; WX 570 ; N less ; B 31 -8 539 514 ; -C 61 ; WX 570 ; N equal ; B 33 107 537 399 ; -C 62 ; WX 570 ; N greater ; B 31 -8 539 514 ; -C 63 ; WX 500 ; N question ; B 79 -13 470 684 ; -C 64 ; WX 832 ; N at ; B 63 -18 770 685 ; -C 65 ; WX 667 ; N A ; B -67 0 593 683 ; -C 66 ; WX 667 ; N B ; B -24 0 624 669 ; -C 67 ; WX 667 ; N C ; B 32 -18 677 685 ; -C 68 ; WX 722 ; N D ; B -46 0 685 669 ; -C 69 ; WX 667 ; N E ; B -27 0 653 669 ; -C 70 ; WX 667 ; N F ; B -13 0 660 669 ; -C 71 ; WX 722 ; N G ; B 21 -18 706 685 ; -C 72 ; WX 778 ; N H ; B -24 0 799 669 ; -C 73 ; WX 389 ; N I ; B -32 0 406 669 ; -C 74 ; WX 500 ; N J ; B -46 -99 524 669 ; -C 75 ; WX 667 ; N K ; B -21 0 702 669 ; -C 76 ; WX 611 ; N L ; B -22 0 590 669 ; -C 77 ; WX 889 ; N M ; B -29 -12 917 669 ; -C 78 ; WX 722 ; N N ; B -27 -15 748 669 ; -C 79 ; WX 722 ; N O ; B 27 -18 691 685 ; -C 80 ; WX 611 ; N P ; B -27 0 613 669 ; -C 81 ; WX 722 ; N Q ; B 27 -208 691 685 ; -C 82 ; WX 667 ; N R ; B -29 0 623 669 ; -C 83 ; WX 556 ; N S ; B 2 -18 526 685 ; -C 84 ; WX 611 ; N T ; B 50 0 650 669 ; -C 85 ; WX 722 ; N U ; B 67 -18 744 669 ; -C 86 ; WX 667 ; N V ; B 65 -18 715 669 ; -C 87 ; WX 889 ; N W ; B 65 -18 940 669 ; -C 88 ; WX 667 ; N X ; B -24 0 694 669 ; -C 89 ; WX 611 ; N Y ; B 73 0 659 669 ; -C 90 ; WX 611 ; N Z ; B -11 0 590 669 ; -C 91 ; WX 333 ; N bracketleft ; B -37 -159 362 674 ; -C 92 ; WX 278 ; N backslash ; B -1 -18 279 685 ; -C 93 ; WX 333 ; N bracketright ; B -56 -157 343 674 ; -C 94 ; WX 570 ; N asciicircum ; B 67 304 503 669 ; -C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; -C 96 ; WX 333 ; N quoteleft ; B 128 369 332 685 ; -C 97 ; WX 500 ; N a ; B -21 -14 455 462 ; -C 98 ; WX 500 ; N b ; B -14 -13 444 699 ; -C 99 ; WX 444 ; N c ; B -5 -13 392 462 ; -C 100 ; WX 500 ; N d ; B -21 -13 517 699 ; -C 101 ; WX 444 ; N e ; B 5 -13 398 462 ; -C 102 ; WX 333 ; N f ; B -169 -205 446 698 ; L i fi ; L l fl ; -C 103 ; WX 500 ; N g ; B -52 -203 478 462 ; -C 104 ; WX 556 ; N h ; B -13 -9 498 699 ; -C 105 ; WX 278 ; N i ; B 2 -9 263 684 ; -C 106 ; WX 278 ; N j ; B -189 -207 279 684 ; -C 107 ; WX 500 ; N k ; B -23 -8 483 699 ; -C 108 ; WX 278 ; N l ; B 2 -9 290 699 ; -C 109 ; WX 778 ; N m ; B -14 -9 722 462 ; -C 110 ; WX 556 ; N n ; B -6 -9 493 462 ; -C 111 ; WX 500 ; N o ; B -3 -13 441 462 ; -C 112 ; WX 500 ; N p ; B -120 -205 446 462 ; -C 113 ; WX 500 ; N q ; B 1 -205 471 462 ; -C 114 ; WX 389 ; N r ; B -21 0 389 462 ; -C 115 ; WX 389 ; N s ; B -19 -13 333 462 ; -C 116 ; WX 278 ; N t ; B -11 -9 281 594 ; -C 117 ; WX 556 ; N u ; B 15 -9 492 462 ; -C 118 ; WX 444 ; N v ; B 16 -13 401 462 ; -C 119 ; WX 667 ; N w ; B 16 -13 614 462 ; -C 120 ; WX 500 ; N x ; B -46 -13 469 462 ; -C 121 ; WX 444 ; N y ; B -94 -205 392 462 ; -C 122 ; WX 389 ; N z ; B -43 -78 368 449 ; -C 123 ; WX 348 ; N braceleft ; B 5 -187 436 686 ; -C 124 ; WX 220 ; N bar ; B 66 -218 154 782 ; -C 125 ; WX 348 ; N braceright ; B -129 -187 302 686 ; -C 126 ; WX 570 ; N asciitilde ; B 54 173 516 333 ; -C 161 ; WX 389 ; N exclamdown ; B 19 -205 322 492 ; -C 162 ; WX 500 ; N cent ; B 42 -143 439 576 ; -C 163 ; WX 500 ; N sterling ; B -32 -12 510 683 ; -C 164 ; WX 167 ; N fraction ; B -169 -14 324 683 ; -C 165 ; WX 500 ; N yen ; B 33 0 628 669 ; -C 166 ; WX 500 ; N florin ; B -87 -156 537 707 ; -C 167 ; WX 500 ; N section ; B 36 -143 459 685 ; -C 168 ; WX 500 ; N currency ; B -26 34 526 586 ; -C 169 ; WX 278 ; N quotesingle ; B 128 398 268 685 ; -C 170 ; WX 500 ; N quotedblleft ; B 53 369 513 685 ; -C 171 ; WX 500 ; N guillemotleft ; B 12 32 468 415 ; -C 172 ; WX 333 ; N guilsinglleft ; B 32 32 303 415 ; -C 173 ; WX 333 ; N guilsinglright ; B 10 32 281 415 ; -C 174 ; WX 556 ; N fi ; B -188 -205 514 703 ; -C 175 ; WX 556 ; N fl ; B -186 -205 553 704 ; -C 177 ; WX 500 ; N endash ; B -40 178 477 269 ; -C 178 ; WX 500 ; N dagger ; B 91 -145 494 685 ; -C 179 ; WX 500 ; N daggerdbl ; B 10 -139 493 685 ; -C 180 ; WX 250 ; N periodcentered ; B 51 257 199 405 ; -C 182 ; WX 500 ; N paragraph ; B -57 -193 562 669 ; -C 183 ; WX 350 ; N bullet ; B 0 175 350 525 ; -C 184 ; WX 333 ; N quotesinglbase ; B -5 -182 199 134 ; -C 185 ; WX 500 ; N quotedblbase ; B -57 -182 403 134 ; -C 186 ; WX 500 ; N quotedblright ; B 53 369 513 685 ; -C 187 ; WX 500 ; N guillemotright ; B 12 32 468 415 ; -C 188 ; WX 1000 ; N ellipsis ; B 40 -13 852 135 ; -C 189 ; WX 1000 ; N perthousand ; B 7 -29 996 706 ; -C 191 ; WX 500 ; N questiondown ; B 30 -205 421 492 ; -C 193 ; WX 333 ; N grave ; B 85 516 297 697 ; -C 194 ; WX 333 ; N acute ; B 139 516 379 697 ; -C 195 ; WX 333 ; N circumflex ; B 40 516 367 690 ; -C 196 ; WX 333 ; N tilde ; B 48 536 407 655 ; -C 197 ; WX 333 ; N macron ; B 51 553 393 623 ; -C 198 ; WX 333 ; N breve ; B 71 516 387 678 ; -C 199 ; WX 333 ; N dotaccent ; B 163 550 298 684 ; -C 200 ; WX 333 ; N dieresis ; B 55 550 402 684 ; -C 202 ; WX 333 ; N ring ; B 127 516 340 729 ; -C 203 ; WX 333 ; N cedilla ; B -80 -218 156 5 ; -C 205 ; WX 333 ; N hungarumlaut ; B 69 516 498 697 ; -C 206 ; WX 333 ; N ogonek ; B 15 -183 244 34 ; -C 207 ; WX 333 ; N caron ; B 79 516 411 690 ; -C 208 ; WX 1000 ; N emdash ; B -40 178 977 269 ; -C 225 ; WX 944 ; N AE ; B -64 0 918 669 ; -C 227 ; WX 266 ; N ordfeminine ; B 16 399 330 685 ; -C 232 ; WX 611 ; N Lslash ; B -22 0 590 669 ; -C 233 ; WX 722 ; N Oslash ; B 27 -125 691 764 ; -C 234 ; WX 944 ; N OE ; B 23 -8 946 677 ; -C 235 ; WX 300 ; N ordmasculine ; B 56 400 347 685 ; -C 241 ; WX 722 ; N ae ; B -5 -13 673 462 ; -C 245 ; WX 278 ; N dotlessi ; B 2 -9 238 462 ; -C 248 ; WX 278 ; N lslash ; B -7 -9 307 699 ; -C 249 ; WX 500 ; N oslash ; B -3 -119 441 560 ; -C 250 ; WX 722 ; N oe ; B 6 -13 674 462 ; -C 251 ; WX 500 ; N germandbls ; B -200 -200 473 705 ; -C -1 ; WX 389 ; N Idieresis ; B -32 0 450 862 ; -C -1 ; WX 444 ; N eacute ; B 5 -13 435 697 ; -C -1 ; WX 500 ; N abreve ; B -21 -14 471 678 ; -C -1 ; WX 556 ; N uhungarumlaut ; B 15 -9 610 697 ; -C -1 ; WX 444 ; N ecaron ; B 5 -13 467 690 ; -C -1 ; WX 611 ; N Ydieresis ; B 73 0 659 862 ; -C -1 ; WX 570 ; N divide ; B 33 -29 537 535 ; -C -1 ; WX 611 ; N Yacute ; B 73 0 659 904 ; -C -1 ; WX 667 ; N Acircumflex ; B -67 0 593 897 ; -C -1 ; WX 500 ; N aacute ; B -21 -14 463 697 ; -C -1 ; WX 722 ; N Ucircumflex ; B 67 -18 744 897 ; -C -1 ; WX 444 ; N yacute ; B -94 -205 435 697 ; -C -1 ; WX 389 ; N scommaaccent ; B -19 -218 333 462 ; -C -1 ; WX 444 ; N ecircumflex ; B 5 -13 423 690 ; -C -1 ; WX 722 ; N Uring ; B 67 -18 744 921 ; -C -1 ; WX 722 ; N Udieresis ; B 67 -18 744 862 ; -C -1 ; WX 500 ; N aogonek ; B -21 -183 455 462 ; -C -1 ; WX 722 ; N Uacute ; B 67 -18 744 904 ; -C -1 ; WX 556 ; N uogonek ; B 15 -183 492 462 ; -C -1 ; WX 667 ; N Edieresis ; B -27 0 653 862 ; -C -1 ; WX 722 ; N Dcroat ; B -31 0 700 669 ; -C -1 ; WX 250 ; N commaaccent ; B -36 -218 131 -50 ; -C -1 ; WX 747 ; N copyright ; B 30 -18 718 685 ; -C -1 ; WX 667 ; N Emacron ; B -27 0 653 830 ; -C -1 ; WX 444 ; N ccaron ; B -5 -13 467 690 ; -C -1 ; WX 500 ; N aring ; B -21 -14 455 729 ; -C -1 ; WX 722 ; N Ncommaaccent ; B -27 -218 748 669 ; -C -1 ; WX 278 ; N lacute ; B 2 -9 392 904 ; -C -1 ; WX 500 ; N agrave ; B -21 -14 455 697 ; -C -1 ; WX 611 ; N Tcommaaccent ; B 50 -218 650 669 ; -C -1 ; WX 667 ; N Cacute ; B 32 -18 677 904 ; -C -1 ; WX 500 ; N atilde ; B -21 -14 491 655 ; -C -1 ; WX 667 ; N Edotaccent ; B -27 0 653 862 ; -C -1 ; WX 389 ; N scaron ; B -19 -13 424 690 ; -C -1 ; WX 389 ; N scedilla ; B -19 -218 333 462 ; -C -1 ; WX 278 ; N iacute ; B 2 -9 352 697 ; -C -1 ; WX 494 ; N lozenge ; B 10 0 484 745 ; -C -1 ; WX 667 ; N Rcaron ; B -29 0 623 897 ; -C -1 ; WX 722 ; N Gcommaaccent ; B 21 -218 706 685 ; -C -1 ; WX 556 ; N ucircumflex ; B 15 -9 492 690 ; -C -1 ; WX 500 ; N acircumflex ; B -21 -14 455 690 ; -C -1 ; WX 667 ; N Amacron ; B -67 0 593 830 ; -C -1 ; WX 389 ; N rcaron ; B -21 0 424 690 ; -C -1 ; WX 444 ; N ccedilla ; B -5 -218 392 462 ; -C -1 ; WX 611 ; N Zdotaccent ; B -11 0 590 862 ; -C -1 ; WX 611 ; N Thorn ; B -27 0 573 669 ; -C -1 ; WX 722 ; N Omacron ; B 27 -18 691 830 ; -C -1 ; WX 667 ; N Racute ; B -29 0 623 904 ; -C -1 ; WX 556 ; N Sacute ; B 2 -18 531 904 ; -C -1 ; WX 608 ; N dcaron ; B -21 -13 675 708 ; -C -1 ; WX 722 ; N Umacron ; B 67 -18 744 830 ; -C -1 ; WX 556 ; N uring ; B 15 -9 492 729 ; -C -1 ; WX 300 ; N threesuperior ; B 17 265 321 683 ; -C -1 ; WX 722 ; N Ograve ; B 27 -18 691 904 ; -C -1 ; WX 667 ; N Agrave ; B -67 0 593 904 ; -C -1 ; WX 667 ; N Abreve ; B -67 0 593 885 ; -C -1 ; WX 570 ; N multiply ; B 48 16 522 490 ; -C -1 ; WX 556 ; N uacute ; B 15 -9 492 697 ; -C -1 ; WX 611 ; N Tcaron ; B 50 0 650 897 ; -C -1 ; WX 494 ; N partialdiff ; B 11 -21 494 750 ; -C -1 ; WX 444 ; N ydieresis ; B -94 -205 443 655 ; -C -1 ; WX 722 ; N Nacute ; B -27 -15 748 904 ; -C -1 ; WX 278 ; N icircumflex ; B -3 -9 324 690 ; -C -1 ; WX 667 ; N Ecircumflex ; B -27 0 653 897 ; -C -1 ; WX 500 ; N adieresis ; B -21 -14 476 655 ; -C -1 ; WX 444 ; N edieresis ; B 5 -13 448 655 ; -C -1 ; WX 444 ; N cacute ; B -5 -13 435 697 ; -C -1 ; WX 556 ; N nacute ; B -6 -9 493 697 ; -C -1 ; WX 556 ; N umacron ; B 15 -9 492 623 ; -C -1 ; WX 722 ; N Ncaron ; B -27 -15 748 897 ; -C -1 ; WX 389 ; N Iacute ; B -32 0 432 904 ; -C -1 ; WX 570 ; N plusminus ; B 33 0 537 506 ; -C -1 ; WX 220 ; N brokenbar ; B 66 -143 154 707 ; -C -1 ; WX 747 ; N registered ; B 30 -18 718 685 ; -C -1 ; WX 722 ; N Gbreve ; B 21 -18 706 885 ; -C -1 ; WX 389 ; N Idotaccent ; B -32 0 406 862 ; -C -1 ; WX 600 ; N summation ; B 14 -10 585 706 ; -C -1 ; WX 667 ; N Egrave ; B -27 0 653 904 ; -C -1 ; WX 389 ; N racute ; B -21 0 407 697 ; -C -1 ; WX 500 ; N omacron ; B -3 -13 462 623 ; -C -1 ; WX 611 ; N Zacute ; B -11 0 590 904 ; -C -1 ; WX 611 ; N Zcaron ; B -11 0 590 897 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 523 704 ; -C -1 ; WX 722 ; N Eth ; B -31 0 700 669 ; -C -1 ; WX 667 ; N Ccedilla ; B 32 -218 677 685 ; -C -1 ; WX 278 ; N lcommaaccent ; B -42 -218 290 699 ; -C -1 ; WX 366 ; N tcaron ; B -11 -9 434 754 ; -C -1 ; WX 444 ; N eogonek ; B 5 -183 398 462 ; -C -1 ; WX 722 ; N Uogonek ; B 67 -183 744 669 ; -C -1 ; WX 667 ; N Aacute ; B -67 0 593 904 ; -C -1 ; WX 667 ; N Adieresis ; B -67 0 593 862 ; -C -1 ; WX 444 ; N egrave ; B 5 -13 398 697 ; -C -1 ; WX 389 ; N zacute ; B -43 -78 407 697 ; -C -1 ; WX 278 ; N iogonek ; B -20 -183 263 684 ; -C -1 ; WX 722 ; N Oacute ; B 27 -18 691 904 ; -C -1 ; WX 500 ; N oacute ; B -3 -13 463 697 ; -C -1 ; WX 500 ; N amacron ; B -21 -14 467 623 ; -C -1 ; WX 389 ; N sacute ; B -19 -13 407 697 ; -C -1 ; WX 278 ; N idieresis ; B 2 -9 364 655 ; -C -1 ; WX 722 ; N Ocircumflex ; B 27 -18 691 897 ; -C -1 ; WX 722 ; N Ugrave ; B 67 -18 744 904 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 500 ; N thorn ; B -120 -205 446 699 ; -C -1 ; WX 300 ; N twosuperior ; B 2 274 313 683 ; -C -1 ; WX 722 ; N Odieresis ; B 27 -18 691 862 ; -C -1 ; WX 576 ; N mu ; B -60 -207 516 449 ; -C -1 ; WX 278 ; N igrave ; B 2 -9 259 697 ; -C -1 ; WX 500 ; N ohungarumlaut ; B -3 -13 582 697 ; -C -1 ; WX 667 ; N Eogonek ; B -27 -183 653 669 ; -C -1 ; WX 500 ; N dcroat ; B -21 -13 552 699 ; -C -1 ; WX 750 ; N threequarters ; B 7 -14 726 683 ; -C -1 ; WX 556 ; N Scedilla ; B 2 -218 526 685 ; -C -1 ; WX 382 ; N lcaron ; B 2 -9 448 708 ; -C -1 ; WX 667 ; N Kcommaaccent ; B -21 -218 702 669 ; -C -1 ; WX 611 ; N Lacute ; B -22 0 590 904 ; -C -1 ; WX 1000 ; N trademark ; B 32 263 968 669 ; -C -1 ; WX 444 ; N edotaccent ; B 5 -13 398 655 ; -C -1 ; WX 389 ; N Igrave ; B -32 0 406 904 ; -C -1 ; WX 389 ; N Imacron ; B -32 0 461 830 ; -C -1 ; WX 611 ; N Lcaron ; B -22 0 671 718 ; -C -1 ; WX 750 ; N onehalf ; B -9 -14 723 683 ; -C -1 ; WX 549 ; N lessequal ; B 29 0 526 704 ; -C -1 ; WX 500 ; N ocircumflex ; B -3 -13 451 690 ; -C -1 ; WX 556 ; N ntilde ; B -6 -9 504 655 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 67 -18 744 904 ; -C -1 ; WX 667 ; N Eacute ; B -27 0 653 904 ; -C -1 ; WX 444 ; N emacron ; B 5 -13 439 623 ; -C -1 ; WX 500 ; N gbreve ; B -52 -203 478 678 ; -C -1 ; WX 750 ; N onequarter ; B 7 -14 721 683 ; -C -1 ; WX 556 ; N Scaron ; B 2 -18 553 897 ; -C -1 ; WX 556 ; N Scommaaccent ; B 2 -218 526 685 ; -C -1 ; WX 722 ; N Ohungarumlaut ; B 27 -18 723 904 ; -C -1 ; WX 400 ; N degree ; B 83 397 369 683 ; -C -1 ; WX 500 ; N ograve ; B -3 -13 441 697 ; -C -1 ; WX 667 ; N Ccaron ; B 32 -18 677 897 ; -C -1 ; WX 556 ; N ugrave ; B 15 -9 492 697 ; -C -1 ; WX 549 ; N radical ; B 10 -46 512 850 ; -C -1 ; WX 722 ; N Dcaron ; B -46 0 685 897 ; -C -1 ; WX 389 ; N rcommaaccent ; B -67 -218 389 462 ; -C -1 ; WX 722 ; N Ntilde ; B -27 -15 748 862 ; -C -1 ; WX 500 ; N otilde ; B -3 -13 491 655 ; -C -1 ; WX 667 ; N Rcommaaccent ; B -29 -218 623 669 ; -C -1 ; WX 611 ; N Lcommaaccent ; B -22 -218 590 669 ; -C -1 ; WX 667 ; N Atilde ; B -67 0 593 862 ; -C -1 ; WX 667 ; N Aogonek ; B -67 -183 604 683 ; -C -1 ; WX 667 ; N Aring ; B -67 0 593 921 ; -C -1 ; WX 722 ; N Otilde ; B 27 -18 691 862 ; -C -1 ; WX 389 ; N zdotaccent ; B -43 -78 368 655 ; -C -1 ; WX 667 ; N Ecaron ; B -27 0 653 897 ; -C -1 ; WX 389 ; N Iogonek ; B -32 -183 406 669 ; -C -1 ; WX 500 ; N kcommaaccent ; B -23 -218 483 699 ; -C -1 ; WX 606 ; N minus ; B 51 209 555 297 ; -C -1 ; WX 389 ; N Icircumflex ; B -32 0 450 897 ; -C -1 ; WX 556 ; N ncaron ; B -6 -9 523 690 ; -C -1 ; WX 278 ; N tcommaaccent ; B -62 -218 281 594 ; -C -1 ; WX 606 ; N logicalnot ; B 51 108 555 399 ; -C -1 ; WX 500 ; N odieresis ; B -3 -13 471 655 ; -C -1 ; WX 556 ; N udieresis ; B 15 -9 499 655 ; -C -1 ; WX 549 ; N notequal ; B 15 -49 540 570 ; -C -1 ; WX 500 ; N gcommaaccent ; B -52 -203 478 767 ; -C -1 ; WX 500 ; N eth ; B -3 -13 454 699 ; -C -1 ; WX 389 ; N zcaron ; B -43 -78 424 690 ; -C -1 ; WX 556 ; N ncommaaccent ; B -6 -218 493 462 ; -C -1 ; WX 300 ; N onesuperior ; B 30 274 301 683 ; -C -1 ; WX 278 ; N imacron ; B 2 -9 294 623 ; -C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2038 -KPX A C -65 -KPX A Cacute -65 -KPX A Ccaron -65 -KPX A Ccedilla -65 -KPX A G -60 -KPX A Gbreve -60 -KPX A Gcommaaccent -60 -KPX A O -50 -KPX A Oacute -50 -KPX A Ocircumflex -50 -KPX A Odieresis -50 -KPX A Ograve -50 -KPX A Ohungarumlaut -50 -KPX A Omacron -50 -KPX A Oslash -50 -KPX A Otilde -50 -KPX A Q -55 -KPX A T -55 -KPX A Tcaron -55 -KPX A Tcommaaccent -55 -KPX A U -50 -KPX A Uacute -50 -KPX A Ucircumflex -50 -KPX A Udieresis -50 -KPX A Ugrave -50 -KPX A Uhungarumlaut -50 -KPX A Umacron -50 -KPX A Uogonek -50 -KPX A Uring -50 -KPX A V -95 -KPX A W -100 -KPX A Y -70 -KPX A Yacute -70 -KPX A Ydieresis -70 -KPX A quoteright -74 -KPX A u -30 -KPX A uacute -30 -KPX A ucircumflex -30 -KPX A udieresis -30 -KPX A ugrave -30 -KPX A uhungarumlaut -30 -KPX A umacron -30 -KPX A uogonek -30 -KPX A uring -30 -KPX A v -74 -KPX A w -74 -KPX A y -74 -KPX A yacute -74 -KPX A ydieresis -74 -KPX Aacute C -65 -KPX Aacute Cacute -65 -KPX Aacute Ccaron -65 -KPX Aacute Ccedilla -65 -KPX Aacute G -60 -KPX Aacute Gbreve -60 -KPX Aacute Gcommaaccent -60 -KPX Aacute O -50 -KPX Aacute Oacute -50 -KPX Aacute Ocircumflex -50 -KPX Aacute Odieresis -50 -KPX Aacute Ograve -50 -KPX Aacute Ohungarumlaut -50 -KPX Aacute Omacron -50 -KPX Aacute Oslash -50 -KPX Aacute Otilde -50 -KPX Aacute Q -55 -KPX Aacute T -55 -KPX Aacute Tcaron -55 -KPX Aacute Tcommaaccent -55 -KPX Aacute U -50 -KPX Aacute Uacute -50 -KPX Aacute Ucircumflex -50 -KPX Aacute Udieresis -50 -KPX Aacute Ugrave -50 -KPX Aacute Uhungarumlaut -50 -KPX Aacute Umacron -50 -KPX Aacute Uogonek -50 -KPX Aacute Uring -50 -KPX Aacute V -95 -KPX Aacute W -100 -KPX Aacute Y -70 -KPX Aacute Yacute -70 -KPX Aacute Ydieresis -70 -KPX Aacute quoteright -74 -KPX Aacute u -30 -KPX Aacute uacute -30 -KPX Aacute ucircumflex -30 -KPX Aacute udieresis -30 -KPX Aacute ugrave -30 -KPX Aacute uhungarumlaut -30 -KPX Aacute umacron -30 -KPX Aacute uogonek -30 -KPX Aacute uring -30 -KPX Aacute v -74 -KPX Aacute w -74 -KPX Aacute y -74 -KPX Aacute yacute -74 -KPX Aacute ydieresis -74 -KPX Abreve C -65 -KPX Abreve Cacute -65 -KPX Abreve Ccaron -65 -KPX Abreve Ccedilla -65 -KPX Abreve G -60 -KPX Abreve Gbreve -60 -KPX Abreve Gcommaaccent -60 -KPX Abreve O -50 -KPX Abreve Oacute -50 -KPX Abreve Ocircumflex -50 -KPX Abreve Odieresis -50 -KPX Abreve Ograve -50 -KPX Abreve Ohungarumlaut -50 -KPX Abreve Omacron -50 -KPX Abreve Oslash -50 -KPX Abreve Otilde -50 -KPX Abreve Q -55 -KPX Abreve T -55 -KPX Abreve Tcaron -55 -KPX Abreve Tcommaaccent -55 -KPX Abreve U -50 -KPX Abreve Uacute -50 -KPX Abreve Ucircumflex -50 -KPX Abreve Udieresis -50 -KPX Abreve Ugrave -50 -KPX Abreve Uhungarumlaut -50 -KPX Abreve Umacron -50 -KPX Abreve Uogonek -50 -KPX Abreve Uring -50 -KPX Abreve V -95 -KPX Abreve W -100 -KPX Abreve Y -70 -KPX Abreve Yacute -70 -KPX Abreve Ydieresis -70 -KPX Abreve quoteright -74 -KPX Abreve u -30 -KPX Abreve uacute -30 -KPX Abreve ucircumflex -30 -KPX Abreve udieresis -30 -KPX Abreve ugrave -30 -KPX Abreve uhungarumlaut -30 -KPX Abreve umacron -30 -KPX Abreve uogonek -30 -KPX Abreve uring -30 -KPX Abreve v -74 -KPX Abreve w -74 -KPX Abreve y -74 -KPX Abreve yacute -74 -KPX Abreve ydieresis -74 -KPX Acircumflex C -65 -KPX Acircumflex Cacute -65 -KPX Acircumflex Ccaron -65 -KPX Acircumflex Ccedilla -65 -KPX Acircumflex G -60 -KPX Acircumflex Gbreve -60 -KPX Acircumflex Gcommaaccent -60 -KPX Acircumflex O -50 -KPX Acircumflex Oacute -50 -KPX Acircumflex Ocircumflex -50 -KPX Acircumflex Odieresis -50 -KPX Acircumflex Ograve -50 -KPX Acircumflex Ohungarumlaut -50 -KPX Acircumflex Omacron -50 -KPX Acircumflex Oslash -50 -KPX Acircumflex Otilde -50 -KPX Acircumflex Q -55 -KPX Acircumflex T -55 -KPX Acircumflex Tcaron -55 -KPX Acircumflex Tcommaaccent -55 -KPX Acircumflex U -50 -KPX Acircumflex Uacute -50 -KPX Acircumflex Ucircumflex -50 -KPX Acircumflex Udieresis -50 -KPX Acircumflex Ugrave -50 -KPX Acircumflex Uhungarumlaut -50 -KPX Acircumflex Umacron -50 -KPX Acircumflex Uogonek -50 -KPX Acircumflex Uring -50 -KPX Acircumflex V -95 -KPX Acircumflex W -100 -KPX Acircumflex Y -70 -KPX Acircumflex Yacute -70 -KPX Acircumflex Ydieresis -70 -KPX Acircumflex quoteright -74 -KPX Acircumflex u -30 -KPX Acircumflex uacute -30 -KPX Acircumflex ucircumflex -30 -KPX Acircumflex udieresis -30 -KPX Acircumflex ugrave -30 -KPX Acircumflex uhungarumlaut -30 -KPX Acircumflex umacron -30 -KPX Acircumflex uogonek -30 -KPX Acircumflex uring -30 -KPX Acircumflex v -74 -KPX Acircumflex w -74 -KPX Acircumflex y -74 -KPX Acircumflex yacute -74 -KPX Acircumflex ydieresis -74 -KPX Adieresis C -65 -KPX Adieresis Cacute -65 -KPX Adieresis Ccaron -65 -KPX Adieresis Ccedilla -65 -KPX Adieresis G -60 -KPX Adieresis Gbreve -60 -KPX Adieresis Gcommaaccent -60 -KPX Adieresis O -50 -KPX Adieresis Oacute -50 -KPX Adieresis Ocircumflex -50 -KPX Adieresis Odieresis -50 -KPX Adieresis Ograve -50 -KPX Adieresis Ohungarumlaut -50 -KPX Adieresis Omacron -50 -KPX Adieresis Oslash -50 -KPX Adieresis Otilde -50 -KPX Adieresis Q -55 -KPX Adieresis T -55 -KPX Adieresis Tcaron -55 -KPX Adieresis Tcommaaccent -55 -KPX Adieresis U -50 -KPX Adieresis Uacute -50 -KPX Adieresis Ucircumflex -50 -KPX Adieresis Udieresis -50 -KPX Adieresis Ugrave -50 -KPX Adieresis Uhungarumlaut -50 -KPX Adieresis Umacron -50 -KPX Adieresis Uogonek -50 -KPX Adieresis Uring -50 -KPX Adieresis V -95 -KPX Adieresis W -100 -KPX Adieresis Y -70 -KPX Adieresis Yacute -70 -KPX Adieresis Ydieresis -70 -KPX Adieresis quoteright -74 -KPX Adieresis u -30 -KPX Adieresis uacute -30 -KPX Adieresis ucircumflex -30 -KPX Adieresis udieresis -30 -KPX Adieresis ugrave -30 -KPX Adieresis uhungarumlaut -30 -KPX Adieresis umacron -30 -KPX Adieresis uogonek -30 -KPX Adieresis uring -30 -KPX Adieresis v -74 -KPX Adieresis w -74 -KPX Adieresis y -74 -KPX Adieresis yacute -74 -KPX Adieresis ydieresis -74 -KPX Agrave C -65 -KPX Agrave Cacute -65 -KPX Agrave Ccaron -65 -KPX Agrave Ccedilla -65 -KPX Agrave G -60 -KPX Agrave Gbreve -60 -KPX Agrave Gcommaaccent -60 -KPX Agrave O -50 -KPX Agrave Oacute -50 -KPX Agrave Ocircumflex -50 -KPX Agrave Odieresis -50 -KPX Agrave Ograve -50 -KPX Agrave Ohungarumlaut -50 -KPX Agrave Omacron -50 -KPX Agrave Oslash -50 -KPX Agrave Otilde -50 -KPX Agrave Q -55 -KPX Agrave T -55 -KPX Agrave Tcaron -55 -KPX Agrave Tcommaaccent -55 -KPX Agrave U -50 -KPX Agrave Uacute -50 -KPX Agrave Ucircumflex -50 -KPX Agrave Udieresis -50 -KPX Agrave Ugrave -50 -KPX Agrave Uhungarumlaut -50 -KPX Agrave Umacron -50 -KPX Agrave Uogonek -50 -KPX Agrave Uring -50 -KPX Agrave V -95 -KPX Agrave W -100 -KPX Agrave Y -70 -KPX Agrave Yacute -70 -KPX Agrave Ydieresis -70 -KPX Agrave quoteright -74 -KPX Agrave u -30 -KPX Agrave uacute -30 -KPX Agrave ucircumflex -30 -KPX Agrave udieresis -30 -KPX Agrave ugrave -30 -KPX Agrave uhungarumlaut -30 -KPX Agrave umacron -30 -KPX Agrave uogonek -30 -KPX Agrave uring -30 -KPX Agrave v -74 -KPX Agrave w -74 -KPX Agrave y -74 -KPX Agrave yacute -74 -KPX Agrave ydieresis -74 -KPX Amacron C -65 -KPX Amacron Cacute -65 -KPX Amacron Ccaron -65 -KPX Amacron Ccedilla -65 -KPX Amacron G -60 -KPX Amacron Gbreve -60 -KPX Amacron Gcommaaccent -60 -KPX Amacron O -50 -KPX Amacron Oacute -50 -KPX Amacron Ocircumflex -50 -KPX Amacron Odieresis -50 -KPX Amacron Ograve -50 -KPX Amacron Ohungarumlaut -50 -KPX Amacron Omacron -50 -KPX Amacron Oslash -50 -KPX Amacron Otilde -50 -KPX Amacron Q -55 -KPX Amacron T -55 -KPX Amacron Tcaron -55 -KPX Amacron Tcommaaccent -55 -KPX Amacron U -50 -KPX Amacron Uacute -50 -KPX Amacron Ucircumflex -50 -KPX Amacron Udieresis -50 -KPX Amacron Ugrave -50 -KPX Amacron Uhungarumlaut -50 -KPX Amacron Umacron -50 -KPX Amacron Uogonek -50 -KPX Amacron Uring -50 -KPX Amacron V -95 -KPX Amacron W -100 -KPX Amacron Y -70 -KPX Amacron Yacute -70 -KPX Amacron Ydieresis -70 -KPX Amacron quoteright -74 -KPX Amacron u -30 -KPX Amacron uacute -30 -KPX Amacron ucircumflex -30 -KPX Amacron udieresis -30 -KPX Amacron ugrave -30 -KPX Amacron uhungarumlaut -30 -KPX Amacron umacron -30 -KPX Amacron uogonek -30 -KPX Amacron uring -30 -KPX Amacron v -74 -KPX Amacron w -74 -KPX Amacron y -74 -KPX Amacron yacute -74 -KPX Amacron ydieresis -74 -KPX Aogonek C -65 -KPX Aogonek Cacute -65 -KPX Aogonek Ccaron -65 -KPX Aogonek Ccedilla -65 -KPX Aogonek G -60 -KPX Aogonek Gbreve -60 -KPX Aogonek Gcommaaccent -60 -KPX Aogonek O -50 -KPX Aogonek Oacute -50 -KPX Aogonek Ocircumflex -50 -KPX Aogonek Odieresis -50 -KPX Aogonek Ograve -50 -KPX Aogonek Ohungarumlaut -50 -KPX Aogonek Omacron -50 -KPX Aogonek Oslash -50 -KPX Aogonek Otilde -50 -KPX Aogonek Q -55 -KPX Aogonek T -55 -KPX Aogonek Tcaron -55 -KPX Aogonek Tcommaaccent -55 -KPX Aogonek U -50 -KPX Aogonek Uacute -50 -KPX Aogonek Ucircumflex -50 -KPX Aogonek Udieresis -50 -KPX Aogonek Ugrave -50 -KPX Aogonek Uhungarumlaut -50 -KPX Aogonek Umacron -50 -KPX Aogonek Uogonek -50 -KPX Aogonek Uring -50 -KPX Aogonek V -95 -KPX Aogonek W -100 -KPX Aogonek Y -70 -KPX Aogonek Yacute -70 -KPX Aogonek Ydieresis -70 -KPX Aogonek quoteright -74 -KPX Aogonek u -30 -KPX Aogonek uacute -30 -KPX Aogonek ucircumflex -30 -KPX Aogonek udieresis -30 -KPX Aogonek ugrave -30 -KPX Aogonek uhungarumlaut -30 -KPX Aogonek umacron -30 -KPX Aogonek uogonek -30 -KPX Aogonek uring -30 -KPX Aogonek v -74 -KPX Aogonek w -74 -KPX Aogonek y -34 -KPX Aogonek yacute -34 -KPX Aogonek ydieresis -34 -KPX Aring C -65 -KPX Aring Cacute -65 -KPX Aring Ccaron -65 -KPX Aring Ccedilla -65 -KPX Aring G -60 -KPX Aring Gbreve -60 -KPX Aring Gcommaaccent -60 -KPX Aring O -50 -KPX Aring Oacute -50 -KPX Aring Ocircumflex -50 -KPX Aring Odieresis -50 -KPX Aring Ograve -50 -KPX Aring Ohungarumlaut -50 -KPX Aring Omacron -50 -KPX Aring Oslash -50 -KPX Aring Otilde -50 -KPX Aring Q -55 -KPX Aring T -55 -KPX Aring Tcaron -55 -KPX Aring Tcommaaccent -55 -KPX Aring U -50 -KPX Aring Uacute -50 -KPX Aring Ucircumflex -50 -KPX Aring Udieresis -50 -KPX Aring Ugrave -50 -KPX Aring Uhungarumlaut -50 -KPX Aring Umacron -50 -KPX Aring Uogonek -50 -KPX Aring Uring -50 -KPX Aring V -95 -KPX Aring W -100 -KPX Aring Y -70 -KPX Aring Yacute -70 -KPX Aring Ydieresis -70 -KPX Aring quoteright -74 -KPX Aring u -30 -KPX Aring uacute -30 -KPX Aring ucircumflex -30 -KPX Aring udieresis -30 -KPX Aring ugrave -30 -KPX Aring uhungarumlaut -30 -KPX Aring umacron -30 -KPX Aring uogonek -30 -KPX Aring uring -30 -KPX Aring v -74 -KPX Aring w -74 -KPX Aring y -74 -KPX Aring yacute -74 -KPX Aring ydieresis -74 -KPX Atilde C -65 -KPX Atilde Cacute -65 -KPX Atilde Ccaron -65 -KPX Atilde Ccedilla -65 -KPX Atilde G -60 -KPX Atilde Gbreve -60 -KPX Atilde Gcommaaccent -60 -KPX Atilde O -50 -KPX Atilde Oacute -50 -KPX Atilde Ocircumflex -50 -KPX Atilde Odieresis -50 -KPX Atilde Ograve -50 -KPX Atilde Ohungarumlaut -50 -KPX Atilde Omacron -50 -KPX Atilde Oslash -50 -KPX Atilde Otilde -50 -KPX Atilde Q -55 -KPX Atilde T -55 -KPX Atilde Tcaron -55 -KPX Atilde Tcommaaccent -55 -KPX Atilde U -50 -KPX Atilde Uacute -50 -KPX Atilde Ucircumflex -50 -KPX Atilde Udieresis -50 -KPX Atilde Ugrave -50 -KPX Atilde Uhungarumlaut -50 -KPX Atilde Umacron -50 -KPX Atilde Uogonek -50 -KPX Atilde Uring -50 -KPX Atilde V -95 -KPX Atilde W -100 -KPX Atilde Y -70 -KPX Atilde Yacute -70 -KPX Atilde Ydieresis -70 -KPX Atilde quoteright -74 -KPX Atilde u -30 -KPX Atilde uacute -30 -KPX Atilde ucircumflex -30 -KPX Atilde udieresis -30 -KPX Atilde ugrave -30 -KPX Atilde uhungarumlaut -30 -KPX Atilde umacron -30 -KPX Atilde uogonek -30 -KPX Atilde uring -30 -KPX Atilde v -74 -KPX Atilde w -74 -KPX Atilde y -74 -KPX Atilde yacute -74 -KPX Atilde ydieresis -74 -KPX B A -25 -KPX B Aacute -25 -KPX B Abreve -25 -KPX B Acircumflex -25 -KPX B Adieresis -25 -KPX B Agrave -25 -KPX B Amacron -25 -KPX B Aogonek -25 -KPX B Aring -25 -KPX B Atilde -25 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX D A -25 -KPX D Aacute -25 -KPX D Abreve -25 -KPX D Acircumflex -25 -KPX D Adieresis -25 -KPX D Agrave -25 -KPX D Amacron -25 -KPX D Aogonek -25 -KPX D Aring -25 -KPX D Atilde -25 -KPX D V -50 -KPX D W -40 -KPX D Y -50 -KPX D Yacute -50 -KPX D Ydieresis -50 -KPX Dcaron A -25 -KPX Dcaron Aacute -25 -KPX Dcaron Abreve -25 -KPX Dcaron Acircumflex -25 -KPX Dcaron Adieresis -25 -KPX Dcaron Agrave -25 -KPX Dcaron Amacron -25 -KPX Dcaron Aogonek -25 -KPX Dcaron Aring -25 -KPX Dcaron Atilde -25 -KPX Dcaron V -50 -KPX Dcaron W -40 -KPX Dcaron Y -50 -KPX Dcaron Yacute -50 -KPX Dcaron Ydieresis -50 -KPX Dcroat A -25 -KPX Dcroat Aacute -25 -KPX Dcroat Abreve -25 -KPX Dcroat Acircumflex -25 -KPX Dcroat Adieresis -25 -KPX Dcroat Agrave -25 -KPX Dcroat Amacron -25 -KPX Dcroat Aogonek -25 -KPX Dcroat Aring -25 -KPX Dcroat Atilde -25 -KPX Dcroat V -50 -KPX Dcroat W -40 -KPX Dcroat Y -50 -KPX Dcroat Yacute -50 -KPX Dcroat Ydieresis -50 -KPX F A -100 -KPX F Aacute -100 -KPX F Abreve -100 -KPX F Acircumflex -100 -KPX F Adieresis -100 -KPX F Agrave -100 -KPX F Amacron -100 -KPX F Aogonek -100 -KPX F Aring -100 -KPX F Atilde -100 -KPX F a -95 -KPX F aacute -95 -KPX F abreve -95 -KPX F acircumflex -95 -KPX F adieresis -95 -KPX F agrave -95 -KPX F amacron -95 -KPX F aogonek -95 -KPX F aring -95 -KPX F atilde -95 -KPX F comma -129 -KPX F e -100 -KPX F eacute -100 -KPX F ecaron -100 -KPX F ecircumflex -100 -KPX F edieresis -100 -KPX F edotaccent -100 -KPX F egrave -100 -KPX F emacron -100 -KPX F eogonek -100 -KPX F i -40 -KPX F iacute -40 -KPX F icircumflex -40 -KPX F idieresis -40 -KPX F igrave -40 -KPX F imacron -40 -KPX F iogonek -40 -KPX F o -70 -KPX F oacute -70 -KPX F ocircumflex -70 -KPX F odieresis -70 -KPX F ograve -70 -KPX F ohungarumlaut -70 -KPX F omacron -70 -KPX F oslash -70 -KPX F otilde -70 -KPX F period -129 -KPX F r -50 -KPX F racute -50 -KPX F rcaron -50 -KPX F rcommaaccent -50 -KPX J A -25 -KPX J Aacute -25 -KPX J Abreve -25 -KPX J Acircumflex -25 -KPX J Adieresis -25 -KPX J Agrave -25 -KPX J Amacron -25 -KPX J Aogonek -25 -KPX J Aring -25 -KPX J Atilde -25 -KPX J a -40 -KPX J aacute -40 -KPX J abreve -40 -KPX J acircumflex -40 -KPX J adieresis -40 -KPX J agrave -40 -KPX J amacron -40 -KPX J aogonek -40 -KPX J aring -40 -KPX J atilde -40 -KPX J comma -10 -KPX J e -40 -KPX J eacute -40 -KPX J ecaron -40 -KPX J ecircumflex -40 -KPX J edieresis -40 -KPX J edotaccent -40 -KPX J egrave -40 -KPX J emacron -40 -KPX J eogonek -40 -KPX J o -40 -KPX J oacute -40 -KPX J ocircumflex -40 -KPX J odieresis -40 -KPX J ograve -40 -KPX J ohungarumlaut -40 -KPX J omacron -40 -KPX J oslash -40 -KPX J otilde -40 -KPX J period -10 -KPX J u -40 -KPX J uacute -40 -KPX J ucircumflex -40 -KPX J udieresis -40 -KPX J ugrave -40 -KPX J uhungarumlaut -40 -KPX J umacron -40 -KPX J uogonek -40 -KPX J uring -40 -KPX K O -30 -KPX K Oacute -30 -KPX K Ocircumflex -30 -KPX K Odieresis -30 -KPX K Ograve -30 -KPX K Ohungarumlaut -30 -KPX K Omacron -30 -KPX K Oslash -30 -KPX K Otilde -30 -KPX K e -25 -KPX K eacute -25 -KPX K ecaron -25 -KPX K ecircumflex -25 -KPX K edieresis -25 -KPX K edotaccent -25 -KPX K egrave -25 -KPX K emacron -25 -KPX K eogonek -25 -KPX K o -25 -KPX K oacute -25 -KPX K ocircumflex -25 -KPX K odieresis -25 -KPX K ograve -25 -KPX K ohungarumlaut -25 -KPX K omacron -25 -KPX K oslash -25 -KPX K otilde -25 -KPX K u -20 -KPX K uacute -20 -KPX K ucircumflex -20 -KPX K udieresis -20 -KPX K ugrave -20 -KPX K uhungarumlaut -20 -KPX K umacron -20 -KPX K uogonek -20 -KPX K uring -20 -KPX K y -20 -KPX K yacute -20 -KPX K ydieresis -20 -KPX Kcommaaccent O -30 -KPX Kcommaaccent Oacute -30 -KPX Kcommaaccent Ocircumflex -30 -KPX Kcommaaccent Odieresis -30 -KPX Kcommaaccent Ograve -30 -KPX Kcommaaccent Ohungarumlaut -30 -KPX Kcommaaccent Omacron -30 -KPX Kcommaaccent Oslash -30 -KPX Kcommaaccent Otilde -30 -KPX Kcommaaccent e -25 -KPX Kcommaaccent eacute -25 -KPX Kcommaaccent ecaron -25 -KPX Kcommaaccent ecircumflex -25 -KPX Kcommaaccent edieresis -25 -KPX Kcommaaccent edotaccent -25 -KPX Kcommaaccent egrave -25 -KPX Kcommaaccent emacron -25 -KPX Kcommaaccent eogonek -25 -KPX Kcommaaccent o -25 -KPX Kcommaaccent oacute -25 -KPX Kcommaaccent ocircumflex -25 -KPX Kcommaaccent odieresis -25 -KPX Kcommaaccent ograve -25 -KPX Kcommaaccent ohungarumlaut -25 -KPX Kcommaaccent omacron -25 -KPX Kcommaaccent oslash -25 -KPX Kcommaaccent otilde -25 -KPX Kcommaaccent u -20 -KPX Kcommaaccent uacute -20 -KPX Kcommaaccent ucircumflex -20 -KPX Kcommaaccent udieresis -20 -KPX Kcommaaccent ugrave -20 -KPX Kcommaaccent uhungarumlaut -20 -KPX Kcommaaccent umacron -20 -KPX Kcommaaccent uogonek -20 -KPX Kcommaaccent uring -20 -KPX Kcommaaccent y -20 -KPX Kcommaaccent yacute -20 -KPX Kcommaaccent ydieresis -20 -KPX L T -18 -KPX L Tcaron -18 -KPX L Tcommaaccent -18 -KPX L V -37 -KPX L W -37 -KPX L Y -37 -KPX L Yacute -37 -KPX L Ydieresis -37 -KPX L quoteright -55 -KPX L y -37 -KPX L yacute -37 -KPX L ydieresis -37 -KPX Lacute T -18 -KPX Lacute Tcaron -18 -KPX Lacute Tcommaaccent -18 -KPX Lacute V -37 -KPX Lacute W -37 -KPX Lacute Y -37 -KPX Lacute Yacute -37 -KPX Lacute Ydieresis -37 -KPX Lacute quoteright -55 -KPX Lacute y -37 -KPX Lacute yacute -37 -KPX Lacute ydieresis -37 -KPX Lcommaaccent T -18 -KPX Lcommaaccent Tcaron -18 -KPX Lcommaaccent Tcommaaccent -18 -KPX Lcommaaccent V -37 -KPX Lcommaaccent W -37 -KPX Lcommaaccent Y -37 -KPX Lcommaaccent Yacute -37 -KPX Lcommaaccent Ydieresis -37 -KPX Lcommaaccent quoteright -55 -KPX Lcommaaccent y -37 -KPX Lcommaaccent yacute -37 -KPX Lcommaaccent ydieresis -37 -KPX Lslash T -18 -KPX Lslash Tcaron -18 -KPX Lslash Tcommaaccent -18 -KPX Lslash V -37 -KPX Lslash W -37 -KPX Lslash Y -37 -KPX Lslash Yacute -37 -KPX Lslash Ydieresis -37 -KPX Lslash quoteright -55 -KPX Lslash y -37 -KPX Lslash yacute -37 -KPX Lslash ydieresis -37 -KPX N A -30 -KPX N Aacute -30 -KPX N Abreve -30 -KPX N Acircumflex -30 -KPX N Adieresis -30 -KPX N Agrave -30 -KPX N Amacron -30 -KPX N Aogonek -30 -KPX N Aring -30 -KPX N Atilde -30 -KPX Nacute A -30 -KPX Nacute Aacute -30 -KPX Nacute Abreve -30 -KPX Nacute Acircumflex -30 -KPX Nacute Adieresis -30 -KPX Nacute Agrave -30 -KPX Nacute Amacron -30 -KPX Nacute Aogonek -30 -KPX Nacute Aring -30 -KPX Nacute Atilde -30 -KPX Ncaron A -30 -KPX Ncaron Aacute -30 -KPX Ncaron Abreve -30 -KPX Ncaron Acircumflex -30 -KPX Ncaron Adieresis -30 -KPX Ncaron Agrave -30 -KPX Ncaron Amacron -30 -KPX Ncaron Aogonek -30 -KPX Ncaron Aring -30 -KPX Ncaron Atilde -30 -KPX Ncommaaccent A -30 -KPX Ncommaaccent Aacute -30 -KPX Ncommaaccent Abreve -30 -KPX Ncommaaccent Acircumflex -30 -KPX Ncommaaccent Adieresis -30 -KPX Ncommaaccent Agrave -30 -KPX Ncommaaccent Amacron -30 -KPX Ncommaaccent Aogonek -30 -KPX Ncommaaccent Aring -30 -KPX Ncommaaccent Atilde -30 -KPX Ntilde A -30 -KPX Ntilde Aacute -30 -KPX Ntilde Abreve -30 -KPX Ntilde Acircumflex -30 -KPX Ntilde Adieresis -30 -KPX Ntilde Agrave -30 -KPX Ntilde Amacron -30 -KPX Ntilde Aogonek -30 -KPX Ntilde Aring -30 -KPX Ntilde Atilde -30 -KPX O A -40 -KPX O Aacute -40 -KPX O Abreve -40 -KPX O Acircumflex -40 -KPX O Adieresis -40 -KPX O Agrave -40 -KPX O Amacron -40 -KPX O Aogonek -40 -KPX O Aring -40 -KPX O Atilde -40 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -50 -KPX O X -40 -KPX O Y -50 -KPX O Yacute -50 -KPX O Ydieresis -50 -KPX Oacute A -40 -KPX Oacute Aacute -40 -KPX Oacute Abreve -40 -KPX Oacute Acircumflex -40 -KPX Oacute Adieresis -40 -KPX Oacute Agrave -40 -KPX Oacute Amacron -40 -KPX Oacute Aogonek -40 -KPX Oacute Aring -40 -KPX Oacute Atilde -40 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -50 -KPX Oacute X -40 -KPX Oacute Y -50 -KPX Oacute Yacute -50 -KPX Oacute Ydieresis -50 -KPX Ocircumflex A -40 -KPX Ocircumflex Aacute -40 -KPX Ocircumflex Abreve -40 -KPX Ocircumflex Acircumflex -40 -KPX Ocircumflex Adieresis -40 -KPX Ocircumflex Agrave -40 -KPX Ocircumflex Amacron -40 -KPX Ocircumflex Aogonek -40 -KPX Ocircumflex Aring -40 -KPX Ocircumflex Atilde -40 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -50 -KPX Ocircumflex X -40 -KPX Ocircumflex Y -50 -KPX Ocircumflex Yacute -50 -KPX Ocircumflex Ydieresis -50 -KPX Odieresis A -40 -KPX Odieresis Aacute -40 -KPX Odieresis Abreve -40 -KPX Odieresis Acircumflex -40 -KPX Odieresis Adieresis -40 -KPX Odieresis Agrave -40 -KPX Odieresis Amacron -40 -KPX Odieresis Aogonek -40 -KPX Odieresis Aring -40 -KPX Odieresis Atilde -40 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -50 -KPX Odieresis X -40 -KPX Odieresis Y -50 -KPX Odieresis Yacute -50 -KPX Odieresis Ydieresis -50 -KPX Ograve A -40 -KPX Ograve Aacute -40 -KPX Ograve Abreve -40 -KPX Ograve Acircumflex -40 -KPX Ograve Adieresis -40 -KPX Ograve Agrave -40 -KPX Ograve Amacron -40 -KPX Ograve Aogonek -40 -KPX Ograve Aring -40 -KPX Ograve Atilde -40 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -50 -KPX Ograve X -40 -KPX Ograve Y -50 -KPX Ograve Yacute -50 -KPX Ograve Ydieresis -50 -KPX Ohungarumlaut A -40 -KPX Ohungarumlaut Aacute -40 -KPX Ohungarumlaut Abreve -40 -KPX Ohungarumlaut Acircumflex -40 -KPX Ohungarumlaut Adieresis -40 -KPX Ohungarumlaut Agrave -40 -KPX Ohungarumlaut Amacron -40 -KPX Ohungarumlaut Aogonek -40 -KPX Ohungarumlaut Aring -40 -KPX Ohungarumlaut Atilde -40 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -50 -KPX Ohungarumlaut X -40 -KPX Ohungarumlaut Y -50 -KPX Ohungarumlaut Yacute -50 -KPX Ohungarumlaut Ydieresis -50 -KPX Omacron A -40 -KPX Omacron Aacute -40 -KPX Omacron Abreve -40 -KPX Omacron Acircumflex -40 -KPX Omacron Adieresis -40 -KPX Omacron Agrave -40 -KPX Omacron Amacron -40 -KPX Omacron Aogonek -40 -KPX Omacron Aring -40 -KPX Omacron Atilde -40 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -50 -KPX Omacron X -40 -KPX Omacron Y -50 -KPX Omacron Yacute -50 -KPX Omacron Ydieresis -50 -KPX Oslash A -40 -KPX Oslash Aacute -40 -KPX Oslash Abreve -40 -KPX Oslash Acircumflex -40 -KPX Oslash Adieresis -40 -KPX Oslash Agrave -40 -KPX Oslash Amacron -40 -KPX Oslash Aogonek -40 -KPX Oslash Aring -40 -KPX Oslash Atilde -40 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -50 -KPX Oslash X -40 -KPX Oslash Y -50 -KPX Oslash Yacute -50 -KPX Oslash Ydieresis -50 -KPX Otilde A -40 -KPX Otilde Aacute -40 -KPX Otilde Abreve -40 -KPX Otilde Acircumflex -40 -KPX Otilde Adieresis -40 -KPX Otilde Agrave -40 -KPX Otilde Amacron -40 -KPX Otilde Aogonek -40 -KPX Otilde Aring -40 -KPX Otilde Atilde -40 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -50 -KPX Otilde X -40 -KPX Otilde Y -50 -KPX Otilde Yacute -50 -KPX Otilde Ydieresis -50 -KPX P A -85 -KPX P Aacute -85 -KPX P Abreve -85 -KPX P Acircumflex -85 -KPX P Adieresis -85 -KPX P Agrave -85 -KPX P Amacron -85 -KPX P Aogonek -85 -KPX P Aring -85 -KPX P Atilde -85 -KPX P a -40 -KPX P aacute -40 -KPX P abreve -40 -KPX P acircumflex -40 -KPX P adieresis -40 -KPX P agrave -40 -KPX P amacron -40 -KPX P aogonek -40 -KPX P aring -40 -KPX P atilde -40 -KPX P comma -129 -KPX P e -50 -KPX P eacute -50 -KPX P ecaron -50 -KPX P ecircumflex -50 -KPX P edieresis -50 -KPX P edotaccent -50 -KPX P egrave -50 -KPX P emacron -50 -KPX P eogonek -50 -KPX P o -55 -KPX P oacute -55 -KPX P ocircumflex -55 -KPX P odieresis -55 -KPX P ograve -55 -KPX P ohungarumlaut -55 -KPX P omacron -55 -KPX P oslash -55 -KPX P otilde -55 -KPX P period -129 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX R O -40 -KPX R Oacute -40 -KPX R Ocircumflex -40 -KPX R Odieresis -40 -KPX R Ograve -40 -KPX R Ohungarumlaut -40 -KPX R Omacron -40 -KPX R Oslash -40 -KPX R Otilde -40 -KPX R T -30 -KPX R Tcaron -30 -KPX R Tcommaaccent -30 -KPX R U -40 -KPX R Uacute -40 -KPX R Ucircumflex -40 -KPX R Udieresis -40 -KPX R Ugrave -40 -KPX R Uhungarumlaut -40 -KPX R Umacron -40 -KPX R Uogonek -40 -KPX R Uring -40 -KPX R V -18 -KPX R W -18 -KPX R Y -18 -KPX R Yacute -18 -KPX R Ydieresis -18 -KPX Racute O -40 -KPX Racute Oacute -40 -KPX Racute Ocircumflex -40 -KPX Racute Odieresis -40 -KPX Racute Ograve -40 -KPX Racute Ohungarumlaut -40 -KPX Racute Omacron -40 -KPX Racute Oslash -40 -KPX Racute Otilde -40 -KPX Racute T -30 -KPX Racute Tcaron -30 -KPX Racute Tcommaaccent -30 -KPX Racute U -40 -KPX Racute Uacute -40 -KPX Racute Ucircumflex -40 -KPX Racute Udieresis -40 -KPX Racute Ugrave -40 -KPX Racute Uhungarumlaut -40 -KPX Racute Umacron -40 -KPX Racute Uogonek -40 -KPX Racute Uring -40 -KPX Racute V -18 -KPX Racute W -18 -KPX Racute Y -18 -KPX Racute Yacute -18 -KPX Racute Ydieresis -18 -KPX Rcaron O -40 -KPX Rcaron Oacute -40 -KPX Rcaron Ocircumflex -40 -KPX Rcaron Odieresis -40 -KPX Rcaron Ograve -40 -KPX Rcaron Ohungarumlaut -40 -KPX Rcaron Omacron -40 -KPX Rcaron Oslash -40 -KPX Rcaron Otilde -40 -KPX Rcaron T -30 -KPX Rcaron Tcaron -30 -KPX Rcaron Tcommaaccent -30 -KPX Rcaron U -40 -KPX Rcaron Uacute -40 -KPX Rcaron Ucircumflex -40 -KPX Rcaron Udieresis -40 -KPX Rcaron Ugrave -40 -KPX Rcaron Uhungarumlaut -40 -KPX Rcaron Umacron -40 -KPX Rcaron Uogonek -40 -KPX Rcaron Uring -40 -KPX Rcaron V -18 -KPX Rcaron W -18 -KPX Rcaron Y -18 -KPX Rcaron Yacute -18 -KPX Rcaron Ydieresis -18 -KPX Rcommaaccent O -40 -KPX Rcommaaccent Oacute -40 -KPX Rcommaaccent Ocircumflex -40 -KPX Rcommaaccent Odieresis -40 -KPX Rcommaaccent Ograve -40 -KPX Rcommaaccent Ohungarumlaut -40 -KPX Rcommaaccent Omacron -40 -KPX Rcommaaccent Oslash -40 -KPX Rcommaaccent Otilde -40 -KPX Rcommaaccent T -30 -KPX Rcommaaccent Tcaron -30 -KPX Rcommaaccent Tcommaaccent -30 -KPX Rcommaaccent U -40 -KPX Rcommaaccent Uacute -40 -KPX Rcommaaccent Ucircumflex -40 -KPX Rcommaaccent Udieresis -40 -KPX Rcommaaccent Ugrave -40 -KPX Rcommaaccent Uhungarumlaut -40 -KPX Rcommaaccent Umacron -40 -KPX Rcommaaccent Uogonek -40 -KPX Rcommaaccent Uring -40 -KPX Rcommaaccent V -18 -KPX Rcommaaccent W -18 -KPX Rcommaaccent Y -18 -KPX Rcommaaccent Yacute -18 -KPX Rcommaaccent Ydieresis -18 -KPX T A -55 -KPX T Aacute -55 -KPX T Abreve -55 -KPX T Acircumflex -55 -KPX T Adieresis -55 -KPX T Agrave -55 -KPX T Amacron -55 -KPX T Aogonek -55 -KPX T Aring -55 -KPX T Atilde -55 -KPX T O -18 -KPX T Oacute -18 -KPX T Ocircumflex -18 -KPX T Odieresis -18 -KPX T Ograve -18 -KPX T Ohungarumlaut -18 -KPX T Omacron -18 -KPX T Oslash -18 -KPX T Otilde -18 -KPX T a -92 -KPX T aacute -92 -KPX T abreve -92 -KPX T acircumflex -92 -KPX T adieresis -92 -KPX T agrave -92 -KPX T amacron -92 -KPX T aogonek -92 -KPX T aring -92 -KPX T atilde -92 -KPX T colon -74 -KPX T comma -92 -KPX T e -92 -KPX T eacute -92 -KPX T ecaron -92 -KPX T ecircumflex -92 -KPX T edieresis -52 -KPX T edotaccent -92 -KPX T egrave -52 -KPX T emacron -52 -KPX T eogonek -92 -KPX T hyphen -92 -KPX T i -37 -KPX T iacute -37 -KPX T iogonek -37 -KPX T o -95 -KPX T oacute -95 -KPX T ocircumflex -95 -KPX T odieresis -95 -KPX T ograve -95 -KPX T ohungarumlaut -95 -KPX T omacron -95 -KPX T oslash -95 -KPX T otilde -95 -KPX T period -92 -KPX T r -37 -KPX T racute -37 -KPX T rcaron -37 -KPX T rcommaaccent -37 -KPX T semicolon -74 -KPX T u -37 -KPX T uacute -37 -KPX T ucircumflex -37 -KPX T udieresis -37 -KPX T ugrave -37 -KPX T uhungarumlaut -37 -KPX T umacron -37 -KPX T uogonek -37 -KPX T uring -37 -KPX T w -37 -KPX T y -37 -KPX T yacute -37 -KPX T ydieresis -37 -KPX Tcaron A -55 -KPX Tcaron Aacute -55 -KPX Tcaron Abreve -55 -KPX Tcaron Acircumflex -55 -KPX Tcaron Adieresis -55 -KPX Tcaron Agrave -55 -KPX Tcaron Amacron -55 -KPX Tcaron Aogonek -55 -KPX Tcaron Aring -55 -KPX Tcaron Atilde -55 -KPX Tcaron O -18 -KPX Tcaron Oacute -18 -KPX Tcaron Ocircumflex -18 -KPX Tcaron Odieresis -18 -KPX Tcaron Ograve -18 -KPX Tcaron Ohungarumlaut -18 -KPX Tcaron Omacron -18 -KPX Tcaron Oslash -18 -KPX Tcaron Otilde -18 -KPX Tcaron a -92 -KPX Tcaron aacute -92 -KPX Tcaron abreve -92 -KPX Tcaron acircumflex -92 -KPX Tcaron adieresis -92 -KPX Tcaron agrave -92 -KPX Tcaron amacron -92 -KPX Tcaron aogonek -92 -KPX Tcaron aring -92 -KPX Tcaron atilde -92 -KPX Tcaron colon -74 -KPX Tcaron comma -92 -KPX Tcaron e -92 -KPX Tcaron eacute -92 -KPX Tcaron ecaron -92 -KPX Tcaron ecircumflex -92 -KPX Tcaron edieresis -52 -KPX Tcaron edotaccent -92 -KPX Tcaron egrave -52 -KPX Tcaron emacron -52 -KPX Tcaron eogonek -92 -KPX Tcaron hyphen -92 -KPX Tcaron i -37 -KPX Tcaron iacute -37 -KPX Tcaron iogonek -37 -KPX Tcaron o -95 -KPX Tcaron oacute -95 -KPX Tcaron ocircumflex -95 -KPX Tcaron odieresis -95 -KPX Tcaron ograve -95 -KPX Tcaron ohungarumlaut -95 -KPX Tcaron omacron -95 -KPX Tcaron oslash -95 -KPX Tcaron otilde -95 -KPX Tcaron period -92 -KPX Tcaron r -37 -KPX Tcaron racute -37 -KPX Tcaron rcaron -37 -KPX Tcaron rcommaaccent -37 -KPX Tcaron semicolon -74 -KPX Tcaron u -37 -KPX Tcaron uacute -37 -KPX Tcaron ucircumflex -37 -KPX Tcaron udieresis -37 -KPX Tcaron ugrave -37 -KPX Tcaron uhungarumlaut -37 -KPX Tcaron umacron -37 -KPX Tcaron uogonek -37 -KPX Tcaron uring -37 -KPX Tcaron w -37 -KPX Tcaron y -37 -KPX Tcaron yacute -37 -KPX Tcaron ydieresis -37 -KPX Tcommaaccent A -55 -KPX Tcommaaccent Aacute -55 -KPX Tcommaaccent Abreve -55 -KPX Tcommaaccent Acircumflex -55 -KPX Tcommaaccent Adieresis -55 -KPX Tcommaaccent Agrave -55 -KPX Tcommaaccent Amacron -55 -KPX Tcommaaccent Aogonek -55 -KPX Tcommaaccent Aring -55 -KPX Tcommaaccent Atilde -55 -KPX Tcommaaccent O -18 -KPX Tcommaaccent Oacute -18 -KPX Tcommaaccent Ocircumflex -18 -KPX Tcommaaccent Odieresis -18 -KPX Tcommaaccent Ograve -18 -KPX Tcommaaccent Ohungarumlaut -18 -KPX Tcommaaccent Omacron -18 -KPX Tcommaaccent Oslash -18 -KPX Tcommaaccent Otilde -18 -KPX Tcommaaccent a -92 -KPX Tcommaaccent aacute -92 -KPX Tcommaaccent abreve -92 -KPX Tcommaaccent acircumflex -92 -KPX Tcommaaccent adieresis -92 -KPX Tcommaaccent agrave -92 -KPX Tcommaaccent amacron -92 -KPX Tcommaaccent aogonek -92 -KPX Tcommaaccent aring -92 -KPX Tcommaaccent atilde -92 -KPX Tcommaaccent colon -74 -KPX Tcommaaccent comma -92 -KPX Tcommaaccent e -92 -KPX Tcommaaccent eacute -92 -KPX Tcommaaccent ecaron -92 -KPX Tcommaaccent ecircumflex -92 -KPX Tcommaaccent edieresis -52 -KPX Tcommaaccent edotaccent -92 -KPX Tcommaaccent egrave -52 -KPX Tcommaaccent emacron -52 -KPX Tcommaaccent eogonek -92 -KPX Tcommaaccent hyphen -92 -KPX Tcommaaccent i -37 -KPX Tcommaaccent iacute -37 -KPX Tcommaaccent iogonek -37 -KPX Tcommaaccent o -95 -KPX Tcommaaccent oacute -95 -KPX Tcommaaccent ocircumflex -95 -KPX Tcommaaccent odieresis -95 -KPX Tcommaaccent ograve -95 -KPX Tcommaaccent ohungarumlaut -95 -KPX Tcommaaccent omacron -95 -KPX Tcommaaccent oslash -95 -KPX Tcommaaccent otilde -95 -KPX Tcommaaccent period -92 -KPX Tcommaaccent r -37 -KPX Tcommaaccent racute -37 -KPX Tcommaaccent rcaron -37 -KPX Tcommaaccent rcommaaccent -37 -KPX Tcommaaccent semicolon -74 -KPX Tcommaaccent u -37 -KPX Tcommaaccent uacute -37 -KPX Tcommaaccent ucircumflex -37 -KPX Tcommaaccent udieresis -37 -KPX Tcommaaccent ugrave -37 -KPX Tcommaaccent uhungarumlaut -37 -KPX Tcommaaccent umacron -37 -KPX Tcommaaccent uogonek -37 -KPX Tcommaaccent uring -37 -KPX Tcommaaccent w -37 -KPX Tcommaaccent y -37 -KPX Tcommaaccent yacute -37 -KPX Tcommaaccent ydieresis -37 -KPX U A -45 -KPX U Aacute -45 -KPX U Abreve -45 -KPX U Acircumflex -45 -KPX U Adieresis -45 -KPX U Agrave -45 -KPX U Amacron -45 -KPX U Aogonek -45 -KPX U Aring -45 -KPX U Atilde -45 -KPX Uacute A -45 -KPX Uacute Aacute -45 -KPX Uacute Abreve -45 -KPX Uacute Acircumflex -45 -KPX Uacute Adieresis -45 -KPX Uacute Agrave -45 -KPX Uacute Amacron -45 -KPX Uacute Aogonek -45 -KPX Uacute Aring -45 -KPX Uacute Atilde -45 -KPX Ucircumflex A -45 -KPX Ucircumflex Aacute -45 -KPX Ucircumflex Abreve -45 -KPX Ucircumflex Acircumflex -45 -KPX Ucircumflex Adieresis -45 -KPX Ucircumflex Agrave -45 -KPX Ucircumflex Amacron -45 -KPX Ucircumflex Aogonek -45 -KPX Ucircumflex Aring -45 -KPX Ucircumflex Atilde -45 -KPX Udieresis A -45 -KPX Udieresis Aacute -45 -KPX Udieresis Abreve -45 -KPX Udieresis Acircumflex -45 -KPX Udieresis Adieresis -45 -KPX Udieresis Agrave -45 -KPX Udieresis Amacron -45 -KPX Udieresis Aogonek -45 -KPX Udieresis Aring -45 -KPX Udieresis Atilde -45 -KPX Ugrave A -45 -KPX Ugrave Aacute -45 -KPX Ugrave Abreve -45 -KPX Ugrave Acircumflex -45 -KPX Ugrave Adieresis -45 -KPX Ugrave Agrave -45 -KPX Ugrave Amacron -45 -KPX Ugrave Aogonek -45 -KPX Ugrave Aring -45 -KPX Ugrave Atilde -45 -KPX Uhungarumlaut A -45 -KPX Uhungarumlaut Aacute -45 -KPX Uhungarumlaut Abreve -45 -KPX Uhungarumlaut Acircumflex -45 -KPX Uhungarumlaut Adieresis -45 -KPX Uhungarumlaut Agrave -45 -KPX Uhungarumlaut Amacron -45 -KPX Uhungarumlaut Aogonek -45 -KPX Uhungarumlaut Aring -45 -KPX Uhungarumlaut Atilde -45 -KPX Umacron A -45 -KPX Umacron Aacute -45 -KPX Umacron Abreve -45 -KPX Umacron Acircumflex -45 -KPX Umacron Adieresis -45 -KPX Umacron Agrave -45 -KPX Umacron Amacron -45 -KPX Umacron Aogonek -45 -KPX Umacron Aring -45 -KPX Umacron Atilde -45 -KPX Uogonek A -45 -KPX Uogonek Aacute -45 -KPX Uogonek Abreve -45 -KPX Uogonek Acircumflex -45 -KPX Uogonek Adieresis -45 -KPX Uogonek Agrave -45 -KPX Uogonek Amacron -45 -KPX Uogonek Aogonek -45 -KPX Uogonek Aring -45 -KPX Uogonek Atilde -45 -KPX Uring A -45 -KPX Uring Aacute -45 -KPX Uring Abreve -45 -KPX Uring Acircumflex -45 -KPX Uring Adieresis -45 -KPX Uring Agrave -45 -KPX Uring Amacron -45 -KPX Uring Aogonek -45 -KPX Uring Aring -45 -KPX Uring Atilde -45 -KPX V A -85 -KPX V Aacute -85 -KPX V Abreve -85 -KPX V Acircumflex -85 -KPX V Adieresis -85 -KPX V Agrave -85 -KPX V Amacron -85 -KPX V Aogonek -85 -KPX V Aring -85 -KPX V Atilde -85 -KPX V G -10 -KPX V Gbreve -10 -KPX V Gcommaaccent -10 -KPX V O -30 -KPX V Oacute -30 -KPX V Ocircumflex -30 -KPX V Odieresis -30 -KPX V Ograve -30 -KPX V Ohungarumlaut -30 -KPX V Omacron -30 -KPX V Oslash -30 -KPX V Otilde -30 -KPX V a -111 -KPX V aacute -111 -KPX V abreve -111 -KPX V acircumflex -111 -KPX V adieresis -111 -KPX V agrave -111 -KPX V amacron -111 -KPX V aogonek -111 -KPX V aring -111 -KPX V atilde -111 -KPX V colon -74 -KPX V comma -129 -KPX V e -111 -KPX V eacute -111 -KPX V ecaron -111 -KPX V ecircumflex -111 -KPX V edieresis -71 -KPX V edotaccent -111 -KPX V egrave -71 -KPX V emacron -71 -KPX V eogonek -111 -KPX V hyphen -70 -KPX V i -55 -KPX V iacute -55 -KPX V iogonek -55 -KPX V o -111 -KPX V oacute -111 -KPX V ocircumflex -111 -KPX V odieresis -111 -KPX V ograve -111 -KPX V ohungarumlaut -111 -KPX V omacron -111 -KPX V oslash -111 -KPX V otilde -111 -KPX V period -129 -KPX V semicolon -74 -KPX V u -55 -KPX V uacute -55 -KPX V ucircumflex -55 -KPX V udieresis -55 -KPX V ugrave -55 -KPX V uhungarumlaut -55 -KPX V umacron -55 -KPX V uogonek -55 -KPX V uring -55 -KPX W A -74 -KPX W Aacute -74 -KPX W Abreve -74 -KPX W Acircumflex -74 -KPX W Adieresis -74 -KPX W Agrave -74 -KPX W Amacron -74 -KPX W Aogonek -74 -KPX W Aring -74 -KPX W Atilde -74 -KPX W O -15 -KPX W Oacute -15 -KPX W Ocircumflex -15 -KPX W Odieresis -15 -KPX W Ograve -15 -KPX W Ohungarumlaut -15 -KPX W Omacron -15 -KPX W Oslash -15 -KPX W Otilde -15 -KPX W a -85 -KPX W aacute -85 -KPX W abreve -85 -KPX W acircumflex -85 -KPX W adieresis -85 -KPX W agrave -85 -KPX W amacron -85 -KPX W aogonek -85 -KPX W aring -85 -KPX W atilde -85 -KPX W colon -55 -KPX W comma -74 -KPX W e -90 -KPX W eacute -90 -KPX W ecaron -90 -KPX W ecircumflex -90 -KPX W edieresis -50 -KPX W edotaccent -90 -KPX W egrave -50 -KPX W emacron -50 -KPX W eogonek -90 -KPX W hyphen -50 -KPX W i -37 -KPX W iacute -37 -KPX W iogonek -37 -KPX W o -80 -KPX W oacute -80 -KPX W ocircumflex -80 -KPX W odieresis -80 -KPX W ograve -80 -KPX W ohungarumlaut -80 -KPX W omacron -80 -KPX W oslash -80 -KPX W otilde -80 -KPX W period -74 -KPX W semicolon -55 -KPX W u -55 -KPX W uacute -55 -KPX W ucircumflex -55 -KPX W udieresis -55 -KPX W ugrave -55 -KPX W uhungarumlaut -55 -KPX W umacron -55 -KPX W uogonek -55 -KPX W uring -55 -KPX W y -55 -KPX W yacute -55 -KPX W ydieresis -55 -KPX Y A -74 -KPX Y Aacute -74 -KPX Y Abreve -74 -KPX Y Acircumflex -74 -KPX Y Adieresis -74 -KPX Y Agrave -74 -KPX Y Amacron -74 -KPX Y Aogonek -74 -KPX Y Aring -74 -KPX Y Atilde -74 -KPX Y O -25 -KPX Y Oacute -25 -KPX Y Ocircumflex -25 -KPX Y Odieresis -25 -KPX Y Ograve -25 -KPX Y Ohungarumlaut -25 -KPX Y Omacron -25 -KPX Y Oslash -25 -KPX Y Otilde -25 -KPX Y a -92 -KPX Y aacute -92 -KPX Y abreve -92 -KPX Y acircumflex -92 -KPX Y adieresis -92 -KPX Y agrave -92 -KPX Y amacron -92 -KPX Y aogonek -92 -KPX Y aring -92 -KPX Y atilde -92 -KPX Y colon -92 -KPX Y comma -92 -KPX Y e -111 -KPX Y eacute -111 -KPX Y ecaron -111 -KPX Y ecircumflex -71 -KPX Y edieresis -71 -KPX Y edotaccent -111 -KPX Y egrave -71 -KPX Y emacron -71 -KPX Y eogonek -111 -KPX Y hyphen -92 -KPX Y i -55 -KPX Y iacute -55 -KPX Y iogonek -55 -KPX Y o -111 -KPX Y oacute -111 -KPX Y ocircumflex -111 -KPX Y odieresis -111 -KPX Y ograve -111 -KPX Y ohungarumlaut -111 -KPX Y omacron -111 -KPX Y oslash -111 -KPX Y otilde -111 -KPX Y period -74 -KPX Y semicolon -92 -KPX Y u -92 -KPX Y uacute -92 -KPX Y ucircumflex -92 -KPX Y udieresis -92 -KPX Y ugrave -92 -KPX Y uhungarumlaut -92 -KPX Y umacron -92 -KPX Y uogonek -92 -KPX Y uring -92 -KPX Yacute A -74 -KPX Yacute Aacute -74 -KPX Yacute Abreve -74 -KPX Yacute Acircumflex -74 -KPX Yacute Adieresis -74 -KPX Yacute Agrave -74 -KPX Yacute Amacron -74 -KPX Yacute Aogonek -74 -KPX Yacute Aring -74 -KPX Yacute Atilde -74 -KPX Yacute O -25 -KPX Yacute Oacute -25 -KPX Yacute Ocircumflex -25 -KPX Yacute Odieresis -25 -KPX Yacute Ograve -25 -KPX Yacute Ohungarumlaut -25 -KPX Yacute Omacron -25 -KPX Yacute Oslash -25 -KPX Yacute Otilde -25 -KPX Yacute a -92 -KPX Yacute aacute -92 -KPX Yacute abreve -92 -KPX Yacute acircumflex -92 -KPX Yacute adieresis -92 -KPX Yacute agrave -92 -KPX Yacute amacron -92 -KPX Yacute aogonek -92 -KPX Yacute aring -92 -KPX Yacute atilde -92 -KPX Yacute colon -92 -KPX Yacute comma -92 -KPX Yacute e -111 -KPX Yacute eacute -111 -KPX Yacute ecaron -111 -KPX Yacute ecircumflex -71 -KPX Yacute edieresis -71 -KPX Yacute edotaccent -111 -KPX Yacute egrave -71 -KPX Yacute emacron -71 -KPX Yacute eogonek -111 -KPX Yacute hyphen -92 -KPX Yacute i -55 -KPX Yacute iacute -55 -KPX Yacute iogonek -55 -KPX Yacute o -111 -KPX Yacute oacute -111 -KPX Yacute ocircumflex -111 -KPX Yacute odieresis -111 -KPX Yacute ograve -111 -KPX Yacute ohungarumlaut -111 -KPX Yacute omacron -111 -KPX Yacute oslash -111 -KPX Yacute otilde -111 -KPX Yacute period -74 -KPX Yacute semicolon -92 -KPX Yacute u -92 -KPX Yacute uacute -92 -KPX Yacute ucircumflex -92 -KPX Yacute udieresis -92 -KPX Yacute ugrave -92 -KPX Yacute uhungarumlaut -92 -KPX Yacute umacron -92 -KPX Yacute uogonek -92 -KPX Yacute uring -92 -KPX Ydieresis A -74 -KPX Ydieresis Aacute -74 -KPX Ydieresis Abreve -74 -KPX Ydieresis Acircumflex -74 -KPX Ydieresis Adieresis -74 -KPX Ydieresis Agrave -74 -KPX Ydieresis Amacron -74 -KPX Ydieresis Aogonek -74 -KPX Ydieresis Aring -74 -KPX Ydieresis Atilde -74 -KPX Ydieresis O -25 -KPX Ydieresis Oacute -25 -KPX Ydieresis Ocircumflex -25 -KPX Ydieresis Odieresis -25 -KPX Ydieresis Ograve -25 -KPX Ydieresis Ohungarumlaut -25 -KPX Ydieresis Omacron -25 -KPX Ydieresis Oslash -25 -KPX Ydieresis Otilde -25 -KPX Ydieresis a -92 -KPX Ydieresis aacute -92 -KPX Ydieresis abreve -92 -KPX Ydieresis acircumflex -92 -KPX Ydieresis adieresis -92 -KPX Ydieresis agrave -92 -KPX Ydieresis amacron -92 -KPX Ydieresis aogonek -92 -KPX Ydieresis aring -92 -KPX Ydieresis atilde -92 -KPX Ydieresis colon -92 -KPX Ydieresis comma -92 -KPX Ydieresis e -111 -KPX Ydieresis eacute -111 -KPX Ydieresis ecaron -111 -KPX Ydieresis ecircumflex -71 -KPX Ydieresis edieresis -71 -KPX Ydieresis edotaccent -111 -KPX Ydieresis egrave -71 -KPX Ydieresis emacron -71 -KPX Ydieresis eogonek -111 -KPX Ydieresis hyphen -92 -KPX Ydieresis i -55 -KPX Ydieresis iacute -55 -KPX Ydieresis iogonek -55 -KPX Ydieresis o -111 -KPX Ydieresis oacute -111 -KPX Ydieresis ocircumflex -111 -KPX Ydieresis odieresis -111 -KPX Ydieresis ograve -111 -KPX Ydieresis ohungarumlaut -111 -KPX Ydieresis omacron -111 -KPX Ydieresis oslash -111 -KPX Ydieresis otilde -111 -KPX Ydieresis period -74 -KPX Ydieresis semicolon -92 -KPX Ydieresis u -92 -KPX Ydieresis uacute -92 -KPX Ydieresis ucircumflex -92 -KPX Ydieresis udieresis -92 -KPX Ydieresis ugrave -92 -KPX Ydieresis uhungarumlaut -92 -KPX Ydieresis umacron -92 -KPX Ydieresis uogonek -92 -KPX Ydieresis uring -92 -KPX b b -10 -KPX b period -40 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX c h -10 -KPX c k -10 -KPX c kcommaaccent -10 -KPX cacute h -10 -KPX cacute k -10 -KPX cacute kcommaaccent -10 -KPX ccaron h -10 -KPX ccaron k -10 -KPX ccaron kcommaaccent -10 -KPX ccedilla h -10 -KPX ccedilla k -10 -KPX ccedilla kcommaaccent -10 -KPX comma quotedblright -95 -KPX comma quoteright -95 -KPX e b -10 -KPX eacute b -10 -KPX ecaron b -10 -KPX ecircumflex b -10 -KPX edieresis b -10 -KPX edotaccent b -10 -KPX egrave b -10 -KPX emacron b -10 -KPX eogonek b -10 -KPX f comma -10 -KPX f dotlessi -30 -KPX f e -10 -KPX f eacute -10 -KPX f edotaccent -10 -KPX f eogonek -10 -KPX f f -18 -KPX f o -10 -KPX f oacute -10 -KPX f ocircumflex -10 -KPX f ograve -10 -KPX f ohungarumlaut -10 -KPX f oslash -10 -KPX f otilde -10 -KPX f period -10 -KPX f quoteright 55 -KPX k e -30 -KPX k eacute -30 -KPX k ecaron -30 -KPX k ecircumflex -30 -KPX k edieresis -30 -KPX k edotaccent -30 -KPX k egrave -30 -KPX k emacron -30 -KPX k eogonek -30 -KPX k o -10 -KPX k oacute -10 -KPX k ocircumflex -10 -KPX k odieresis -10 -KPX k ograve -10 -KPX k ohungarumlaut -10 -KPX k omacron -10 -KPX k oslash -10 -KPX k otilde -10 -KPX kcommaaccent e -30 -KPX kcommaaccent eacute -30 -KPX kcommaaccent ecaron -30 -KPX kcommaaccent ecircumflex -30 -KPX kcommaaccent edieresis -30 -KPX kcommaaccent edotaccent -30 -KPX kcommaaccent egrave -30 -KPX kcommaaccent emacron -30 -KPX kcommaaccent eogonek -30 -KPX kcommaaccent o -10 -KPX kcommaaccent oacute -10 -KPX kcommaaccent ocircumflex -10 -KPX kcommaaccent odieresis -10 -KPX kcommaaccent ograve -10 -KPX kcommaaccent ohungarumlaut -10 -KPX kcommaaccent omacron -10 -KPX kcommaaccent oslash -10 -KPX kcommaaccent otilde -10 -KPX n v -40 -KPX nacute v -40 -KPX ncaron v -40 -KPX ncommaaccent v -40 -KPX ntilde v -40 -KPX o v -15 -KPX o w -25 -KPX o x -10 -KPX o y -10 -KPX o yacute -10 -KPX o ydieresis -10 -KPX oacute v -15 -KPX oacute w -25 -KPX oacute x -10 -KPX oacute y -10 -KPX oacute yacute -10 -KPX oacute ydieresis -10 -KPX ocircumflex v -15 -KPX ocircumflex w -25 -KPX ocircumflex x -10 -KPX ocircumflex y -10 -KPX ocircumflex yacute -10 -KPX ocircumflex ydieresis -10 -KPX odieresis v -15 -KPX odieresis w -25 -KPX odieresis x -10 -KPX odieresis y -10 -KPX odieresis yacute -10 -KPX odieresis ydieresis -10 -KPX ograve v -15 -KPX ograve w -25 -KPX ograve x -10 -KPX ograve y -10 -KPX ograve yacute -10 -KPX ograve ydieresis -10 -KPX ohungarumlaut v -15 -KPX ohungarumlaut w -25 -KPX ohungarumlaut x -10 -KPX ohungarumlaut y -10 -KPX ohungarumlaut yacute -10 -KPX ohungarumlaut ydieresis -10 -KPX omacron v -15 -KPX omacron w -25 -KPX omacron x -10 -KPX omacron y -10 -KPX omacron yacute -10 -KPX omacron ydieresis -10 -KPX oslash v -15 -KPX oslash w -25 -KPX oslash x -10 -KPX oslash y -10 -KPX oslash yacute -10 -KPX oslash ydieresis -10 -KPX otilde v -15 -KPX otilde w -25 -KPX otilde x -10 -KPX otilde y -10 -KPX otilde yacute -10 -KPX otilde ydieresis -10 -KPX period quotedblright -95 -KPX period quoteright -95 -KPX quoteleft quoteleft -74 -KPX quoteright d -15 -KPX quoteright dcroat -15 -KPX quoteright quoteright -74 -KPX quoteright r -15 -KPX quoteright racute -15 -KPX quoteright rcaron -15 -KPX quoteright rcommaaccent -15 -KPX quoteright s -74 -KPX quoteright sacute -74 -KPX quoteright scaron -74 -KPX quoteright scedilla -74 -KPX quoteright scommaaccent -74 -KPX quoteright space -74 -KPX quoteright t -37 -KPX quoteright tcommaaccent -37 -KPX quoteright v -15 -KPX r comma -65 -KPX r period -65 -KPX racute comma -65 -KPX racute period -65 -KPX rcaron comma -65 -KPX rcaron period -65 -KPX rcommaaccent comma -65 -KPX rcommaaccent period -65 -KPX space A -37 -KPX space Aacute -37 -KPX space Abreve -37 -KPX space Acircumflex -37 -KPX space Adieresis -37 -KPX space Agrave -37 -KPX space Amacron -37 -KPX space Aogonek -37 -KPX space Aring -37 -KPX space Atilde -37 -KPX space V -70 -KPX space W -70 -KPX space Y -70 -KPX space Yacute -70 -KPX space Ydieresis -70 -KPX v comma -37 -KPX v e -15 -KPX v eacute -15 -KPX v ecaron -15 -KPX v ecircumflex -15 -KPX v edieresis -15 -KPX v edotaccent -15 -KPX v egrave -15 -KPX v emacron -15 -KPX v eogonek -15 -KPX v o -15 -KPX v oacute -15 -KPX v ocircumflex -15 -KPX v odieresis -15 -KPX v ograve -15 -KPX v ohungarumlaut -15 -KPX v omacron -15 -KPX v oslash -15 -KPX v otilde -15 -KPX v period -37 -KPX w a -10 -KPX w aacute -10 -KPX w abreve -10 -KPX w acircumflex -10 -KPX w adieresis -10 -KPX w agrave -10 -KPX w amacron -10 -KPX w aogonek -10 -KPX w aring -10 -KPX w atilde -10 -KPX w comma -37 -KPX w e -10 -KPX w eacute -10 -KPX w ecaron -10 -KPX w ecircumflex -10 -KPX w edieresis -10 -KPX w edotaccent -10 -KPX w egrave -10 -KPX w emacron -10 -KPX w eogonek -10 -KPX w o -15 -KPX w oacute -15 -KPX w ocircumflex -15 -KPX w odieresis -15 -KPX w ograve -15 -KPX w ohungarumlaut -15 -KPX w omacron -15 -KPX w oslash -15 -KPX w otilde -15 -KPX w period -37 -KPX x e -10 -KPX x eacute -10 -KPX x ecaron -10 -KPX x ecircumflex -10 -KPX x edieresis -10 -KPX x edotaccent -10 -KPX x egrave -10 -KPX x emacron -10 -KPX x eogonek -10 -KPX y comma -37 -KPX y period -37 -KPX yacute comma -37 -KPX yacute period -37 -KPX ydieresis comma -37 -KPX ydieresis period -37 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Times-Italic.afm b/target/classes/com/itextpdf/text/pdf/fonts/Times-Italic.afm deleted file mode 100644 index b0eaee40..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Times-Italic.afm +++ /dev/null @@ -1,2667 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 12:56:55 1997 -Comment UniqueID 43067 -Comment VMusage 47727 58752 -FontName Times-Italic -FullName Times Italic -FamilyName Times -Weight Medium -ItalicAngle -15.5 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -169 -217 1010 883 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 653 -XHeight 441 -Ascender 683 -Descender -217 -StdHW 32 -StdVW 76 -StartCharMetrics 315 -C 32 ; WX 250 ; N space ; B 0 0 0 0 ; -C 33 ; WX 333 ; N exclam ; B 39 -11 302 667 ; -C 34 ; WX 420 ; N quotedbl ; B 144 421 432 666 ; -C 35 ; WX 500 ; N numbersign ; B 2 0 540 676 ; -C 36 ; WX 500 ; N dollar ; B 31 -89 497 731 ; -C 37 ; WX 833 ; N percent ; B 79 -13 790 676 ; -C 38 ; WX 778 ; N ampersand ; B 76 -18 723 666 ; -C 39 ; WX 333 ; N quoteright ; B 151 436 290 666 ; -C 40 ; WX 333 ; N parenleft ; B 42 -181 315 669 ; -C 41 ; WX 333 ; N parenright ; B 16 -180 289 669 ; -C 42 ; WX 500 ; N asterisk ; B 128 255 492 666 ; -C 43 ; WX 675 ; N plus ; B 86 0 590 506 ; -C 44 ; WX 250 ; N comma ; B -4 -129 135 101 ; -C 45 ; WX 333 ; N hyphen ; B 49 192 282 255 ; -C 46 ; WX 250 ; N period ; B 27 -11 138 100 ; -C 47 ; WX 278 ; N slash ; B -65 -18 386 666 ; -C 48 ; WX 500 ; N zero ; B 32 -7 497 676 ; -C 49 ; WX 500 ; N one ; B 49 0 409 676 ; -C 50 ; WX 500 ; N two ; B 12 0 452 676 ; -C 51 ; WX 500 ; N three ; B 15 -7 465 676 ; -C 52 ; WX 500 ; N four ; B 1 0 479 676 ; -C 53 ; WX 500 ; N five ; B 15 -7 491 666 ; -C 54 ; WX 500 ; N six ; B 30 -7 521 686 ; -C 55 ; WX 500 ; N seven ; B 75 -8 537 666 ; -C 56 ; WX 500 ; N eight ; B 30 -7 493 676 ; -C 57 ; WX 500 ; N nine ; B 23 -17 492 676 ; -C 58 ; WX 333 ; N colon ; B 50 -11 261 441 ; -C 59 ; WX 333 ; N semicolon ; B 27 -129 261 441 ; -C 60 ; WX 675 ; N less ; B 84 -8 592 514 ; -C 61 ; WX 675 ; N equal ; B 86 120 590 386 ; -C 62 ; WX 675 ; N greater ; B 84 -8 592 514 ; -C 63 ; WX 500 ; N question ; B 132 -12 472 664 ; -C 64 ; WX 920 ; N at ; B 118 -18 806 666 ; -C 65 ; WX 611 ; N A ; B -51 0 564 668 ; -C 66 ; WX 611 ; N B ; B -8 0 588 653 ; -C 67 ; WX 667 ; N C ; B 66 -18 689 666 ; -C 68 ; WX 722 ; N D ; B -8 0 700 653 ; -C 69 ; WX 611 ; N E ; B -1 0 634 653 ; -C 70 ; WX 611 ; N F ; B 8 0 645 653 ; -C 71 ; WX 722 ; N G ; B 52 -18 722 666 ; -C 72 ; WX 722 ; N H ; B -8 0 767 653 ; -C 73 ; WX 333 ; N I ; B -8 0 384 653 ; -C 74 ; WX 444 ; N J ; B -6 -18 491 653 ; -C 75 ; WX 667 ; N K ; B 7 0 722 653 ; -C 76 ; WX 556 ; N L ; B -8 0 559 653 ; -C 77 ; WX 833 ; N M ; B -18 0 873 653 ; -C 78 ; WX 667 ; N N ; B -20 -15 727 653 ; -C 79 ; WX 722 ; N O ; B 60 -18 699 666 ; -C 80 ; WX 611 ; N P ; B 0 0 605 653 ; -C 81 ; WX 722 ; N Q ; B 59 -182 699 666 ; -C 82 ; WX 611 ; N R ; B -13 0 588 653 ; -C 83 ; WX 500 ; N S ; B 17 -18 508 667 ; -C 84 ; WX 556 ; N T ; B 59 0 633 653 ; -C 85 ; WX 722 ; N U ; B 102 -18 765 653 ; -C 86 ; WX 611 ; N V ; B 76 -18 688 653 ; -C 87 ; WX 833 ; N W ; B 71 -18 906 653 ; -C 88 ; WX 611 ; N X ; B -29 0 655 653 ; -C 89 ; WX 556 ; N Y ; B 78 0 633 653 ; -C 90 ; WX 556 ; N Z ; B -6 0 606 653 ; -C 91 ; WX 389 ; N bracketleft ; B 21 -153 391 663 ; -C 92 ; WX 278 ; N backslash ; B -41 -18 319 666 ; -C 93 ; WX 389 ; N bracketright ; B 12 -153 382 663 ; -C 94 ; WX 422 ; N asciicircum ; B 0 301 422 666 ; -C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; -C 96 ; WX 333 ; N quoteleft ; B 171 436 310 666 ; -C 97 ; WX 500 ; N a ; B 17 -11 476 441 ; -C 98 ; WX 500 ; N b ; B 23 -11 473 683 ; -C 99 ; WX 444 ; N c ; B 30 -11 425 441 ; -C 100 ; WX 500 ; N d ; B 15 -13 527 683 ; -C 101 ; WX 444 ; N e ; B 31 -11 412 441 ; -C 102 ; WX 278 ; N f ; B -147 -207 424 678 ; L i fi ; L l fl ; -C 103 ; WX 500 ; N g ; B 8 -206 472 441 ; -C 104 ; WX 500 ; N h ; B 19 -9 478 683 ; -C 105 ; WX 278 ; N i ; B 49 -11 264 654 ; -C 106 ; WX 278 ; N j ; B -124 -207 276 654 ; -C 107 ; WX 444 ; N k ; B 14 -11 461 683 ; -C 108 ; WX 278 ; N l ; B 41 -11 279 683 ; -C 109 ; WX 722 ; N m ; B 12 -9 704 441 ; -C 110 ; WX 500 ; N n ; B 14 -9 474 441 ; -C 111 ; WX 500 ; N o ; B 27 -11 468 441 ; -C 112 ; WX 500 ; N p ; B -75 -205 469 441 ; -C 113 ; WX 500 ; N q ; B 25 -209 483 441 ; -C 114 ; WX 389 ; N r ; B 45 0 412 441 ; -C 115 ; WX 389 ; N s ; B 16 -13 366 442 ; -C 116 ; WX 278 ; N t ; B 37 -11 296 546 ; -C 117 ; WX 500 ; N u ; B 42 -11 475 441 ; -C 118 ; WX 444 ; N v ; B 21 -18 426 441 ; -C 119 ; WX 667 ; N w ; B 16 -18 648 441 ; -C 120 ; WX 444 ; N x ; B -27 -11 447 441 ; -C 121 ; WX 444 ; N y ; B -24 -206 426 441 ; -C 122 ; WX 389 ; N z ; B -2 -81 380 428 ; -C 123 ; WX 400 ; N braceleft ; B 51 -177 407 687 ; -C 124 ; WX 275 ; N bar ; B 105 -217 171 783 ; -C 125 ; WX 400 ; N braceright ; B -7 -177 349 687 ; -C 126 ; WX 541 ; N asciitilde ; B 40 183 502 323 ; -C 161 ; WX 389 ; N exclamdown ; B 59 -205 322 473 ; -C 162 ; WX 500 ; N cent ; B 77 -143 472 560 ; -C 163 ; WX 500 ; N sterling ; B 10 -6 517 670 ; -C 164 ; WX 167 ; N fraction ; B -169 -10 337 676 ; -C 165 ; WX 500 ; N yen ; B 27 0 603 653 ; -C 166 ; WX 500 ; N florin ; B 25 -182 507 682 ; -C 167 ; WX 500 ; N section ; B 53 -162 461 666 ; -C 168 ; WX 500 ; N currency ; B -22 53 522 597 ; -C 169 ; WX 214 ; N quotesingle ; B 132 421 241 666 ; -C 170 ; WX 556 ; N quotedblleft ; B 166 436 514 666 ; -C 171 ; WX 500 ; N guillemotleft ; B 53 37 445 403 ; -C 172 ; WX 333 ; N guilsinglleft ; B 51 37 281 403 ; -C 173 ; WX 333 ; N guilsinglright ; B 52 37 282 403 ; -C 174 ; WX 500 ; N fi ; B -141 -207 481 681 ; -C 175 ; WX 500 ; N fl ; B -141 -204 518 682 ; -C 177 ; WX 500 ; N endash ; B -6 197 505 243 ; -C 178 ; WX 500 ; N dagger ; B 101 -159 488 666 ; -C 179 ; WX 500 ; N daggerdbl ; B 22 -143 491 666 ; -C 180 ; WX 250 ; N periodcentered ; B 70 199 181 310 ; -C 182 ; WX 523 ; N paragraph ; B 55 -123 616 653 ; -C 183 ; WX 350 ; N bullet ; B 40 191 310 461 ; -C 184 ; WX 333 ; N quotesinglbase ; B 44 -129 183 101 ; -C 185 ; WX 556 ; N quotedblbase ; B 57 -129 405 101 ; -C 186 ; WX 556 ; N quotedblright ; B 151 436 499 666 ; -C 187 ; WX 500 ; N guillemotright ; B 55 37 447 403 ; -C 188 ; WX 889 ; N ellipsis ; B 57 -11 762 100 ; -C 189 ; WX 1000 ; N perthousand ; B 25 -19 1010 706 ; -C 191 ; WX 500 ; N questiondown ; B 28 -205 368 471 ; -C 193 ; WX 333 ; N grave ; B 121 492 311 664 ; -C 194 ; WX 333 ; N acute ; B 180 494 403 664 ; -C 195 ; WX 333 ; N circumflex ; B 91 492 385 661 ; -C 196 ; WX 333 ; N tilde ; B 100 517 427 624 ; -C 197 ; WX 333 ; N macron ; B 99 532 411 583 ; -C 198 ; WX 333 ; N breve ; B 117 492 418 650 ; -C 199 ; WX 333 ; N dotaccent ; B 207 548 305 646 ; -C 200 ; WX 333 ; N dieresis ; B 107 548 405 646 ; -C 202 ; WX 333 ; N ring ; B 155 492 355 691 ; -C 203 ; WX 333 ; N cedilla ; B -30 -217 182 0 ; -C 205 ; WX 333 ; N hungarumlaut ; B 93 494 486 664 ; -C 206 ; WX 333 ; N ogonek ; B 20 -169 203 40 ; -C 207 ; WX 333 ; N caron ; B 121 492 426 661 ; -C 208 ; WX 889 ; N emdash ; B -6 197 894 243 ; -C 225 ; WX 889 ; N AE ; B -27 0 911 653 ; -C 227 ; WX 276 ; N ordfeminine ; B 42 406 352 676 ; -C 232 ; WX 556 ; N Lslash ; B -8 0 559 653 ; -C 233 ; WX 722 ; N Oslash ; B 60 -105 699 722 ; -C 234 ; WX 944 ; N OE ; B 49 -8 964 666 ; -C 235 ; WX 310 ; N ordmasculine ; B 67 406 362 676 ; -C 241 ; WX 667 ; N ae ; B 23 -11 640 441 ; -C 245 ; WX 278 ; N dotlessi ; B 49 -11 235 441 ; -C 248 ; WX 278 ; N lslash ; B 41 -11 312 683 ; -C 249 ; WX 500 ; N oslash ; B 28 -135 469 554 ; -C 250 ; WX 667 ; N oe ; B 20 -12 646 441 ; -C 251 ; WX 500 ; N germandbls ; B -168 -207 493 679 ; -C -1 ; WX 333 ; N Idieresis ; B -8 0 435 818 ; -C -1 ; WX 444 ; N eacute ; B 31 -11 459 664 ; -C -1 ; WX 500 ; N abreve ; B 17 -11 502 650 ; -C -1 ; WX 500 ; N uhungarumlaut ; B 42 -11 580 664 ; -C -1 ; WX 444 ; N ecaron ; B 31 -11 482 661 ; -C -1 ; WX 556 ; N Ydieresis ; B 78 0 633 818 ; -C -1 ; WX 675 ; N divide ; B 86 -11 590 517 ; -C -1 ; WX 556 ; N Yacute ; B 78 0 633 876 ; -C -1 ; WX 611 ; N Acircumflex ; B -51 0 564 873 ; -C -1 ; WX 500 ; N aacute ; B 17 -11 487 664 ; -C -1 ; WX 722 ; N Ucircumflex ; B 102 -18 765 873 ; -C -1 ; WX 444 ; N yacute ; B -24 -206 459 664 ; -C -1 ; WX 389 ; N scommaaccent ; B 16 -217 366 442 ; -C -1 ; WX 444 ; N ecircumflex ; B 31 -11 441 661 ; -C -1 ; WX 722 ; N Uring ; B 102 -18 765 883 ; -C -1 ; WX 722 ; N Udieresis ; B 102 -18 765 818 ; -C -1 ; WX 500 ; N aogonek ; B 17 -169 476 441 ; -C -1 ; WX 722 ; N Uacute ; B 102 -18 765 876 ; -C -1 ; WX 500 ; N uogonek ; B 42 -169 477 441 ; -C -1 ; WX 611 ; N Edieresis ; B -1 0 634 818 ; -C -1 ; WX 722 ; N Dcroat ; B -8 0 700 653 ; -C -1 ; WX 250 ; N commaaccent ; B 8 -217 133 -50 ; -C -1 ; WX 760 ; N copyright ; B 41 -18 719 666 ; -C -1 ; WX 611 ; N Emacron ; B -1 0 634 795 ; -C -1 ; WX 444 ; N ccaron ; B 30 -11 482 661 ; -C -1 ; WX 500 ; N aring ; B 17 -11 476 691 ; -C -1 ; WX 667 ; N Ncommaaccent ; B -20 -187 727 653 ; -C -1 ; WX 278 ; N lacute ; B 41 -11 395 876 ; -C -1 ; WX 500 ; N agrave ; B 17 -11 476 664 ; -C -1 ; WX 556 ; N Tcommaaccent ; B 59 -217 633 653 ; -C -1 ; WX 667 ; N Cacute ; B 66 -18 690 876 ; -C -1 ; WX 500 ; N atilde ; B 17 -11 511 624 ; -C -1 ; WX 611 ; N Edotaccent ; B -1 0 634 818 ; -C -1 ; WX 389 ; N scaron ; B 16 -13 454 661 ; -C -1 ; WX 389 ; N scedilla ; B 16 -217 366 442 ; -C -1 ; WX 278 ; N iacute ; B 49 -11 355 664 ; -C -1 ; WX 471 ; N lozenge ; B 13 0 459 724 ; -C -1 ; WX 611 ; N Rcaron ; B -13 0 588 873 ; -C -1 ; WX 722 ; N Gcommaaccent ; B 52 -217 722 666 ; -C -1 ; WX 500 ; N ucircumflex ; B 42 -11 475 661 ; -C -1 ; WX 500 ; N acircumflex ; B 17 -11 476 661 ; -C -1 ; WX 611 ; N Amacron ; B -51 0 564 795 ; -C -1 ; WX 389 ; N rcaron ; B 45 0 434 661 ; -C -1 ; WX 444 ; N ccedilla ; B 30 -217 425 441 ; -C -1 ; WX 556 ; N Zdotaccent ; B -6 0 606 818 ; -C -1 ; WX 611 ; N Thorn ; B 0 0 569 653 ; -C -1 ; WX 722 ; N Omacron ; B 60 -18 699 795 ; -C -1 ; WX 611 ; N Racute ; B -13 0 588 876 ; -C -1 ; WX 500 ; N Sacute ; B 17 -18 508 876 ; -C -1 ; WX 544 ; N dcaron ; B 15 -13 658 683 ; -C -1 ; WX 722 ; N Umacron ; B 102 -18 765 795 ; -C -1 ; WX 500 ; N uring ; B 42 -11 475 691 ; -C -1 ; WX 300 ; N threesuperior ; B 43 268 339 676 ; -C -1 ; WX 722 ; N Ograve ; B 60 -18 699 876 ; -C -1 ; WX 611 ; N Agrave ; B -51 0 564 876 ; -C -1 ; WX 611 ; N Abreve ; B -51 0 564 862 ; -C -1 ; WX 675 ; N multiply ; B 93 8 582 497 ; -C -1 ; WX 500 ; N uacute ; B 42 -11 477 664 ; -C -1 ; WX 556 ; N Tcaron ; B 59 0 633 873 ; -C -1 ; WX 476 ; N partialdiff ; B 17 -38 459 710 ; -C -1 ; WX 444 ; N ydieresis ; B -24 -206 441 606 ; -C -1 ; WX 667 ; N Nacute ; B -20 -15 727 876 ; -C -1 ; WX 278 ; N icircumflex ; B 33 -11 327 661 ; -C -1 ; WX 611 ; N Ecircumflex ; B -1 0 634 873 ; -C -1 ; WX 500 ; N adieresis ; B 17 -11 489 606 ; -C -1 ; WX 444 ; N edieresis ; B 31 -11 451 606 ; -C -1 ; WX 444 ; N cacute ; B 30 -11 459 664 ; -C -1 ; WX 500 ; N nacute ; B 14 -9 477 664 ; -C -1 ; WX 500 ; N umacron ; B 42 -11 485 583 ; -C -1 ; WX 667 ; N Ncaron ; B -20 -15 727 873 ; -C -1 ; WX 333 ; N Iacute ; B -8 0 433 876 ; -C -1 ; WX 675 ; N plusminus ; B 86 0 590 506 ; -C -1 ; WX 275 ; N brokenbar ; B 105 -142 171 708 ; -C -1 ; WX 760 ; N registered ; B 41 -18 719 666 ; -C -1 ; WX 722 ; N Gbreve ; B 52 -18 722 862 ; -C -1 ; WX 333 ; N Idotaccent ; B -8 0 384 818 ; -C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ; -C -1 ; WX 611 ; N Egrave ; B -1 0 634 876 ; -C -1 ; WX 389 ; N racute ; B 45 0 431 664 ; -C -1 ; WX 500 ; N omacron ; B 27 -11 495 583 ; -C -1 ; WX 556 ; N Zacute ; B -6 0 606 876 ; -C -1 ; WX 556 ; N Zcaron ; B -6 0 606 873 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 523 658 ; -C -1 ; WX 722 ; N Eth ; B -8 0 700 653 ; -C -1 ; WX 667 ; N Ccedilla ; B 66 -217 689 666 ; -C -1 ; WX 278 ; N lcommaaccent ; B 22 -217 279 683 ; -C -1 ; WX 300 ; N tcaron ; B 37 -11 407 681 ; -C -1 ; WX 444 ; N eogonek ; B 31 -169 412 441 ; -C -1 ; WX 722 ; N Uogonek ; B 102 -184 765 653 ; -C -1 ; WX 611 ; N Aacute ; B -51 0 564 876 ; -C -1 ; WX 611 ; N Adieresis ; B -51 0 564 818 ; -C -1 ; WX 444 ; N egrave ; B 31 -11 412 664 ; -C -1 ; WX 389 ; N zacute ; B -2 -81 431 664 ; -C -1 ; WX 278 ; N iogonek ; B 49 -169 264 654 ; -C -1 ; WX 722 ; N Oacute ; B 60 -18 699 876 ; -C -1 ; WX 500 ; N oacute ; B 27 -11 487 664 ; -C -1 ; WX 500 ; N amacron ; B 17 -11 495 583 ; -C -1 ; WX 389 ; N sacute ; B 16 -13 431 664 ; -C -1 ; WX 278 ; N idieresis ; B 49 -11 352 606 ; -C -1 ; WX 722 ; N Ocircumflex ; B 60 -18 699 873 ; -C -1 ; WX 722 ; N Ugrave ; B 102 -18 765 876 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 500 ; N thorn ; B -75 -205 469 683 ; -C -1 ; WX 300 ; N twosuperior ; B 33 271 324 676 ; -C -1 ; WX 722 ; N Odieresis ; B 60 -18 699 818 ; -C -1 ; WX 500 ; N mu ; B -30 -209 497 428 ; -C -1 ; WX 278 ; N igrave ; B 49 -11 284 664 ; -C -1 ; WX 500 ; N ohungarumlaut ; B 27 -11 590 664 ; -C -1 ; WX 611 ; N Eogonek ; B -1 -169 634 653 ; -C -1 ; WX 500 ; N dcroat ; B 15 -13 572 683 ; -C -1 ; WX 750 ; N threequarters ; B 23 -10 736 676 ; -C -1 ; WX 500 ; N Scedilla ; B 17 -217 508 667 ; -C -1 ; WX 300 ; N lcaron ; B 41 -11 407 683 ; -C -1 ; WX 667 ; N Kcommaaccent ; B 7 -217 722 653 ; -C -1 ; WX 556 ; N Lacute ; B -8 0 559 876 ; -C -1 ; WX 980 ; N trademark ; B 30 247 957 653 ; -C -1 ; WX 444 ; N edotaccent ; B 31 -11 412 606 ; -C -1 ; WX 333 ; N Igrave ; B -8 0 384 876 ; -C -1 ; WX 333 ; N Imacron ; B -8 0 441 795 ; -C -1 ; WX 611 ; N Lcaron ; B -8 0 586 653 ; -C -1 ; WX 750 ; N onehalf ; B 34 -10 749 676 ; -C -1 ; WX 549 ; N lessequal ; B 26 0 523 658 ; -C -1 ; WX 500 ; N ocircumflex ; B 27 -11 468 661 ; -C -1 ; WX 500 ; N ntilde ; B 14 -9 476 624 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 102 -18 765 876 ; -C -1 ; WX 611 ; N Eacute ; B -1 0 634 876 ; -C -1 ; WX 444 ; N emacron ; B 31 -11 457 583 ; -C -1 ; WX 500 ; N gbreve ; B 8 -206 487 650 ; -C -1 ; WX 750 ; N onequarter ; B 33 -10 736 676 ; -C -1 ; WX 500 ; N Scaron ; B 17 -18 520 873 ; -C -1 ; WX 500 ; N Scommaaccent ; B 17 -217 508 667 ; -C -1 ; WX 722 ; N Ohungarumlaut ; B 60 -18 699 876 ; -C -1 ; WX 400 ; N degree ; B 101 390 387 676 ; -C -1 ; WX 500 ; N ograve ; B 27 -11 468 664 ; -C -1 ; WX 667 ; N Ccaron ; B 66 -18 689 873 ; -C -1 ; WX 500 ; N ugrave ; B 42 -11 475 664 ; -C -1 ; WX 453 ; N radical ; B 2 -60 452 768 ; -C -1 ; WX 722 ; N Dcaron ; B -8 0 700 873 ; -C -1 ; WX 389 ; N rcommaaccent ; B -3 -217 412 441 ; -C -1 ; WX 667 ; N Ntilde ; B -20 -15 727 836 ; -C -1 ; WX 500 ; N otilde ; B 27 -11 496 624 ; -C -1 ; WX 611 ; N Rcommaaccent ; B -13 -187 588 653 ; -C -1 ; WX 556 ; N Lcommaaccent ; B -8 -217 559 653 ; -C -1 ; WX 611 ; N Atilde ; B -51 0 566 836 ; -C -1 ; WX 611 ; N Aogonek ; B -51 -169 566 668 ; -C -1 ; WX 611 ; N Aring ; B -51 0 564 883 ; -C -1 ; WX 722 ; N Otilde ; B 60 -18 699 836 ; -C -1 ; WX 389 ; N zdotaccent ; B -2 -81 380 606 ; -C -1 ; WX 611 ; N Ecaron ; B -1 0 634 873 ; -C -1 ; WX 333 ; N Iogonek ; B -8 -169 384 653 ; -C -1 ; WX 444 ; N kcommaaccent ; B 14 -187 461 683 ; -C -1 ; WX 675 ; N minus ; B 86 220 590 286 ; -C -1 ; WX 333 ; N Icircumflex ; B -8 0 425 873 ; -C -1 ; WX 500 ; N ncaron ; B 14 -9 510 661 ; -C -1 ; WX 278 ; N tcommaaccent ; B 2 -217 296 546 ; -C -1 ; WX 675 ; N logicalnot ; B 86 108 590 386 ; -C -1 ; WX 500 ; N odieresis ; B 27 -11 489 606 ; -C -1 ; WX 500 ; N udieresis ; B 42 -11 479 606 ; -C -1 ; WX 549 ; N notequal ; B 12 -29 537 541 ; -C -1 ; WX 500 ; N gcommaaccent ; B 8 -206 472 706 ; -C -1 ; WX 500 ; N eth ; B 27 -11 482 683 ; -C -1 ; WX 389 ; N zcaron ; B -2 -81 434 661 ; -C -1 ; WX 500 ; N ncommaaccent ; B 14 -187 474 441 ; -C -1 ; WX 300 ; N onesuperior ; B 43 271 284 676 ; -C -1 ; WX 278 ; N imacron ; B 46 -11 311 583 ; -C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2321 -KPX A C -30 -KPX A Cacute -30 -KPX A Ccaron -30 -KPX A Ccedilla -30 -KPX A G -35 -KPX A Gbreve -35 -KPX A Gcommaaccent -35 -KPX A O -40 -KPX A Oacute -40 -KPX A Ocircumflex -40 -KPX A Odieresis -40 -KPX A Ograve -40 -KPX A Ohungarumlaut -40 -KPX A Omacron -40 -KPX A Oslash -40 -KPX A Otilde -40 -KPX A Q -40 -KPX A T -37 -KPX A Tcaron -37 -KPX A Tcommaaccent -37 -KPX A U -50 -KPX A Uacute -50 -KPX A Ucircumflex -50 -KPX A Udieresis -50 -KPX A Ugrave -50 -KPX A Uhungarumlaut -50 -KPX A Umacron -50 -KPX A Uogonek -50 -KPX A Uring -50 -KPX A V -105 -KPX A W -95 -KPX A Y -55 -KPX A Yacute -55 -KPX A Ydieresis -55 -KPX A quoteright -37 -KPX A u -20 -KPX A uacute -20 -KPX A ucircumflex -20 -KPX A udieresis -20 -KPX A ugrave -20 -KPX A uhungarumlaut -20 -KPX A umacron -20 -KPX A uogonek -20 -KPX A uring -20 -KPX A v -55 -KPX A w -55 -KPX A y -55 -KPX A yacute -55 -KPX A ydieresis -55 -KPX Aacute C -30 -KPX Aacute Cacute -30 -KPX Aacute Ccaron -30 -KPX Aacute Ccedilla -30 -KPX Aacute G -35 -KPX Aacute Gbreve -35 -KPX Aacute Gcommaaccent -35 -KPX Aacute O -40 -KPX Aacute Oacute -40 -KPX Aacute Ocircumflex -40 -KPX Aacute Odieresis -40 -KPX Aacute Ograve -40 -KPX Aacute Ohungarumlaut -40 -KPX Aacute Omacron -40 -KPX Aacute Oslash -40 -KPX Aacute Otilde -40 -KPX Aacute Q -40 -KPX Aacute T -37 -KPX Aacute Tcaron -37 -KPX Aacute Tcommaaccent -37 -KPX Aacute U -50 -KPX Aacute Uacute -50 -KPX Aacute Ucircumflex -50 -KPX Aacute Udieresis -50 -KPX Aacute Ugrave -50 -KPX Aacute Uhungarumlaut -50 -KPX Aacute Umacron -50 -KPX Aacute Uogonek -50 -KPX Aacute Uring -50 -KPX Aacute V -105 -KPX Aacute W -95 -KPX Aacute Y -55 -KPX Aacute Yacute -55 -KPX Aacute Ydieresis -55 -KPX Aacute quoteright -37 -KPX Aacute u -20 -KPX Aacute uacute -20 -KPX Aacute ucircumflex -20 -KPX Aacute udieresis -20 -KPX Aacute ugrave -20 -KPX Aacute uhungarumlaut -20 -KPX Aacute umacron -20 -KPX Aacute uogonek -20 -KPX Aacute uring -20 -KPX Aacute v -55 -KPX Aacute w -55 -KPX Aacute y -55 -KPX Aacute yacute -55 -KPX Aacute ydieresis -55 -KPX Abreve C -30 -KPX Abreve Cacute -30 -KPX Abreve Ccaron -30 -KPX Abreve Ccedilla -30 -KPX Abreve G -35 -KPX Abreve Gbreve -35 -KPX Abreve Gcommaaccent -35 -KPX Abreve O -40 -KPX Abreve Oacute -40 -KPX Abreve Ocircumflex -40 -KPX Abreve Odieresis -40 -KPX Abreve Ograve -40 -KPX Abreve Ohungarumlaut -40 -KPX Abreve Omacron -40 -KPX Abreve Oslash -40 -KPX Abreve Otilde -40 -KPX Abreve Q -40 -KPX Abreve T -37 -KPX Abreve Tcaron -37 -KPX Abreve Tcommaaccent -37 -KPX Abreve U -50 -KPX Abreve Uacute -50 -KPX Abreve Ucircumflex -50 -KPX Abreve Udieresis -50 -KPX Abreve Ugrave -50 -KPX Abreve Uhungarumlaut -50 -KPX Abreve Umacron -50 -KPX Abreve Uogonek -50 -KPX Abreve Uring -50 -KPX Abreve V -105 -KPX Abreve W -95 -KPX Abreve Y -55 -KPX Abreve Yacute -55 -KPX Abreve Ydieresis -55 -KPX Abreve quoteright -37 -KPX Abreve u -20 -KPX Abreve uacute -20 -KPX Abreve ucircumflex -20 -KPX Abreve udieresis -20 -KPX Abreve ugrave -20 -KPX Abreve uhungarumlaut -20 -KPX Abreve umacron -20 -KPX Abreve uogonek -20 -KPX Abreve uring -20 -KPX Abreve v -55 -KPX Abreve w -55 -KPX Abreve y -55 -KPX Abreve yacute -55 -KPX Abreve ydieresis -55 -KPX Acircumflex C -30 -KPX Acircumflex Cacute -30 -KPX Acircumflex Ccaron -30 -KPX Acircumflex Ccedilla -30 -KPX Acircumflex G -35 -KPX Acircumflex Gbreve -35 -KPX Acircumflex Gcommaaccent -35 -KPX Acircumflex O -40 -KPX Acircumflex Oacute -40 -KPX Acircumflex Ocircumflex -40 -KPX Acircumflex Odieresis -40 -KPX Acircumflex Ograve -40 -KPX Acircumflex Ohungarumlaut -40 -KPX Acircumflex Omacron -40 -KPX Acircumflex Oslash -40 -KPX Acircumflex Otilde -40 -KPX Acircumflex Q -40 -KPX Acircumflex T -37 -KPX Acircumflex Tcaron -37 -KPX Acircumflex Tcommaaccent -37 -KPX Acircumflex U -50 -KPX Acircumflex Uacute -50 -KPX Acircumflex Ucircumflex -50 -KPX Acircumflex Udieresis -50 -KPX Acircumflex Ugrave -50 -KPX Acircumflex Uhungarumlaut -50 -KPX Acircumflex Umacron -50 -KPX Acircumflex Uogonek -50 -KPX Acircumflex Uring -50 -KPX Acircumflex V -105 -KPX Acircumflex W -95 -KPX Acircumflex Y -55 -KPX Acircumflex Yacute -55 -KPX Acircumflex Ydieresis -55 -KPX Acircumflex quoteright -37 -KPX Acircumflex u -20 -KPX Acircumflex uacute -20 -KPX Acircumflex ucircumflex -20 -KPX Acircumflex udieresis -20 -KPX Acircumflex ugrave -20 -KPX Acircumflex uhungarumlaut -20 -KPX Acircumflex umacron -20 -KPX Acircumflex uogonek -20 -KPX Acircumflex uring -20 -KPX Acircumflex v -55 -KPX Acircumflex w -55 -KPX Acircumflex y -55 -KPX Acircumflex yacute -55 -KPX Acircumflex ydieresis -55 -KPX Adieresis C -30 -KPX Adieresis Cacute -30 -KPX Adieresis Ccaron -30 -KPX Adieresis Ccedilla -30 -KPX Adieresis G -35 -KPX Adieresis Gbreve -35 -KPX Adieresis Gcommaaccent -35 -KPX Adieresis O -40 -KPX Adieresis Oacute -40 -KPX Adieresis Ocircumflex -40 -KPX Adieresis Odieresis -40 -KPX Adieresis Ograve -40 -KPX Adieresis Ohungarumlaut -40 -KPX Adieresis Omacron -40 -KPX Adieresis Oslash -40 -KPX Adieresis Otilde -40 -KPX Adieresis Q -40 -KPX Adieresis T -37 -KPX Adieresis Tcaron -37 -KPX Adieresis Tcommaaccent -37 -KPX Adieresis U -50 -KPX Adieresis Uacute -50 -KPX Adieresis Ucircumflex -50 -KPX Adieresis Udieresis -50 -KPX Adieresis Ugrave -50 -KPX Adieresis Uhungarumlaut -50 -KPX Adieresis Umacron -50 -KPX Adieresis Uogonek -50 -KPX Adieresis Uring -50 -KPX Adieresis V -105 -KPX Adieresis W -95 -KPX Adieresis Y -55 -KPX Adieresis Yacute -55 -KPX Adieresis Ydieresis -55 -KPX Adieresis quoteright -37 -KPX Adieresis u -20 -KPX Adieresis uacute -20 -KPX Adieresis ucircumflex -20 -KPX Adieresis udieresis -20 -KPX Adieresis ugrave -20 -KPX Adieresis uhungarumlaut -20 -KPX Adieresis umacron -20 -KPX Adieresis uogonek -20 -KPX Adieresis uring -20 -KPX Adieresis v -55 -KPX Adieresis w -55 -KPX Adieresis y -55 -KPX Adieresis yacute -55 -KPX Adieresis ydieresis -55 -KPX Agrave C -30 -KPX Agrave Cacute -30 -KPX Agrave Ccaron -30 -KPX Agrave Ccedilla -30 -KPX Agrave G -35 -KPX Agrave Gbreve -35 -KPX Agrave Gcommaaccent -35 -KPX Agrave O -40 -KPX Agrave Oacute -40 -KPX Agrave Ocircumflex -40 -KPX Agrave Odieresis -40 -KPX Agrave Ograve -40 -KPX Agrave Ohungarumlaut -40 -KPX Agrave Omacron -40 -KPX Agrave Oslash -40 -KPX Agrave Otilde -40 -KPX Agrave Q -40 -KPX Agrave T -37 -KPX Agrave Tcaron -37 -KPX Agrave Tcommaaccent -37 -KPX Agrave U -50 -KPX Agrave Uacute -50 -KPX Agrave Ucircumflex -50 -KPX Agrave Udieresis -50 -KPX Agrave Ugrave -50 -KPX Agrave Uhungarumlaut -50 -KPX Agrave Umacron -50 -KPX Agrave Uogonek -50 -KPX Agrave Uring -50 -KPX Agrave V -105 -KPX Agrave W -95 -KPX Agrave Y -55 -KPX Agrave Yacute -55 -KPX Agrave Ydieresis -55 -KPX Agrave quoteright -37 -KPX Agrave u -20 -KPX Agrave uacute -20 -KPX Agrave ucircumflex -20 -KPX Agrave udieresis -20 -KPX Agrave ugrave -20 -KPX Agrave uhungarumlaut -20 -KPX Agrave umacron -20 -KPX Agrave uogonek -20 -KPX Agrave uring -20 -KPX Agrave v -55 -KPX Agrave w -55 -KPX Agrave y -55 -KPX Agrave yacute -55 -KPX Agrave ydieresis -55 -KPX Amacron C -30 -KPX Amacron Cacute -30 -KPX Amacron Ccaron -30 -KPX Amacron Ccedilla -30 -KPX Amacron G -35 -KPX Amacron Gbreve -35 -KPX Amacron Gcommaaccent -35 -KPX Amacron O -40 -KPX Amacron Oacute -40 -KPX Amacron Ocircumflex -40 -KPX Amacron Odieresis -40 -KPX Amacron Ograve -40 -KPX Amacron Ohungarumlaut -40 -KPX Amacron Omacron -40 -KPX Amacron Oslash -40 -KPX Amacron Otilde -40 -KPX Amacron Q -40 -KPX Amacron T -37 -KPX Amacron Tcaron -37 -KPX Amacron Tcommaaccent -37 -KPX Amacron U -50 -KPX Amacron Uacute -50 -KPX Amacron Ucircumflex -50 -KPX Amacron Udieresis -50 -KPX Amacron Ugrave -50 -KPX Amacron Uhungarumlaut -50 -KPX Amacron Umacron -50 -KPX Amacron Uogonek -50 -KPX Amacron Uring -50 -KPX Amacron V -105 -KPX Amacron W -95 -KPX Amacron Y -55 -KPX Amacron Yacute -55 -KPX Amacron Ydieresis -55 -KPX Amacron quoteright -37 -KPX Amacron u -20 -KPX Amacron uacute -20 -KPX Amacron ucircumflex -20 -KPX Amacron udieresis -20 -KPX Amacron ugrave -20 -KPX Amacron uhungarumlaut -20 -KPX Amacron umacron -20 -KPX Amacron uogonek -20 -KPX Amacron uring -20 -KPX Amacron v -55 -KPX Amacron w -55 -KPX Amacron y -55 -KPX Amacron yacute -55 -KPX Amacron ydieresis -55 -KPX Aogonek C -30 -KPX Aogonek Cacute -30 -KPX Aogonek Ccaron -30 -KPX Aogonek Ccedilla -30 -KPX Aogonek G -35 -KPX Aogonek Gbreve -35 -KPX Aogonek Gcommaaccent -35 -KPX Aogonek O -40 -KPX Aogonek Oacute -40 -KPX Aogonek Ocircumflex -40 -KPX Aogonek Odieresis -40 -KPX Aogonek Ograve -40 -KPX Aogonek Ohungarumlaut -40 -KPX Aogonek Omacron -40 -KPX Aogonek Oslash -40 -KPX Aogonek Otilde -40 -KPX Aogonek Q -40 -KPX Aogonek T -37 -KPX Aogonek Tcaron -37 -KPX Aogonek Tcommaaccent -37 -KPX Aogonek U -50 -KPX Aogonek Uacute -50 -KPX Aogonek Ucircumflex -50 -KPX Aogonek Udieresis -50 -KPX Aogonek Ugrave -50 -KPX Aogonek Uhungarumlaut -50 -KPX Aogonek Umacron -50 -KPX Aogonek Uogonek -50 -KPX Aogonek Uring -50 -KPX Aogonek V -105 -KPX Aogonek W -95 -KPX Aogonek Y -55 -KPX Aogonek Yacute -55 -KPX Aogonek Ydieresis -55 -KPX Aogonek quoteright -37 -KPX Aogonek u -20 -KPX Aogonek uacute -20 -KPX Aogonek ucircumflex -20 -KPX Aogonek udieresis -20 -KPX Aogonek ugrave -20 -KPX Aogonek uhungarumlaut -20 -KPX Aogonek umacron -20 -KPX Aogonek uogonek -20 -KPX Aogonek uring -20 -KPX Aogonek v -55 -KPX Aogonek w -55 -KPX Aogonek y -55 -KPX Aogonek yacute -55 -KPX Aogonek ydieresis -55 -KPX Aring C -30 -KPX Aring Cacute -30 -KPX Aring Ccaron -30 -KPX Aring Ccedilla -30 -KPX Aring G -35 -KPX Aring Gbreve -35 -KPX Aring Gcommaaccent -35 -KPX Aring O -40 -KPX Aring Oacute -40 -KPX Aring Ocircumflex -40 -KPX Aring Odieresis -40 -KPX Aring Ograve -40 -KPX Aring Ohungarumlaut -40 -KPX Aring Omacron -40 -KPX Aring Oslash -40 -KPX Aring Otilde -40 -KPX Aring Q -40 -KPX Aring T -37 -KPX Aring Tcaron -37 -KPX Aring Tcommaaccent -37 -KPX Aring U -50 -KPX Aring Uacute -50 -KPX Aring Ucircumflex -50 -KPX Aring Udieresis -50 -KPX Aring Ugrave -50 -KPX Aring Uhungarumlaut -50 -KPX Aring Umacron -50 -KPX Aring Uogonek -50 -KPX Aring Uring -50 -KPX Aring V -105 -KPX Aring W -95 -KPX Aring Y -55 -KPX Aring Yacute -55 -KPX Aring Ydieresis -55 -KPX Aring quoteright -37 -KPX Aring u -20 -KPX Aring uacute -20 -KPX Aring ucircumflex -20 -KPX Aring udieresis -20 -KPX Aring ugrave -20 -KPX Aring uhungarumlaut -20 -KPX Aring umacron -20 -KPX Aring uogonek -20 -KPX Aring uring -20 -KPX Aring v -55 -KPX Aring w -55 -KPX Aring y -55 -KPX Aring yacute -55 -KPX Aring ydieresis -55 -KPX Atilde C -30 -KPX Atilde Cacute -30 -KPX Atilde Ccaron -30 -KPX Atilde Ccedilla -30 -KPX Atilde G -35 -KPX Atilde Gbreve -35 -KPX Atilde Gcommaaccent -35 -KPX Atilde O -40 -KPX Atilde Oacute -40 -KPX Atilde Ocircumflex -40 -KPX Atilde Odieresis -40 -KPX Atilde Ograve -40 -KPX Atilde Ohungarumlaut -40 -KPX Atilde Omacron -40 -KPX Atilde Oslash -40 -KPX Atilde Otilde -40 -KPX Atilde Q -40 -KPX Atilde T -37 -KPX Atilde Tcaron -37 -KPX Atilde Tcommaaccent -37 -KPX Atilde U -50 -KPX Atilde Uacute -50 -KPX Atilde Ucircumflex -50 -KPX Atilde Udieresis -50 -KPX Atilde Ugrave -50 -KPX Atilde Uhungarumlaut -50 -KPX Atilde Umacron -50 -KPX Atilde Uogonek -50 -KPX Atilde Uring -50 -KPX Atilde V -105 -KPX Atilde W -95 -KPX Atilde Y -55 -KPX Atilde Yacute -55 -KPX Atilde Ydieresis -55 -KPX Atilde quoteright -37 -KPX Atilde u -20 -KPX Atilde uacute -20 -KPX Atilde ucircumflex -20 -KPX Atilde udieresis -20 -KPX Atilde ugrave -20 -KPX Atilde uhungarumlaut -20 -KPX Atilde umacron -20 -KPX Atilde uogonek -20 -KPX Atilde uring -20 -KPX Atilde v -55 -KPX Atilde w -55 -KPX Atilde y -55 -KPX Atilde yacute -55 -KPX Atilde ydieresis -55 -KPX B A -25 -KPX B Aacute -25 -KPX B Abreve -25 -KPX B Acircumflex -25 -KPX B Adieresis -25 -KPX B Agrave -25 -KPX B Amacron -25 -KPX B Aogonek -25 -KPX B Aring -25 -KPX B Atilde -25 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX D A -35 -KPX D Aacute -35 -KPX D Abreve -35 -KPX D Acircumflex -35 -KPX D Adieresis -35 -KPX D Agrave -35 -KPX D Amacron -35 -KPX D Aogonek -35 -KPX D Aring -35 -KPX D Atilde -35 -KPX D V -40 -KPX D W -40 -KPX D Y -40 -KPX D Yacute -40 -KPX D Ydieresis -40 -KPX Dcaron A -35 -KPX Dcaron Aacute -35 -KPX Dcaron Abreve -35 -KPX Dcaron Acircumflex -35 -KPX Dcaron Adieresis -35 -KPX Dcaron Agrave -35 -KPX Dcaron Amacron -35 -KPX Dcaron Aogonek -35 -KPX Dcaron Aring -35 -KPX Dcaron Atilde -35 -KPX Dcaron V -40 -KPX Dcaron W -40 -KPX Dcaron Y -40 -KPX Dcaron Yacute -40 -KPX Dcaron Ydieresis -40 -KPX Dcroat A -35 -KPX Dcroat Aacute -35 -KPX Dcroat Abreve -35 -KPX Dcroat Acircumflex -35 -KPX Dcroat Adieresis -35 -KPX Dcroat Agrave -35 -KPX Dcroat Amacron -35 -KPX Dcroat Aogonek -35 -KPX Dcroat Aring -35 -KPX Dcroat Atilde -35 -KPX Dcroat V -40 -KPX Dcroat W -40 -KPX Dcroat Y -40 -KPX Dcroat Yacute -40 -KPX Dcroat Ydieresis -40 -KPX F A -115 -KPX F Aacute -115 -KPX F Abreve -115 -KPX F Acircumflex -115 -KPX F Adieresis -115 -KPX F Agrave -115 -KPX F Amacron -115 -KPX F Aogonek -115 -KPX F Aring -115 -KPX F Atilde -115 -KPX F a -75 -KPX F aacute -75 -KPX F abreve -75 -KPX F acircumflex -75 -KPX F adieresis -75 -KPX F agrave -75 -KPX F amacron -75 -KPX F aogonek -75 -KPX F aring -75 -KPX F atilde -75 -KPX F comma -135 -KPX F e -75 -KPX F eacute -75 -KPX F ecaron -75 -KPX F ecircumflex -75 -KPX F edieresis -75 -KPX F edotaccent -75 -KPX F egrave -75 -KPX F emacron -75 -KPX F eogonek -75 -KPX F i -45 -KPX F iacute -45 -KPX F icircumflex -45 -KPX F idieresis -45 -KPX F igrave -45 -KPX F imacron -45 -KPX F iogonek -45 -KPX F o -105 -KPX F oacute -105 -KPX F ocircumflex -105 -KPX F odieresis -105 -KPX F ograve -105 -KPX F ohungarumlaut -105 -KPX F omacron -105 -KPX F oslash -105 -KPX F otilde -105 -KPX F period -135 -KPX F r -55 -KPX F racute -55 -KPX F rcaron -55 -KPX F rcommaaccent -55 -KPX J A -40 -KPX J Aacute -40 -KPX J Abreve -40 -KPX J Acircumflex -40 -KPX J Adieresis -40 -KPX J Agrave -40 -KPX J Amacron -40 -KPX J Aogonek -40 -KPX J Aring -40 -KPX J Atilde -40 -KPX J a -35 -KPX J aacute -35 -KPX J abreve -35 -KPX J acircumflex -35 -KPX J adieresis -35 -KPX J agrave -35 -KPX J amacron -35 -KPX J aogonek -35 -KPX J aring -35 -KPX J atilde -35 -KPX J comma -25 -KPX J e -25 -KPX J eacute -25 -KPX J ecaron -25 -KPX J ecircumflex -25 -KPX J edieresis -25 -KPX J edotaccent -25 -KPX J egrave -25 -KPX J emacron -25 -KPX J eogonek -25 -KPX J o -25 -KPX J oacute -25 -KPX J ocircumflex -25 -KPX J odieresis -25 -KPX J ograve -25 -KPX J ohungarumlaut -25 -KPX J omacron -25 -KPX J oslash -25 -KPX J otilde -25 -KPX J period -25 -KPX J u -35 -KPX J uacute -35 -KPX J ucircumflex -35 -KPX J udieresis -35 -KPX J ugrave -35 -KPX J uhungarumlaut -35 -KPX J umacron -35 -KPX J uogonek -35 -KPX J uring -35 -KPX K O -50 -KPX K Oacute -50 -KPX K Ocircumflex -50 -KPX K Odieresis -50 -KPX K Ograve -50 -KPX K Ohungarumlaut -50 -KPX K Omacron -50 -KPX K Oslash -50 -KPX K Otilde -50 -KPX K e -35 -KPX K eacute -35 -KPX K ecaron -35 -KPX K ecircumflex -35 -KPX K edieresis -35 -KPX K edotaccent -35 -KPX K egrave -35 -KPX K emacron -35 -KPX K eogonek -35 -KPX K o -40 -KPX K oacute -40 -KPX K ocircumflex -40 -KPX K odieresis -40 -KPX K ograve -40 -KPX K ohungarumlaut -40 -KPX K omacron -40 -KPX K oslash -40 -KPX K otilde -40 -KPX K u -40 -KPX K uacute -40 -KPX K ucircumflex -40 -KPX K udieresis -40 -KPX K ugrave -40 -KPX K uhungarumlaut -40 -KPX K umacron -40 -KPX K uogonek -40 -KPX K uring -40 -KPX K y -40 -KPX K yacute -40 -KPX K ydieresis -40 -KPX Kcommaaccent O -50 -KPX Kcommaaccent Oacute -50 -KPX Kcommaaccent Ocircumflex -50 -KPX Kcommaaccent Odieresis -50 -KPX Kcommaaccent Ograve -50 -KPX Kcommaaccent Ohungarumlaut -50 -KPX Kcommaaccent Omacron -50 -KPX Kcommaaccent Oslash -50 -KPX Kcommaaccent Otilde -50 -KPX Kcommaaccent e -35 -KPX Kcommaaccent eacute -35 -KPX Kcommaaccent ecaron -35 -KPX Kcommaaccent ecircumflex -35 -KPX Kcommaaccent edieresis -35 -KPX Kcommaaccent edotaccent -35 -KPX Kcommaaccent egrave -35 -KPX Kcommaaccent emacron -35 -KPX Kcommaaccent eogonek -35 -KPX Kcommaaccent o -40 -KPX Kcommaaccent oacute -40 -KPX Kcommaaccent ocircumflex -40 -KPX Kcommaaccent odieresis -40 -KPX Kcommaaccent ograve -40 -KPX Kcommaaccent ohungarumlaut -40 -KPX Kcommaaccent omacron -40 -KPX Kcommaaccent oslash -40 -KPX Kcommaaccent otilde -40 -KPX Kcommaaccent u -40 -KPX Kcommaaccent uacute -40 -KPX Kcommaaccent ucircumflex -40 -KPX Kcommaaccent udieresis -40 -KPX Kcommaaccent ugrave -40 -KPX Kcommaaccent uhungarumlaut -40 -KPX Kcommaaccent umacron -40 -KPX Kcommaaccent uogonek -40 -KPX Kcommaaccent uring -40 -KPX Kcommaaccent y -40 -KPX Kcommaaccent yacute -40 -KPX Kcommaaccent ydieresis -40 -KPX L T -20 -KPX L Tcaron -20 -KPX L Tcommaaccent -20 -KPX L V -55 -KPX L W -55 -KPX L Y -20 -KPX L Yacute -20 -KPX L Ydieresis -20 -KPX L quoteright -37 -KPX L y -30 -KPX L yacute -30 -KPX L ydieresis -30 -KPX Lacute T -20 -KPX Lacute Tcaron -20 -KPX Lacute Tcommaaccent -20 -KPX Lacute V -55 -KPX Lacute W -55 -KPX Lacute Y -20 -KPX Lacute Yacute -20 -KPX Lacute Ydieresis -20 -KPX Lacute quoteright -37 -KPX Lacute y -30 -KPX Lacute yacute -30 -KPX Lacute ydieresis -30 -KPX Lcommaaccent T -20 -KPX Lcommaaccent Tcaron -20 -KPX Lcommaaccent Tcommaaccent -20 -KPX Lcommaaccent V -55 -KPX Lcommaaccent W -55 -KPX Lcommaaccent Y -20 -KPX Lcommaaccent Yacute -20 -KPX Lcommaaccent Ydieresis -20 -KPX Lcommaaccent quoteright -37 -KPX Lcommaaccent y -30 -KPX Lcommaaccent yacute -30 -KPX Lcommaaccent ydieresis -30 -KPX Lslash T -20 -KPX Lslash Tcaron -20 -KPX Lslash Tcommaaccent -20 -KPX Lslash V -55 -KPX Lslash W -55 -KPX Lslash Y -20 -KPX Lslash Yacute -20 -KPX Lslash Ydieresis -20 -KPX Lslash quoteright -37 -KPX Lslash y -30 -KPX Lslash yacute -30 -KPX Lslash ydieresis -30 -KPX N A -27 -KPX N Aacute -27 -KPX N Abreve -27 -KPX N Acircumflex -27 -KPX N Adieresis -27 -KPX N Agrave -27 -KPX N Amacron -27 -KPX N Aogonek -27 -KPX N Aring -27 -KPX N Atilde -27 -KPX Nacute A -27 -KPX Nacute Aacute -27 -KPX Nacute Abreve -27 -KPX Nacute Acircumflex -27 -KPX Nacute Adieresis -27 -KPX Nacute Agrave -27 -KPX Nacute Amacron -27 -KPX Nacute Aogonek -27 -KPX Nacute Aring -27 -KPX Nacute Atilde -27 -KPX Ncaron A -27 -KPX Ncaron Aacute -27 -KPX Ncaron Abreve -27 -KPX Ncaron Acircumflex -27 -KPX Ncaron Adieresis -27 -KPX Ncaron Agrave -27 -KPX Ncaron Amacron -27 -KPX Ncaron Aogonek -27 -KPX Ncaron Aring -27 -KPX Ncaron Atilde -27 -KPX Ncommaaccent A -27 -KPX Ncommaaccent Aacute -27 -KPX Ncommaaccent Abreve -27 -KPX Ncommaaccent Acircumflex -27 -KPX Ncommaaccent Adieresis -27 -KPX Ncommaaccent Agrave -27 -KPX Ncommaaccent Amacron -27 -KPX Ncommaaccent Aogonek -27 -KPX Ncommaaccent Aring -27 -KPX Ncommaaccent Atilde -27 -KPX Ntilde A -27 -KPX Ntilde Aacute -27 -KPX Ntilde Abreve -27 -KPX Ntilde Acircumflex -27 -KPX Ntilde Adieresis -27 -KPX Ntilde Agrave -27 -KPX Ntilde Amacron -27 -KPX Ntilde Aogonek -27 -KPX Ntilde Aring -27 -KPX Ntilde Atilde -27 -KPX O A -55 -KPX O Aacute -55 -KPX O Abreve -55 -KPX O Acircumflex -55 -KPX O Adieresis -55 -KPX O Agrave -55 -KPX O Amacron -55 -KPX O Aogonek -55 -KPX O Aring -55 -KPX O Atilde -55 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -50 -KPX O X -40 -KPX O Y -50 -KPX O Yacute -50 -KPX O Ydieresis -50 -KPX Oacute A -55 -KPX Oacute Aacute -55 -KPX Oacute Abreve -55 -KPX Oacute Acircumflex -55 -KPX Oacute Adieresis -55 -KPX Oacute Agrave -55 -KPX Oacute Amacron -55 -KPX Oacute Aogonek -55 -KPX Oacute Aring -55 -KPX Oacute Atilde -55 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -50 -KPX Oacute X -40 -KPX Oacute Y -50 -KPX Oacute Yacute -50 -KPX Oacute Ydieresis -50 -KPX Ocircumflex A -55 -KPX Ocircumflex Aacute -55 -KPX Ocircumflex Abreve -55 -KPX Ocircumflex Acircumflex -55 -KPX Ocircumflex Adieresis -55 -KPX Ocircumflex Agrave -55 -KPX Ocircumflex Amacron -55 -KPX Ocircumflex Aogonek -55 -KPX Ocircumflex Aring -55 -KPX Ocircumflex Atilde -55 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -50 -KPX Ocircumflex X -40 -KPX Ocircumflex Y -50 -KPX Ocircumflex Yacute -50 -KPX Ocircumflex Ydieresis -50 -KPX Odieresis A -55 -KPX Odieresis Aacute -55 -KPX Odieresis Abreve -55 -KPX Odieresis Acircumflex -55 -KPX Odieresis Adieresis -55 -KPX Odieresis Agrave -55 -KPX Odieresis Amacron -55 -KPX Odieresis Aogonek -55 -KPX Odieresis Aring -55 -KPX Odieresis Atilde -55 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -50 -KPX Odieresis X -40 -KPX Odieresis Y -50 -KPX Odieresis Yacute -50 -KPX Odieresis Ydieresis -50 -KPX Ograve A -55 -KPX Ograve Aacute -55 -KPX Ograve Abreve -55 -KPX Ograve Acircumflex -55 -KPX Ograve Adieresis -55 -KPX Ograve Agrave -55 -KPX Ograve Amacron -55 -KPX Ograve Aogonek -55 -KPX Ograve Aring -55 -KPX Ograve Atilde -55 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -50 -KPX Ograve X -40 -KPX Ograve Y -50 -KPX Ograve Yacute -50 -KPX Ograve Ydieresis -50 -KPX Ohungarumlaut A -55 -KPX Ohungarumlaut Aacute -55 -KPX Ohungarumlaut Abreve -55 -KPX Ohungarumlaut Acircumflex -55 -KPX Ohungarumlaut Adieresis -55 -KPX Ohungarumlaut Agrave -55 -KPX Ohungarumlaut Amacron -55 -KPX Ohungarumlaut Aogonek -55 -KPX Ohungarumlaut Aring -55 -KPX Ohungarumlaut Atilde -55 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -50 -KPX Ohungarumlaut X -40 -KPX Ohungarumlaut Y -50 -KPX Ohungarumlaut Yacute -50 -KPX Ohungarumlaut Ydieresis -50 -KPX Omacron A -55 -KPX Omacron Aacute -55 -KPX Omacron Abreve -55 -KPX Omacron Acircumflex -55 -KPX Omacron Adieresis -55 -KPX Omacron Agrave -55 -KPX Omacron Amacron -55 -KPX Omacron Aogonek -55 -KPX Omacron Aring -55 -KPX Omacron Atilde -55 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -50 -KPX Omacron X -40 -KPX Omacron Y -50 -KPX Omacron Yacute -50 -KPX Omacron Ydieresis -50 -KPX Oslash A -55 -KPX Oslash Aacute -55 -KPX Oslash Abreve -55 -KPX Oslash Acircumflex -55 -KPX Oslash Adieresis -55 -KPX Oslash Agrave -55 -KPX Oslash Amacron -55 -KPX Oslash Aogonek -55 -KPX Oslash Aring -55 -KPX Oslash Atilde -55 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -50 -KPX Oslash X -40 -KPX Oslash Y -50 -KPX Oslash Yacute -50 -KPX Oslash Ydieresis -50 -KPX Otilde A -55 -KPX Otilde Aacute -55 -KPX Otilde Abreve -55 -KPX Otilde Acircumflex -55 -KPX Otilde Adieresis -55 -KPX Otilde Agrave -55 -KPX Otilde Amacron -55 -KPX Otilde Aogonek -55 -KPX Otilde Aring -55 -KPX Otilde Atilde -55 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -50 -KPX Otilde X -40 -KPX Otilde Y -50 -KPX Otilde Yacute -50 -KPX Otilde Ydieresis -50 -KPX P A -90 -KPX P Aacute -90 -KPX P Abreve -90 -KPX P Acircumflex -90 -KPX P Adieresis -90 -KPX P Agrave -90 -KPX P Amacron -90 -KPX P Aogonek -90 -KPX P Aring -90 -KPX P Atilde -90 -KPX P a -80 -KPX P aacute -80 -KPX P abreve -80 -KPX P acircumflex -80 -KPX P adieresis -80 -KPX P agrave -80 -KPX P amacron -80 -KPX P aogonek -80 -KPX P aring -80 -KPX P atilde -80 -KPX P comma -135 -KPX P e -80 -KPX P eacute -80 -KPX P ecaron -80 -KPX P ecircumflex -80 -KPX P edieresis -80 -KPX P edotaccent -80 -KPX P egrave -80 -KPX P emacron -80 -KPX P eogonek -80 -KPX P o -80 -KPX P oacute -80 -KPX P ocircumflex -80 -KPX P odieresis -80 -KPX P ograve -80 -KPX P ohungarumlaut -80 -KPX P omacron -80 -KPX P oslash -80 -KPX P otilde -80 -KPX P period -135 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX R O -40 -KPX R Oacute -40 -KPX R Ocircumflex -40 -KPX R Odieresis -40 -KPX R Ograve -40 -KPX R Ohungarumlaut -40 -KPX R Omacron -40 -KPX R Oslash -40 -KPX R Otilde -40 -KPX R U -40 -KPX R Uacute -40 -KPX R Ucircumflex -40 -KPX R Udieresis -40 -KPX R Ugrave -40 -KPX R Uhungarumlaut -40 -KPX R Umacron -40 -KPX R Uogonek -40 -KPX R Uring -40 -KPX R V -18 -KPX R W -18 -KPX R Y -18 -KPX R Yacute -18 -KPX R Ydieresis -18 -KPX Racute O -40 -KPX Racute Oacute -40 -KPX Racute Ocircumflex -40 -KPX Racute Odieresis -40 -KPX Racute Ograve -40 -KPX Racute Ohungarumlaut -40 -KPX Racute Omacron -40 -KPX Racute Oslash -40 -KPX Racute Otilde -40 -KPX Racute U -40 -KPX Racute Uacute -40 -KPX Racute Ucircumflex -40 -KPX Racute Udieresis -40 -KPX Racute Ugrave -40 -KPX Racute Uhungarumlaut -40 -KPX Racute Umacron -40 -KPX Racute Uogonek -40 -KPX Racute Uring -40 -KPX Racute V -18 -KPX Racute W -18 -KPX Racute Y -18 -KPX Racute Yacute -18 -KPX Racute Ydieresis -18 -KPX Rcaron O -40 -KPX Rcaron Oacute -40 -KPX Rcaron Ocircumflex -40 -KPX Rcaron Odieresis -40 -KPX Rcaron Ograve -40 -KPX Rcaron Ohungarumlaut -40 -KPX Rcaron Omacron -40 -KPX Rcaron Oslash -40 -KPX Rcaron Otilde -40 -KPX Rcaron U -40 -KPX Rcaron Uacute -40 -KPX Rcaron Ucircumflex -40 -KPX Rcaron Udieresis -40 -KPX Rcaron Ugrave -40 -KPX Rcaron Uhungarumlaut -40 -KPX Rcaron Umacron -40 -KPX Rcaron Uogonek -40 -KPX Rcaron Uring -40 -KPX Rcaron V -18 -KPX Rcaron W -18 -KPX Rcaron Y -18 -KPX Rcaron Yacute -18 -KPX Rcaron Ydieresis -18 -KPX Rcommaaccent O -40 -KPX Rcommaaccent Oacute -40 -KPX Rcommaaccent Ocircumflex -40 -KPX Rcommaaccent Odieresis -40 -KPX Rcommaaccent Ograve -40 -KPX Rcommaaccent Ohungarumlaut -40 -KPX Rcommaaccent Omacron -40 -KPX Rcommaaccent Oslash -40 -KPX Rcommaaccent Otilde -40 -KPX Rcommaaccent U -40 -KPX Rcommaaccent Uacute -40 -KPX Rcommaaccent Ucircumflex -40 -KPX Rcommaaccent Udieresis -40 -KPX Rcommaaccent Ugrave -40 -KPX Rcommaaccent Uhungarumlaut -40 -KPX Rcommaaccent Umacron -40 -KPX Rcommaaccent Uogonek -40 -KPX Rcommaaccent Uring -40 -KPX Rcommaaccent V -18 -KPX Rcommaaccent W -18 -KPX Rcommaaccent Y -18 -KPX Rcommaaccent Yacute -18 -KPX Rcommaaccent Ydieresis -18 -KPX T A -50 -KPX T Aacute -50 -KPX T Abreve -50 -KPX T Acircumflex -50 -KPX T Adieresis -50 -KPX T Agrave -50 -KPX T Amacron -50 -KPX T Aogonek -50 -KPX T Aring -50 -KPX T Atilde -50 -KPX T O -18 -KPX T Oacute -18 -KPX T Ocircumflex -18 -KPX T Odieresis -18 -KPX T Ograve -18 -KPX T Ohungarumlaut -18 -KPX T Omacron -18 -KPX T Oslash -18 -KPX T Otilde -18 -KPX T a -92 -KPX T aacute -92 -KPX T abreve -92 -KPX T acircumflex -92 -KPX T adieresis -92 -KPX T agrave -92 -KPX T amacron -92 -KPX T aogonek -92 -KPX T aring -92 -KPX T atilde -92 -KPX T colon -55 -KPX T comma -74 -KPX T e -92 -KPX T eacute -92 -KPX T ecaron -92 -KPX T ecircumflex -52 -KPX T edieresis -52 -KPX T edotaccent -92 -KPX T egrave -52 -KPX T emacron -52 -KPX T eogonek -92 -KPX T hyphen -74 -KPX T i -55 -KPX T iacute -55 -KPX T iogonek -55 -KPX T o -92 -KPX T oacute -92 -KPX T ocircumflex -92 -KPX T odieresis -92 -KPX T ograve -92 -KPX T ohungarumlaut -92 -KPX T omacron -92 -KPX T oslash -92 -KPX T otilde -92 -KPX T period -74 -KPX T r -55 -KPX T racute -55 -KPX T rcaron -55 -KPX T rcommaaccent -55 -KPX T semicolon -65 -KPX T u -55 -KPX T uacute -55 -KPX T ucircumflex -55 -KPX T udieresis -55 -KPX T ugrave -55 -KPX T uhungarumlaut -55 -KPX T umacron -55 -KPX T uogonek -55 -KPX T uring -55 -KPX T w -74 -KPX T y -74 -KPX T yacute -74 -KPX T ydieresis -34 -KPX Tcaron A -50 -KPX Tcaron Aacute -50 -KPX Tcaron Abreve -50 -KPX Tcaron Acircumflex -50 -KPX Tcaron Adieresis -50 -KPX Tcaron Agrave -50 -KPX Tcaron Amacron -50 -KPX Tcaron Aogonek -50 -KPX Tcaron Aring -50 -KPX Tcaron Atilde -50 -KPX Tcaron O -18 -KPX Tcaron Oacute -18 -KPX Tcaron Ocircumflex -18 -KPX Tcaron Odieresis -18 -KPX Tcaron Ograve -18 -KPX Tcaron Ohungarumlaut -18 -KPX Tcaron Omacron -18 -KPX Tcaron Oslash -18 -KPX Tcaron Otilde -18 -KPX Tcaron a -92 -KPX Tcaron aacute -92 -KPX Tcaron abreve -92 -KPX Tcaron acircumflex -92 -KPX Tcaron adieresis -92 -KPX Tcaron agrave -92 -KPX Tcaron amacron -92 -KPX Tcaron aogonek -92 -KPX Tcaron aring -92 -KPX Tcaron atilde -92 -KPX Tcaron colon -55 -KPX Tcaron comma -74 -KPX Tcaron e -92 -KPX Tcaron eacute -92 -KPX Tcaron ecaron -92 -KPX Tcaron ecircumflex -52 -KPX Tcaron edieresis -52 -KPX Tcaron edotaccent -92 -KPX Tcaron egrave -52 -KPX Tcaron emacron -52 -KPX Tcaron eogonek -92 -KPX Tcaron hyphen -74 -KPX Tcaron i -55 -KPX Tcaron iacute -55 -KPX Tcaron iogonek -55 -KPX Tcaron o -92 -KPX Tcaron oacute -92 -KPX Tcaron ocircumflex -92 -KPX Tcaron odieresis -92 -KPX Tcaron ograve -92 -KPX Tcaron ohungarumlaut -92 -KPX Tcaron omacron -92 -KPX Tcaron oslash -92 -KPX Tcaron otilde -92 -KPX Tcaron period -74 -KPX Tcaron r -55 -KPX Tcaron racute -55 -KPX Tcaron rcaron -55 -KPX Tcaron rcommaaccent -55 -KPX Tcaron semicolon -65 -KPX Tcaron u -55 -KPX Tcaron uacute -55 -KPX Tcaron ucircumflex -55 -KPX Tcaron udieresis -55 -KPX Tcaron ugrave -55 -KPX Tcaron uhungarumlaut -55 -KPX Tcaron umacron -55 -KPX Tcaron uogonek -55 -KPX Tcaron uring -55 -KPX Tcaron w -74 -KPX Tcaron y -74 -KPX Tcaron yacute -74 -KPX Tcaron ydieresis -34 -KPX Tcommaaccent A -50 -KPX Tcommaaccent Aacute -50 -KPX Tcommaaccent Abreve -50 -KPX Tcommaaccent Acircumflex -50 -KPX Tcommaaccent Adieresis -50 -KPX Tcommaaccent Agrave -50 -KPX Tcommaaccent Amacron -50 -KPX Tcommaaccent Aogonek -50 -KPX Tcommaaccent Aring -50 -KPX Tcommaaccent Atilde -50 -KPX Tcommaaccent O -18 -KPX Tcommaaccent Oacute -18 -KPX Tcommaaccent Ocircumflex -18 -KPX Tcommaaccent Odieresis -18 -KPX Tcommaaccent Ograve -18 -KPX Tcommaaccent Ohungarumlaut -18 -KPX Tcommaaccent Omacron -18 -KPX Tcommaaccent Oslash -18 -KPX Tcommaaccent Otilde -18 -KPX Tcommaaccent a -92 -KPX Tcommaaccent aacute -92 -KPX Tcommaaccent abreve -92 -KPX Tcommaaccent acircumflex -92 -KPX Tcommaaccent adieresis -92 -KPX Tcommaaccent agrave -92 -KPX Tcommaaccent amacron -92 -KPX Tcommaaccent aogonek -92 -KPX Tcommaaccent aring -92 -KPX Tcommaaccent atilde -92 -KPX Tcommaaccent colon -55 -KPX Tcommaaccent comma -74 -KPX Tcommaaccent e -92 -KPX Tcommaaccent eacute -92 -KPX Tcommaaccent ecaron -92 -KPX Tcommaaccent ecircumflex -52 -KPX Tcommaaccent edieresis -52 -KPX Tcommaaccent edotaccent -92 -KPX Tcommaaccent egrave -52 -KPX Tcommaaccent emacron -52 -KPX Tcommaaccent eogonek -92 -KPX Tcommaaccent hyphen -74 -KPX Tcommaaccent i -55 -KPX Tcommaaccent iacute -55 -KPX Tcommaaccent iogonek -55 -KPX Tcommaaccent o -92 -KPX Tcommaaccent oacute -92 -KPX Tcommaaccent ocircumflex -92 -KPX Tcommaaccent odieresis -92 -KPX Tcommaaccent ograve -92 -KPX Tcommaaccent ohungarumlaut -92 -KPX Tcommaaccent omacron -92 -KPX Tcommaaccent oslash -92 -KPX Tcommaaccent otilde -92 -KPX Tcommaaccent period -74 -KPX Tcommaaccent r -55 -KPX Tcommaaccent racute -55 -KPX Tcommaaccent rcaron -55 -KPX Tcommaaccent rcommaaccent -55 -KPX Tcommaaccent semicolon -65 -KPX Tcommaaccent u -55 -KPX Tcommaaccent uacute -55 -KPX Tcommaaccent ucircumflex -55 -KPX Tcommaaccent udieresis -55 -KPX Tcommaaccent ugrave -55 -KPX Tcommaaccent uhungarumlaut -55 -KPX Tcommaaccent umacron -55 -KPX Tcommaaccent uogonek -55 -KPX Tcommaaccent uring -55 -KPX Tcommaaccent w -74 -KPX Tcommaaccent y -74 -KPX Tcommaaccent yacute -74 -KPX Tcommaaccent ydieresis -34 -KPX U A -40 -KPX U Aacute -40 -KPX U Abreve -40 -KPX U Acircumflex -40 -KPX U Adieresis -40 -KPX U Agrave -40 -KPX U Amacron -40 -KPX U Aogonek -40 -KPX U Aring -40 -KPX U Atilde -40 -KPX U comma -25 -KPX U period -25 -KPX Uacute A -40 -KPX Uacute Aacute -40 -KPX Uacute Abreve -40 -KPX Uacute Acircumflex -40 -KPX Uacute Adieresis -40 -KPX Uacute Agrave -40 -KPX Uacute Amacron -40 -KPX Uacute Aogonek -40 -KPX Uacute Aring -40 -KPX Uacute Atilde -40 -KPX Uacute comma -25 -KPX Uacute period -25 -KPX Ucircumflex A -40 -KPX Ucircumflex Aacute -40 -KPX Ucircumflex Abreve -40 -KPX Ucircumflex Acircumflex -40 -KPX Ucircumflex Adieresis -40 -KPX Ucircumflex Agrave -40 -KPX Ucircumflex Amacron -40 -KPX Ucircumflex Aogonek -40 -KPX Ucircumflex Aring -40 -KPX Ucircumflex Atilde -40 -KPX Ucircumflex comma -25 -KPX Ucircumflex period -25 -KPX Udieresis A -40 -KPX Udieresis Aacute -40 -KPX Udieresis Abreve -40 -KPX Udieresis Acircumflex -40 -KPX Udieresis Adieresis -40 -KPX Udieresis Agrave -40 -KPX Udieresis Amacron -40 -KPX Udieresis Aogonek -40 -KPX Udieresis Aring -40 -KPX Udieresis Atilde -40 -KPX Udieresis comma -25 -KPX Udieresis period -25 -KPX Ugrave A -40 -KPX Ugrave Aacute -40 -KPX Ugrave Abreve -40 -KPX Ugrave Acircumflex -40 -KPX Ugrave Adieresis -40 -KPX Ugrave Agrave -40 -KPX Ugrave Amacron -40 -KPX Ugrave Aogonek -40 -KPX Ugrave Aring -40 -KPX Ugrave Atilde -40 -KPX Ugrave comma -25 -KPX Ugrave period -25 -KPX Uhungarumlaut A -40 -KPX Uhungarumlaut Aacute -40 -KPX Uhungarumlaut Abreve -40 -KPX Uhungarumlaut Acircumflex -40 -KPX Uhungarumlaut Adieresis -40 -KPX Uhungarumlaut Agrave -40 -KPX Uhungarumlaut Amacron -40 -KPX Uhungarumlaut Aogonek -40 -KPX Uhungarumlaut Aring -40 -KPX Uhungarumlaut Atilde -40 -KPX Uhungarumlaut comma -25 -KPX Uhungarumlaut period -25 -KPX Umacron A -40 -KPX Umacron Aacute -40 -KPX Umacron Abreve -40 -KPX Umacron Acircumflex -40 -KPX Umacron Adieresis -40 -KPX Umacron Agrave -40 -KPX Umacron Amacron -40 -KPX Umacron Aogonek -40 -KPX Umacron Aring -40 -KPX Umacron Atilde -40 -KPX Umacron comma -25 -KPX Umacron period -25 -KPX Uogonek A -40 -KPX Uogonek Aacute -40 -KPX Uogonek Abreve -40 -KPX Uogonek Acircumflex -40 -KPX Uogonek Adieresis -40 -KPX Uogonek Agrave -40 -KPX Uogonek Amacron -40 -KPX Uogonek Aogonek -40 -KPX Uogonek Aring -40 -KPX Uogonek Atilde -40 -KPX Uogonek comma -25 -KPX Uogonek period -25 -KPX Uring A -40 -KPX Uring Aacute -40 -KPX Uring Abreve -40 -KPX Uring Acircumflex -40 -KPX Uring Adieresis -40 -KPX Uring Agrave -40 -KPX Uring Amacron -40 -KPX Uring Aogonek -40 -KPX Uring Aring -40 -KPX Uring Atilde -40 -KPX Uring comma -25 -KPX Uring period -25 -KPX V A -60 -KPX V Aacute -60 -KPX V Abreve -60 -KPX V Acircumflex -60 -KPX V Adieresis -60 -KPX V Agrave -60 -KPX V Amacron -60 -KPX V Aogonek -60 -KPX V Aring -60 -KPX V Atilde -60 -KPX V O -30 -KPX V Oacute -30 -KPX V Ocircumflex -30 -KPX V Odieresis -30 -KPX V Ograve -30 -KPX V Ohungarumlaut -30 -KPX V Omacron -30 -KPX V Oslash -30 -KPX V Otilde -30 -KPX V a -111 -KPX V aacute -111 -KPX V abreve -111 -KPX V acircumflex -111 -KPX V adieresis -111 -KPX V agrave -111 -KPX V amacron -111 -KPX V aogonek -111 -KPX V aring -111 -KPX V atilde -111 -KPX V colon -65 -KPX V comma -129 -KPX V e -111 -KPX V eacute -111 -KPX V ecaron -111 -KPX V ecircumflex -111 -KPX V edieresis -71 -KPX V edotaccent -111 -KPX V egrave -71 -KPX V emacron -71 -KPX V eogonek -111 -KPX V hyphen -55 -KPX V i -74 -KPX V iacute -74 -KPX V icircumflex -34 -KPX V idieresis -34 -KPX V igrave -34 -KPX V imacron -34 -KPX V iogonek -74 -KPX V o -111 -KPX V oacute -111 -KPX V ocircumflex -111 -KPX V odieresis -111 -KPX V ograve -111 -KPX V ohungarumlaut -111 -KPX V omacron -111 -KPX V oslash -111 -KPX V otilde -111 -KPX V period -129 -KPX V semicolon -74 -KPX V u -74 -KPX V uacute -74 -KPX V ucircumflex -74 -KPX V udieresis -74 -KPX V ugrave -74 -KPX V uhungarumlaut -74 -KPX V umacron -74 -KPX V uogonek -74 -KPX V uring -74 -KPX W A -60 -KPX W Aacute -60 -KPX W Abreve -60 -KPX W Acircumflex -60 -KPX W Adieresis -60 -KPX W Agrave -60 -KPX W Amacron -60 -KPX W Aogonek -60 -KPX W Aring -60 -KPX W Atilde -60 -KPX W O -25 -KPX W Oacute -25 -KPX W Ocircumflex -25 -KPX W Odieresis -25 -KPX W Ograve -25 -KPX W Ohungarumlaut -25 -KPX W Omacron -25 -KPX W Oslash -25 -KPX W Otilde -25 -KPX W a -92 -KPX W aacute -92 -KPX W abreve -92 -KPX W acircumflex -92 -KPX W adieresis -92 -KPX W agrave -92 -KPX W amacron -92 -KPX W aogonek -92 -KPX W aring -92 -KPX W atilde -92 -KPX W colon -65 -KPX W comma -92 -KPX W e -92 -KPX W eacute -92 -KPX W ecaron -92 -KPX W ecircumflex -92 -KPX W edieresis -52 -KPX W edotaccent -92 -KPX W egrave -52 -KPX W emacron -52 -KPX W eogonek -92 -KPX W hyphen -37 -KPX W i -55 -KPX W iacute -55 -KPX W iogonek -55 -KPX W o -92 -KPX W oacute -92 -KPX W ocircumflex -92 -KPX W odieresis -92 -KPX W ograve -92 -KPX W ohungarumlaut -92 -KPX W omacron -92 -KPX W oslash -92 -KPX W otilde -92 -KPX W period -92 -KPX W semicolon -65 -KPX W u -55 -KPX W uacute -55 -KPX W ucircumflex -55 -KPX W udieresis -55 -KPX W ugrave -55 -KPX W uhungarumlaut -55 -KPX W umacron -55 -KPX W uogonek -55 -KPX W uring -55 -KPX W y -70 -KPX W yacute -70 -KPX W ydieresis -70 -KPX Y A -50 -KPX Y Aacute -50 -KPX Y Abreve -50 -KPX Y Acircumflex -50 -KPX Y Adieresis -50 -KPX Y Agrave -50 -KPX Y Amacron -50 -KPX Y Aogonek -50 -KPX Y Aring -50 -KPX Y Atilde -50 -KPX Y O -15 -KPX Y Oacute -15 -KPX Y Ocircumflex -15 -KPX Y Odieresis -15 -KPX Y Ograve -15 -KPX Y Ohungarumlaut -15 -KPX Y Omacron -15 -KPX Y Oslash -15 -KPX Y Otilde -15 -KPX Y a -92 -KPX Y aacute -92 -KPX Y abreve -92 -KPX Y acircumflex -92 -KPX Y adieresis -92 -KPX Y agrave -92 -KPX Y amacron -92 -KPX Y aogonek -92 -KPX Y aring -92 -KPX Y atilde -92 -KPX Y colon -65 -KPX Y comma -92 -KPX Y e -92 -KPX Y eacute -92 -KPX Y ecaron -92 -KPX Y ecircumflex -92 -KPX Y edieresis -52 -KPX Y edotaccent -92 -KPX Y egrave -52 -KPX Y emacron -52 -KPX Y eogonek -92 -KPX Y hyphen -74 -KPX Y i -74 -KPX Y iacute -74 -KPX Y icircumflex -34 -KPX Y idieresis -34 -KPX Y igrave -34 -KPX Y imacron -34 -KPX Y iogonek -74 -KPX Y o -92 -KPX Y oacute -92 -KPX Y ocircumflex -92 -KPX Y odieresis -92 -KPX Y ograve -92 -KPX Y ohungarumlaut -92 -KPX Y omacron -92 -KPX Y oslash -92 -KPX Y otilde -92 -KPX Y period -92 -KPX Y semicolon -65 -KPX Y u -92 -KPX Y uacute -92 -KPX Y ucircumflex -92 -KPX Y udieresis -92 -KPX Y ugrave -92 -KPX Y uhungarumlaut -92 -KPX Y umacron -92 -KPX Y uogonek -92 -KPX Y uring -92 -KPX Yacute A -50 -KPX Yacute Aacute -50 -KPX Yacute Abreve -50 -KPX Yacute Acircumflex -50 -KPX Yacute Adieresis -50 -KPX Yacute Agrave -50 -KPX Yacute Amacron -50 -KPX Yacute Aogonek -50 -KPX Yacute Aring -50 -KPX Yacute Atilde -50 -KPX Yacute O -15 -KPX Yacute Oacute -15 -KPX Yacute Ocircumflex -15 -KPX Yacute Odieresis -15 -KPX Yacute Ograve -15 -KPX Yacute Ohungarumlaut -15 -KPX Yacute Omacron -15 -KPX Yacute Oslash -15 -KPX Yacute Otilde -15 -KPX Yacute a -92 -KPX Yacute aacute -92 -KPX Yacute abreve -92 -KPX Yacute acircumflex -92 -KPX Yacute adieresis -92 -KPX Yacute agrave -92 -KPX Yacute amacron -92 -KPX Yacute aogonek -92 -KPX Yacute aring -92 -KPX Yacute atilde -92 -KPX Yacute colon -65 -KPX Yacute comma -92 -KPX Yacute e -92 -KPX Yacute eacute -92 -KPX Yacute ecaron -92 -KPX Yacute ecircumflex -92 -KPX Yacute edieresis -52 -KPX Yacute edotaccent -92 -KPX Yacute egrave -52 -KPX Yacute emacron -52 -KPX Yacute eogonek -92 -KPX Yacute hyphen -74 -KPX Yacute i -74 -KPX Yacute iacute -74 -KPX Yacute icircumflex -34 -KPX Yacute idieresis -34 -KPX Yacute igrave -34 -KPX Yacute imacron -34 -KPX Yacute iogonek -74 -KPX Yacute o -92 -KPX Yacute oacute -92 -KPX Yacute ocircumflex -92 -KPX Yacute odieresis -92 -KPX Yacute ograve -92 -KPX Yacute ohungarumlaut -92 -KPX Yacute omacron -92 -KPX Yacute oslash -92 -KPX Yacute otilde -92 -KPX Yacute period -92 -KPX Yacute semicolon -65 -KPX Yacute u -92 -KPX Yacute uacute -92 -KPX Yacute ucircumflex -92 -KPX Yacute udieresis -92 -KPX Yacute ugrave -92 -KPX Yacute uhungarumlaut -92 -KPX Yacute umacron -92 -KPX Yacute uogonek -92 -KPX Yacute uring -92 -KPX Ydieresis A -50 -KPX Ydieresis Aacute -50 -KPX Ydieresis Abreve -50 -KPX Ydieresis Acircumflex -50 -KPX Ydieresis Adieresis -50 -KPX Ydieresis Agrave -50 -KPX Ydieresis Amacron -50 -KPX Ydieresis Aogonek -50 -KPX Ydieresis Aring -50 -KPX Ydieresis Atilde -50 -KPX Ydieresis O -15 -KPX Ydieresis Oacute -15 -KPX Ydieresis Ocircumflex -15 -KPX Ydieresis Odieresis -15 -KPX Ydieresis Ograve -15 -KPX Ydieresis Ohungarumlaut -15 -KPX Ydieresis Omacron -15 -KPX Ydieresis Oslash -15 -KPX Ydieresis Otilde -15 -KPX Ydieresis a -92 -KPX Ydieresis aacute -92 -KPX Ydieresis abreve -92 -KPX Ydieresis acircumflex -92 -KPX Ydieresis adieresis -92 -KPX Ydieresis agrave -92 -KPX Ydieresis amacron -92 -KPX Ydieresis aogonek -92 -KPX Ydieresis aring -92 -KPX Ydieresis atilde -92 -KPX Ydieresis colon -65 -KPX Ydieresis comma -92 -KPX Ydieresis e -92 -KPX Ydieresis eacute -92 -KPX Ydieresis ecaron -92 -KPX Ydieresis ecircumflex -92 -KPX Ydieresis edieresis -52 -KPX Ydieresis edotaccent -92 -KPX Ydieresis egrave -52 -KPX Ydieresis emacron -52 -KPX Ydieresis eogonek -92 -KPX Ydieresis hyphen -74 -KPX Ydieresis i -74 -KPX Ydieresis iacute -74 -KPX Ydieresis icircumflex -34 -KPX Ydieresis idieresis -34 -KPX Ydieresis igrave -34 -KPX Ydieresis imacron -34 -KPX Ydieresis iogonek -74 -KPX Ydieresis o -92 -KPX Ydieresis oacute -92 -KPX Ydieresis ocircumflex -92 -KPX Ydieresis odieresis -92 -KPX Ydieresis ograve -92 -KPX Ydieresis ohungarumlaut -92 -KPX Ydieresis omacron -92 -KPX Ydieresis oslash -92 -KPX Ydieresis otilde -92 -KPX Ydieresis period -92 -KPX Ydieresis semicolon -65 -KPX Ydieresis u -92 -KPX Ydieresis uacute -92 -KPX Ydieresis ucircumflex -92 -KPX Ydieresis udieresis -92 -KPX Ydieresis ugrave -92 -KPX Ydieresis uhungarumlaut -92 -KPX Ydieresis umacron -92 -KPX Ydieresis uogonek -92 -KPX Ydieresis uring -92 -KPX a g -10 -KPX a gbreve -10 -KPX a gcommaaccent -10 -KPX aacute g -10 -KPX aacute gbreve -10 -KPX aacute gcommaaccent -10 -KPX abreve g -10 -KPX abreve gbreve -10 -KPX abreve gcommaaccent -10 -KPX acircumflex g -10 -KPX acircumflex gbreve -10 -KPX acircumflex gcommaaccent -10 -KPX adieresis g -10 -KPX adieresis gbreve -10 -KPX adieresis gcommaaccent -10 -KPX agrave g -10 -KPX agrave gbreve -10 -KPX agrave gcommaaccent -10 -KPX amacron g -10 -KPX amacron gbreve -10 -KPX amacron gcommaaccent -10 -KPX aogonek g -10 -KPX aogonek gbreve -10 -KPX aogonek gcommaaccent -10 -KPX aring g -10 -KPX aring gbreve -10 -KPX aring gcommaaccent -10 -KPX atilde g -10 -KPX atilde gbreve -10 -KPX atilde gcommaaccent -10 -KPX b period -40 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX c h -15 -KPX c k -20 -KPX c kcommaaccent -20 -KPX cacute h -15 -KPX cacute k -20 -KPX cacute kcommaaccent -20 -KPX ccaron h -15 -KPX ccaron k -20 -KPX ccaron kcommaaccent -20 -KPX ccedilla h -15 -KPX ccedilla k -20 -KPX ccedilla kcommaaccent -20 -KPX comma quotedblright -140 -KPX comma quoteright -140 -KPX e comma -10 -KPX e g -40 -KPX e gbreve -40 -KPX e gcommaaccent -40 -KPX e period -15 -KPX e v -15 -KPX e w -15 -KPX e x -20 -KPX e y -30 -KPX e yacute -30 -KPX e ydieresis -30 -KPX eacute comma -10 -KPX eacute g -40 -KPX eacute gbreve -40 -KPX eacute gcommaaccent -40 -KPX eacute period -15 -KPX eacute v -15 -KPX eacute w -15 -KPX eacute x -20 -KPX eacute y -30 -KPX eacute yacute -30 -KPX eacute ydieresis -30 -KPX ecaron comma -10 -KPX ecaron g -40 -KPX ecaron gbreve -40 -KPX ecaron gcommaaccent -40 -KPX ecaron period -15 -KPX ecaron v -15 -KPX ecaron w -15 -KPX ecaron x -20 -KPX ecaron y -30 -KPX ecaron yacute -30 -KPX ecaron ydieresis -30 -KPX ecircumflex comma -10 -KPX ecircumflex g -40 -KPX ecircumflex gbreve -40 -KPX ecircumflex gcommaaccent -40 -KPX ecircumflex period -15 -KPX ecircumflex v -15 -KPX ecircumflex w -15 -KPX ecircumflex x -20 -KPX ecircumflex y -30 -KPX ecircumflex yacute -30 -KPX ecircumflex ydieresis -30 -KPX edieresis comma -10 -KPX edieresis g -40 -KPX edieresis gbreve -40 -KPX edieresis gcommaaccent -40 -KPX edieresis period -15 -KPX edieresis v -15 -KPX edieresis w -15 -KPX edieresis x -20 -KPX edieresis y -30 -KPX edieresis yacute -30 -KPX edieresis ydieresis -30 -KPX edotaccent comma -10 -KPX edotaccent g -40 -KPX edotaccent gbreve -40 -KPX edotaccent gcommaaccent -40 -KPX edotaccent period -15 -KPX edotaccent v -15 -KPX edotaccent w -15 -KPX edotaccent x -20 -KPX edotaccent y -30 -KPX edotaccent yacute -30 -KPX edotaccent ydieresis -30 -KPX egrave comma -10 -KPX egrave g -40 -KPX egrave gbreve -40 -KPX egrave gcommaaccent -40 -KPX egrave period -15 -KPX egrave v -15 -KPX egrave w -15 -KPX egrave x -20 -KPX egrave y -30 -KPX egrave yacute -30 -KPX egrave ydieresis -30 -KPX emacron comma -10 -KPX emacron g -40 -KPX emacron gbreve -40 -KPX emacron gcommaaccent -40 -KPX emacron period -15 -KPX emacron v -15 -KPX emacron w -15 -KPX emacron x -20 -KPX emacron y -30 -KPX emacron yacute -30 -KPX emacron ydieresis -30 -KPX eogonek comma -10 -KPX eogonek g -40 -KPX eogonek gbreve -40 -KPX eogonek gcommaaccent -40 -KPX eogonek period -15 -KPX eogonek v -15 -KPX eogonek w -15 -KPX eogonek x -20 -KPX eogonek y -30 -KPX eogonek yacute -30 -KPX eogonek ydieresis -30 -KPX f comma -10 -KPX f dotlessi -60 -KPX f f -18 -KPX f i -20 -KPX f iogonek -20 -KPX f period -15 -KPX f quoteright 92 -KPX g comma -10 -KPX g e -10 -KPX g eacute -10 -KPX g ecaron -10 -KPX g ecircumflex -10 -KPX g edieresis -10 -KPX g edotaccent -10 -KPX g egrave -10 -KPX g emacron -10 -KPX g eogonek -10 -KPX g g -10 -KPX g gbreve -10 -KPX g gcommaaccent -10 -KPX g period -15 -KPX gbreve comma -10 -KPX gbreve e -10 -KPX gbreve eacute -10 -KPX gbreve ecaron -10 -KPX gbreve ecircumflex -10 -KPX gbreve edieresis -10 -KPX gbreve edotaccent -10 -KPX gbreve egrave -10 -KPX gbreve emacron -10 -KPX gbreve eogonek -10 -KPX gbreve g -10 -KPX gbreve gbreve -10 -KPX gbreve gcommaaccent -10 -KPX gbreve period -15 -KPX gcommaaccent comma -10 -KPX gcommaaccent e -10 -KPX gcommaaccent eacute -10 -KPX gcommaaccent ecaron -10 -KPX gcommaaccent ecircumflex -10 -KPX gcommaaccent edieresis -10 -KPX gcommaaccent edotaccent -10 -KPX gcommaaccent egrave -10 -KPX gcommaaccent emacron -10 -KPX gcommaaccent eogonek -10 -KPX gcommaaccent g -10 -KPX gcommaaccent gbreve -10 -KPX gcommaaccent gcommaaccent -10 -KPX gcommaaccent period -15 -KPX k e -10 -KPX k eacute -10 -KPX k ecaron -10 -KPX k ecircumflex -10 -KPX k edieresis -10 -KPX k edotaccent -10 -KPX k egrave -10 -KPX k emacron -10 -KPX k eogonek -10 -KPX k o -10 -KPX k oacute -10 -KPX k ocircumflex -10 -KPX k odieresis -10 -KPX k ograve -10 -KPX k ohungarumlaut -10 -KPX k omacron -10 -KPX k oslash -10 -KPX k otilde -10 -KPX k y -10 -KPX k yacute -10 -KPX k ydieresis -10 -KPX kcommaaccent e -10 -KPX kcommaaccent eacute -10 -KPX kcommaaccent ecaron -10 -KPX kcommaaccent ecircumflex -10 -KPX kcommaaccent edieresis -10 -KPX kcommaaccent edotaccent -10 -KPX kcommaaccent egrave -10 -KPX kcommaaccent emacron -10 -KPX kcommaaccent eogonek -10 -KPX kcommaaccent o -10 -KPX kcommaaccent oacute -10 -KPX kcommaaccent ocircumflex -10 -KPX kcommaaccent odieresis -10 -KPX kcommaaccent ograve -10 -KPX kcommaaccent ohungarumlaut -10 -KPX kcommaaccent omacron -10 -KPX kcommaaccent oslash -10 -KPX kcommaaccent otilde -10 -KPX kcommaaccent y -10 -KPX kcommaaccent yacute -10 -KPX kcommaaccent ydieresis -10 -KPX n v -40 -KPX nacute v -40 -KPX ncaron v -40 -KPX ncommaaccent v -40 -KPX ntilde v -40 -KPX o g -10 -KPX o gbreve -10 -KPX o gcommaaccent -10 -KPX o v -10 -KPX oacute g -10 -KPX oacute gbreve -10 -KPX oacute gcommaaccent -10 -KPX oacute v -10 -KPX ocircumflex g -10 -KPX ocircumflex gbreve -10 -KPX ocircumflex gcommaaccent -10 -KPX ocircumflex v -10 -KPX odieresis g -10 -KPX odieresis gbreve -10 -KPX odieresis gcommaaccent -10 -KPX odieresis v -10 -KPX ograve g -10 -KPX ograve gbreve -10 -KPX ograve gcommaaccent -10 -KPX ograve v -10 -KPX ohungarumlaut g -10 -KPX ohungarumlaut gbreve -10 -KPX ohungarumlaut gcommaaccent -10 -KPX ohungarumlaut v -10 -KPX omacron g -10 -KPX omacron gbreve -10 -KPX omacron gcommaaccent -10 -KPX omacron v -10 -KPX oslash g -10 -KPX oslash gbreve -10 -KPX oslash gcommaaccent -10 -KPX oslash v -10 -KPX otilde g -10 -KPX otilde gbreve -10 -KPX otilde gcommaaccent -10 -KPX otilde v -10 -KPX period quotedblright -140 -KPX period quoteright -140 -KPX quoteleft quoteleft -111 -KPX quoteright d -25 -KPX quoteright dcroat -25 -KPX quoteright quoteright -111 -KPX quoteright r -25 -KPX quoteright racute -25 -KPX quoteright rcaron -25 -KPX quoteright rcommaaccent -25 -KPX quoteright s -40 -KPX quoteright sacute -40 -KPX quoteright scaron -40 -KPX quoteright scedilla -40 -KPX quoteright scommaaccent -40 -KPX quoteright space -111 -KPX quoteright t -30 -KPX quoteright tcommaaccent -30 -KPX quoteright v -10 -KPX r a -15 -KPX r aacute -15 -KPX r abreve -15 -KPX r acircumflex -15 -KPX r adieresis -15 -KPX r agrave -15 -KPX r amacron -15 -KPX r aogonek -15 -KPX r aring -15 -KPX r atilde -15 -KPX r c -37 -KPX r cacute -37 -KPX r ccaron -37 -KPX r ccedilla -37 -KPX r comma -111 -KPX r d -37 -KPX r dcroat -37 -KPX r e -37 -KPX r eacute -37 -KPX r ecaron -37 -KPX r ecircumflex -37 -KPX r edieresis -37 -KPX r edotaccent -37 -KPX r egrave -37 -KPX r emacron -37 -KPX r eogonek -37 -KPX r g -37 -KPX r gbreve -37 -KPX r gcommaaccent -37 -KPX r hyphen -20 -KPX r o -45 -KPX r oacute -45 -KPX r ocircumflex -45 -KPX r odieresis -45 -KPX r ograve -45 -KPX r ohungarumlaut -45 -KPX r omacron -45 -KPX r oslash -45 -KPX r otilde -45 -KPX r period -111 -KPX r q -37 -KPX r s -10 -KPX r sacute -10 -KPX r scaron -10 -KPX r scedilla -10 -KPX r scommaaccent -10 -KPX racute a -15 -KPX racute aacute -15 -KPX racute abreve -15 -KPX racute acircumflex -15 -KPX racute adieresis -15 -KPX racute agrave -15 -KPX racute amacron -15 -KPX racute aogonek -15 -KPX racute aring -15 -KPX racute atilde -15 -KPX racute c -37 -KPX racute cacute -37 -KPX racute ccaron -37 -KPX racute ccedilla -37 -KPX racute comma -111 -KPX racute d -37 -KPX racute dcroat -37 -KPX racute e -37 -KPX racute eacute -37 -KPX racute ecaron -37 -KPX racute ecircumflex -37 -KPX racute edieresis -37 -KPX racute edotaccent -37 -KPX racute egrave -37 -KPX racute emacron -37 -KPX racute eogonek -37 -KPX racute g -37 -KPX racute gbreve -37 -KPX racute gcommaaccent -37 -KPX racute hyphen -20 -KPX racute o -45 -KPX racute oacute -45 -KPX racute ocircumflex -45 -KPX racute odieresis -45 -KPX racute ograve -45 -KPX racute ohungarumlaut -45 -KPX racute omacron -45 -KPX racute oslash -45 -KPX racute otilde -45 -KPX racute period -111 -KPX racute q -37 -KPX racute s -10 -KPX racute sacute -10 -KPX racute scaron -10 -KPX racute scedilla -10 -KPX racute scommaaccent -10 -KPX rcaron a -15 -KPX rcaron aacute -15 -KPX rcaron abreve -15 -KPX rcaron acircumflex -15 -KPX rcaron adieresis -15 -KPX rcaron agrave -15 -KPX rcaron amacron -15 -KPX rcaron aogonek -15 -KPX rcaron aring -15 -KPX rcaron atilde -15 -KPX rcaron c -37 -KPX rcaron cacute -37 -KPX rcaron ccaron -37 -KPX rcaron ccedilla -37 -KPX rcaron comma -111 -KPX rcaron d -37 -KPX rcaron dcroat -37 -KPX rcaron e -37 -KPX rcaron eacute -37 -KPX rcaron ecaron -37 -KPX rcaron ecircumflex -37 -KPX rcaron edieresis -37 -KPX rcaron edotaccent -37 -KPX rcaron egrave -37 -KPX rcaron emacron -37 -KPX rcaron eogonek -37 -KPX rcaron g -37 -KPX rcaron gbreve -37 -KPX rcaron gcommaaccent -37 -KPX rcaron hyphen -20 -KPX rcaron o -45 -KPX rcaron oacute -45 -KPX rcaron ocircumflex -45 -KPX rcaron odieresis -45 -KPX rcaron ograve -45 -KPX rcaron ohungarumlaut -45 -KPX rcaron omacron -45 -KPX rcaron oslash -45 -KPX rcaron otilde -45 -KPX rcaron period -111 -KPX rcaron q -37 -KPX rcaron s -10 -KPX rcaron sacute -10 -KPX rcaron scaron -10 -KPX rcaron scedilla -10 -KPX rcaron scommaaccent -10 -KPX rcommaaccent a -15 -KPX rcommaaccent aacute -15 -KPX rcommaaccent abreve -15 -KPX rcommaaccent acircumflex -15 -KPX rcommaaccent adieresis -15 -KPX rcommaaccent agrave -15 -KPX rcommaaccent amacron -15 -KPX rcommaaccent aogonek -15 -KPX rcommaaccent aring -15 -KPX rcommaaccent atilde -15 -KPX rcommaaccent c -37 -KPX rcommaaccent cacute -37 -KPX rcommaaccent ccaron -37 -KPX rcommaaccent ccedilla -37 -KPX rcommaaccent comma -111 -KPX rcommaaccent d -37 -KPX rcommaaccent dcroat -37 -KPX rcommaaccent e -37 -KPX rcommaaccent eacute -37 -KPX rcommaaccent ecaron -37 -KPX rcommaaccent ecircumflex -37 -KPX rcommaaccent edieresis -37 -KPX rcommaaccent edotaccent -37 -KPX rcommaaccent egrave -37 -KPX rcommaaccent emacron -37 -KPX rcommaaccent eogonek -37 -KPX rcommaaccent g -37 -KPX rcommaaccent gbreve -37 -KPX rcommaaccent gcommaaccent -37 -KPX rcommaaccent hyphen -20 -KPX rcommaaccent o -45 -KPX rcommaaccent oacute -45 -KPX rcommaaccent ocircumflex -45 -KPX rcommaaccent odieresis -45 -KPX rcommaaccent ograve -45 -KPX rcommaaccent ohungarumlaut -45 -KPX rcommaaccent omacron -45 -KPX rcommaaccent oslash -45 -KPX rcommaaccent otilde -45 -KPX rcommaaccent period -111 -KPX rcommaaccent q -37 -KPX rcommaaccent s -10 -KPX rcommaaccent sacute -10 -KPX rcommaaccent scaron -10 -KPX rcommaaccent scedilla -10 -KPX rcommaaccent scommaaccent -10 -KPX space A -18 -KPX space Aacute -18 -KPX space Abreve -18 -KPX space Acircumflex -18 -KPX space Adieresis -18 -KPX space Agrave -18 -KPX space Amacron -18 -KPX space Aogonek -18 -KPX space Aring -18 -KPX space Atilde -18 -KPX space T -18 -KPX space Tcaron -18 -KPX space Tcommaaccent -18 -KPX space V -35 -KPX space W -40 -KPX space Y -75 -KPX space Yacute -75 -KPX space Ydieresis -75 -KPX v comma -74 -KPX v period -74 -KPX w comma -74 -KPX w period -74 -KPX y comma -55 -KPX y period -55 -KPX yacute comma -55 -KPX yacute period -55 -KPX ydieresis comma -55 -KPX ydieresis period -55 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/Times-Roman.afm b/target/classes/com/itextpdf/text/pdf/fonts/Times-Roman.afm deleted file mode 100644 index a0953f28..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/Times-Roman.afm +++ /dev/null @@ -1,2419 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 12:49:17 1997 -Comment UniqueID 43068 -Comment VMusage 43909 54934 -FontName Times-Roman -FullName Times Roman -FamilyName Times -Weight Roman -ItalicAngle 0 -IsFixedPitch false -CharacterSet ExtendedRoman -FontBBox -168 -218 1000 898 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries. -EncodingScheme AdobeStandardEncoding -CapHeight 662 -XHeight 450 -Ascender 683 -Descender -217 -StdHW 28 -StdVW 84 -StartCharMetrics 315 -C 32 ; WX 250 ; N space ; B 0 0 0 0 ; -C 33 ; WX 333 ; N exclam ; B 130 -9 238 676 ; -C 34 ; WX 408 ; N quotedbl ; B 77 431 331 676 ; -C 35 ; WX 500 ; N numbersign ; B 5 0 496 662 ; -C 36 ; WX 500 ; N dollar ; B 44 -87 457 727 ; -C 37 ; WX 833 ; N percent ; B 61 -13 772 676 ; -C 38 ; WX 778 ; N ampersand ; B 42 -13 750 676 ; -C 39 ; WX 333 ; N quoteright ; B 79 433 218 676 ; -C 40 ; WX 333 ; N parenleft ; B 48 -177 304 676 ; -C 41 ; WX 333 ; N parenright ; B 29 -177 285 676 ; -C 42 ; WX 500 ; N asterisk ; B 69 265 432 676 ; -C 43 ; WX 564 ; N plus ; B 30 0 534 506 ; -C 44 ; WX 250 ; N comma ; B 56 -141 195 102 ; -C 45 ; WX 333 ; N hyphen ; B 39 194 285 257 ; -C 46 ; WX 250 ; N period ; B 70 -11 181 100 ; -C 47 ; WX 278 ; N slash ; B -9 -14 287 676 ; -C 48 ; WX 500 ; N zero ; B 24 -14 476 676 ; -C 49 ; WX 500 ; N one ; B 111 0 394 676 ; -C 50 ; WX 500 ; N two ; B 30 0 475 676 ; -C 51 ; WX 500 ; N three ; B 43 -14 431 676 ; -C 52 ; WX 500 ; N four ; B 12 0 472 676 ; -C 53 ; WX 500 ; N five ; B 32 -14 438 688 ; -C 54 ; WX 500 ; N six ; B 34 -14 468 684 ; -C 55 ; WX 500 ; N seven ; B 20 -8 449 662 ; -C 56 ; WX 500 ; N eight ; B 56 -14 445 676 ; -C 57 ; WX 500 ; N nine ; B 30 -22 459 676 ; -C 58 ; WX 278 ; N colon ; B 81 -11 192 459 ; -C 59 ; WX 278 ; N semicolon ; B 80 -141 219 459 ; -C 60 ; WX 564 ; N less ; B 28 -8 536 514 ; -C 61 ; WX 564 ; N equal ; B 30 120 534 386 ; -C 62 ; WX 564 ; N greater ; B 28 -8 536 514 ; -C 63 ; WX 444 ; N question ; B 68 -8 414 676 ; -C 64 ; WX 921 ; N at ; B 116 -14 809 676 ; -C 65 ; WX 722 ; N A ; B 15 0 706 674 ; -C 66 ; WX 667 ; N B ; B 17 0 593 662 ; -C 67 ; WX 667 ; N C ; B 28 -14 633 676 ; -C 68 ; WX 722 ; N D ; B 16 0 685 662 ; -C 69 ; WX 611 ; N E ; B 12 0 597 662 ; -C 70 ; WX 556 ; N F ; B 12 0 546 662 ; -C 71 ; WX 722 ; N G ; B 32 -14 709 676 ; -C 72 ; WX 722 ; N H ; B 19 0 702 662 ; -C 73 ; WX 333 ; N I ; B 18 0 315 662 ; -C 74 ; WX 389 ; N J ; B 10 -14 370 662 ; -C 75 ; WX 722 ; N K ; B 34 0 723 662 ; -C 76 ; WX 611 ; N L ; B 12 0 598 662 ; -C 77 ; WX 889 ; N M ; B 12 0 863 662 ; -C 78 ; WX 722 ; N N ; B 12 -11 707 662 ; -C 79 ; WX 722 ; N O ; B 34 -14 688 676 ; -C 80 ; WX 556 ; N P ; B 16 0 542 662 ; -C 81 ; WX 722 ; N Q ; B 34 -178 701 676 ; -C 82 ; WX 667 ; N R ; B 17 0 659 662 ; -C 83 ; WX 556 ; N S ; B 42 -14 491 676 ; -C 84 ; WX 611 ; N T ; B 17 0 593 662 ; -C 85 ; WX 722 ; N U ; B 14 -14 705 662 ; -C 86 ; WX 722 ; N V ; B 16 -11 697 662 ; -C 87 ; WX 944 ; N W ; B 5 -11 932 662 ; -C 88 ; WX 722 ; N X ; B 10 0 704 662 ; -C 89 ; WX 722 ; N Y ; B 22 0 703 662 ; -C 90 ; WX 611 ; N Z ; B 9 0 597 662 ; -C 91 ; WX 333 ; N bracketleft ; B 88 -156 299 662 ; -C 92 ; WX 278 ; N backslash ; B -9 -14 287 676 ; -C 93 ; WX 333 ; N bracketright ; B 34 -156 245 662 ; -C 94 ; WX 469 ; N asciicircum ; B 24 297 446 662 ; -C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ; -C 96 ; WX 333 ; N quoteleft ; B 115 433 254 676 ; -C 97 ; WX 444 ; N a ; B 37 -10 442 460 ; -C 98 ; WX 500 ; N b ; B 3 -10 468 683 ; -C 99 ; WX 444 ; N c ; B 25 -10 412 460 ; -C 100 ; WX 500 ; N d ; B 27 -10 491 683 ; -C 101 ; WX 444 ; N e ; B 25 -10 424 460 ; -C 102 ; WX 333 ; N f ; B 20 0 383 683 ; L i fi ; L l fl ; -C 103 ; WX 500 ; N g ; B 28 -218 470 460 ; -C 104 ; WX 500 ; N h ; B 9 0 487 683 ; -C 105 ; WX 278 ; N i ; B 16 0 253 683 ; -C 106 ; WX 278 ; N j ; B -70 -218 194 683 ; -C 107 ; WX 500 ; N k ; B 7 0 505 683 ; -C 108 ; WX 278 ; N l ; B 19 0 257 683 ; -C 109 ; WX 778 ; N m ; B 16 0 775 460 ; -C 110 ; WX 500 ; N n ; B 16 0 485 460 ; -C 111 ; WX 500 ; N o ; B 29 -10 470 460 ; -C 112 ; WX 500 ; N p ; B 5 -217 470 460 ; -C 113 ; WX 500 ; N q ; B 24 -217 488 460 ; -C 114 ; WX 333 ; N r ; B 5 0 335 460 ; -C 115 ; WX 389 ; N s ; B 51 -10 348 460 ; -C 116 ; WX 278 ; N t ; B 13 -10 279 579 ; -C 117 ; WX 500 ; N u ; B 9 -10 479 450 ; -C 118 ; WX 500 ; N v ; B 19 -14 477 450 ; -C 119 ; WX 722 ; N w ; B 21 -14 694 450 ; -C 120 ; WX 500 ; N x ; B 17 0 479 450 ; -C 121 ; WX 500 ; N y ; B 14 -218 475 450 ; -C 122 ; WX 444 ; N z ; B 27 0 418 450 ; -C 123 ; WX 480 ; N braceleft ; B 100 -181 350 680 ; -C 124 ; WX 200 ; N bar ; B 67 -218 133 782 ; -C 125 ; WX 480 ; N braceright ; B 130 -181 380 680 ; -C 126 ; WX 541 ; N asciitilde ; B 40 183 502 323 ; -C 161 ; WX 333 ; N exclamdown ; B 97 -218 205 467 ; -C 162 ; WX 500 ; N cent ; B 53 -138 448 579 ; -C 163 ; WX 500 ; N sterling ; B 12 -8 490 676 ; -C 164 ; WX 167 ; N fraction ; B -168 -14 331 676 ; -C 165 ; WX 500 ; N yen ; B -53 0 512 662 ; -C 166 ; WX 500 ; N florin ; B 7 -189 490 676 ; -C 167 ; WX 500 ; N section ; B 70 -148 426 676 ; -C 168 ; WX 500 ; N currency ; B -22 58 522 602 ; -C 169 ; WX 180 ; N quotesingle ; B 48 431 133 676 ; -C 170 ; WX 444 ; N quotedblleft ; B 43 433 414 676 ; -C 171 ; WX 500 ; N guillemotleft ; B 42 33 456 416 ; -C 172 ; WX 333 ; N guilsinglleft ; B 63 33 285 416 ; -C 173 ; WX 333 ; N guilsinglright ; B 48 33 270 416 ; -C 174 ; WX 556 ; N fi ; B 31 0 521 683 ; -C 175 ; WX 556 ; N fl ; B 32 0 521 683 ; -C 177 ; WX 500 ; N endash ; B 0 201 500 250 ; -C 178 ; WX 500 ; N dagger ; B 59 -149 442 676 ; -C 179 ; WX 500 ; N daggerdbl ; B 58 -153 442 676 ; -C 180 ; WX 250 ; N periodcentered ; B 70 199 181 310 ; -C 182 ; WX 453 ; N paragraph ; B -22 -154 450 662 ; -C 183 ; WX 350 ; N bullet ; B 40 196 310 466 ; -C 184 ; WX 333 ; N quotesinglbase ; B 79 -141 218 102 ; -C 185 ; WX 444 ; N quotedblbase ; B 45 -141 416 102 ; -C 186 ; WX 444 ; N quotedblright ; B 30 433 401 676 ; -C 187 ; WX 500 ; N guillemotright ; B 44 33 458 416 ; -C 188 ; WX 1000 ; N ellipsis ; B 111 -11 888 100 ; -C 189 ; WX 1000 ; N perthousand ; B 7 -19 994 706 ; -C 191 ; WX 444 ; N questiondown ; B 30 -218 376 466 ; -C 193 ; WX 333 ; N grave ; B 19 507 242 678 ; -C 194 ; WX 333 ; N acute ; B 93 507 317 678 ; -C 195 ; WX 333 ; N circumflex ; B 11 507 322 674 ; -C 196 ; WX 333 ; N tilde ; B 1 532 331 638 ; -C 197 ; WX 333 ; N macron ; B 11 547 322 601 ; -C 198 ; WX 333 ; N breve ; B 26 507 307 664 ; -C 199 ; WX 333 ; N dotaccent ; B 118 581 216 681 ; -C 200 ; WX 333 ; N dieresis ; B 18 581 315 681 ; -C 202 ; WX 333 ; N ring ; B 67 512 266 711 ; -C 203 ; WX 333 ; N cedilla ; B 52 -215 261 0 ; -C 205 ; WX 333 ; N hungarumlaut ; B -3 507 377 678 ; -C 206 ; WX 333 ; N ogonek ; B 62 -165 243 0 ; -C 207 ; WX 333 ; N caron ; B 11 507 322 674 ; -C 208 ; WX 1000 ; N emdash ; B 0 201 1000 250 ; -C 225 ; WX 889 ; N AE ; B 0 0 863 662 ; -C 227 ; WX 276 ; N ordfeminine ; B 4 394 270 676 ; -C 232 ; WX 611 ; N Lslash ; B 12 0 598 662 ; -C 233 ; WX 722 ; N Oslash ; B 34 -80 688 734 ; -C 234 ; WX 889 ; N OE ; B 30 -6 885 668 ; -C 235 ; WX 310 ; N ordmasculine ; B 6 394 304 676 ; -C 241 ; WX 667 ; N ae ; B 38 -10 632 460 ; -C 245 ; WX 278 ; N dotlessi ; B 16 0 253 460 ; -C 248 ; WX 278 ; N lslash ; B 19 0 259 683 ; -C 249 ; WX 500 ; N oslash ; B 29 -112 470 551 ; -C 250 ; WX 722 ; N oe ; B 30 -10 690 460 ; -C 251 ; WX 500 ; N germandbls ; B 12 -9 468 683 ; -C -1 ; WX 333 ; N Idieresis ; B 18 0 315 835 ; -C -1 ; WX 444 ; N eacute ; B 25 -10 424 678 ; -C -1 ; WX 444 ; N abreve ; B 37 -10 442 664 ; -C -1 ; WX 500 ; N uhungarumlaut ; B 9 -10 501 678 ; -C -1 ; WX 444 ; N ecaron ; B 25 -10 424 674 ; -C -1 ; WX 722 ; N Ydieresis ; B 22 0 703 835 ; -C -1 ; WX 564 ; N divide ; B 30 -10 534 516 ; -C -1 ; WX 722 ; N Yacute ; B 22 0 703 890 ; -C -1 ; WX 722 ; N Acircumflex ; B 15 0 706 886 ; -C -1 ; WX 444 ; N aacute ; B 37 -10 442 678 ; -C -1 ; WX 722 ; N Ucircumflex ; B 14 -14 705 886 ; -C -1 ; WX 500 ; N yacute ; B 14 -218 475 678 ; -C -1 ; WX 389 ; N scommaaccent ; B 51 -218 348 460 ; -C -1 ; WX 444 ; N ecircumflex ; B 25 -10 424 674 ; -C -1 ; WX 722 ; N Uring ; B 14 -14 705 898 ; -C -1 ; WX 722 ; N Udieresis ; B 14 -14 705 835 ; -C -1 ; WX 444 ; N aogonek ; B 37 -165 469 460 ; -C -1 ; WX 722 ; N Uacute ; B 14 -14 705 890 ; -C -1 ; WX 500 ; N uogonek ; B 9 -155 487 450 ; -C -1 ; WX 611 ; N Edieresis ; B 12 0 597 835 ; -C -1 ; WX 722 ; N Dcroat ; B 16 0 685 662 ; -C -1 ; WX 250 ; N commaaccent ; B 59 -218 184 -50 ; -C -1 ; WX 760 ; N copyright ; B 38 -14 722 676 ; -C -1 ; WX 611 ; N Emacron ; B 12 0 597 813 ; -C -1 ; WX 444 ; N ccaron ; B 25 -10 412 674 ; -C -1 ; WX 444 ; N aring ; B 37 -10 442 711 ; -C -1 ; WX 722 ; N Ncommaaccent ; B 12 -198 707 662 ; -C -1 ; WX 278 ; N lacute ; B 19 0 290 890 ; -C -1 ; WX 444 ; N agrave ; B 37 -10 442 678 ; -C -1 ; WX 611 ; N Tcommaaccent ; B 17 -218 593 662 ; -C -1 ; WX 667 ; N Cacute ; B 28 -14 633 890 ; -C -1 ; WX 444 ; N atilde ; B 37 -10 442 638 ; -C -1 ; WX 611 ; N Edotaccent ; B 12 0 597 835 ; -C -1 ; WX 389 ; N scaron ; B 39 -10 350 674 ; -C -1 ; WX 389 ; N scedilla ; B 51 -215 348 460 ; -C -1 ; WX 278 ; N iacute ; B 16 0 290 678 ; -C -1 ; WX 471 ; N lozenge ; B 13 0 459 724 ; -C -1 ; WX 667 ; N Rcaron ; B 17 0 659 886 ; -C -1 ; WX 722 ; N Gcommaaccent ; B 32 -218 709 676 ; -C -1 ; WX 500 ; N ucircumflex ; B 9 -10 479 674 ; -C -1 ; WX 444 ; N acircumflex ; B 37 -10 442 674 ; -C -1 ; WX 722 ; N Amacron ; B 15 0 706 813 ; -C -1 ; WX 333 ; N rcaron ; B 5 0 335 674 ; -C -1 ; WX 444 ; N ccedilla ; B 25 -215 412 460 ; -C -1 ; WX 611 ; N Zdotaccent ; B 9 0 597 835 ; -C -1 ; WX 556 ; N Thorn ; B 16 0 542 662 ; -C -1 ; WX 722 ; N Omacron ; B 34 -14 688 813 ; -C -1 ; WX 667 ; N Racute ; B 17 0 659 890 ; -C -1 ; WX 556 ; N Sacute ; B 42 -14 491 890 ; -C -1 ; WX 588 ; N dcaron ; B 27 -10 589 695 ; -C -1 ; WX 722 ; N Umacron ; B 14 -14 705 813 ; -C -1 ; WX 500 ; N uring ; B 9 -10 479 711 ; -C -1 ; WX 300 ; N threesuperior ; B 15 262 291 676 ; -C -1 ; WX 722 ; N Ograve ; B 34 -14 688 890 ; -C -1 ; WX 722 ; N Agrave ; B 15 0 706 890 ; -C -1 ; WX 722 ; N Abreve ; B 15 0 706 876 ; -C -1 ; WX 564 ; N multiply ; B 38 8 527 497 ; -C -1 ; WX 500 ; N uacute ; B 9 -10 479 678 ; -C -1 ; WX 611 ; N Tcaron ; B 17 0 593 886 ; -C -1 ; WX 476 ; N partialdiff ; B 17 -38 459 710 ; -C -1 ; WX 500 ; N ydieresis ; B 14 -218 475 623 ; -C -1 ; WX 722 ; N Nacute ; B 12 -11 707 890 ; -C -1 ; WX 278 ; N icircumflex ; B -16 0 295 674 ; -C -1 ; WX 611 ; N Ecircumflex ; B 12 0 597 886 ; -C -1 ; WX 444 ; N adieresis ; B 37 -10 442 623 ; -C -1 ; WX 444 ; N edieresis ; B 25 -10 424 623 ; -C -1 ; WX 444 ; N cacute ; B 25 -10 413 678 ; -C -1 ; WX 500 ; N nacute ; B 16 0 485 678 ; -C -1 ; WX 500 ; N umacron ; B 9 -10 479 601 ; -C -1 ; WX 722 ; N Ncaron ; B 12 -11 707 886 ; -C -1 ; WX 333 ; N Iacute ; B 18 0 317 890 ; -C -1 ; WX 564 ; N plusminus ; B 30 0 534 506 ; -C -1 ; WX 200 ; N brokenbar ; B 67 -143 133 707 ; -C -1 ; WX 760 ; N registered ; B 38 -14 722 676 ; -C -1 ; WX 722 ; N Gbreve ; B 32 -14 709 876 ; -C -1 ; WX 333 ; N Idotaccent ; B 18 0 315 835 ; -C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ; -C -1 ; WX 611 ; N Egrave ; B 12 0 597 890 ; -C -1 ; WX 333 ; N racute ; B 5 0 335 678 ; -C -1 ; WX 500 ; N omacron ; B 29 -10 470 601 ; -C -1 ; WX 611 ; N Zacute ; B 9 0 597 890 ; -C -1 ; WX 611 ; N Zcaron ; B 9 0 597 886 ; -C -1 ; WX 549 ; N greaterequal ; B 26 0 523 666 ; -C -1 ; WX 722 ; N Eth ; B 16 0 685 662 ; -C -1 ; WX 667 ; N Ccedilla ; B 28 -215 633 676 ; -C -1 ; WX 278 ; N lcommaaccent ; B 19 -218 257 683 ; -C -1 ; WX 326 ; N tcaron ; B 13 -10 318 722 ; -C -1 ; WX 444 ; N eogonek ; B 25 -165 424 460 ; -C -1 ; WX 722 ; N Uogonek ; B 14 -165 705 662 ; -C -1 ; WX 722 ; N Aacute ; B 15 0 706 890 ; -C -1 ; WX 722 ; N Adieresis ; B 15 0 706 835 ; -C -1 ; WX 444 ; N egrave ; B 25 -10 424 678 ; -C -1 ; WX 444 ; N zacute ; B 27 0 418 678 ; -C -1 ; WX 278 ; N iogonek ; B 16 -165 265 683 ; -C -1 ; WX 722 ; N Oacute ; B 34 -14 688 890 ; -C -1 ; WX 500 ; N oacute ; B 29 -10 470 678 ; -C -1 ; WX 444 ; N amacron ; B 37 -10 442 601 ; -C -1 ; WX 389 ; N sacute ; B 51 -10 348 678 ; -C -1 ; WX 278 ; N idieresis ; B -9 0 288 623 ; -C -1 ; WX 722 ; N Ocircumflex ; B 34 -14 688 886 ; -C -1 ; WX 722 ; N Ugrave ; B 14 -14 705 890 ; -C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ; -C -1 ; WX 500 ; N thorn ; B 5 -217 470 683 ; -C -1 ; WX 300 ; N twosuperior ; B 1 270 296 676 ; -C -1 ; WX 722 ; N Odieresis ; B 34 -14 688 835 ; -C -1 ; WX 500 ; N mu ; B 36 -218 512 450 ; -C -1 ; WX 278 ; N igrave ; B -8 0 253 678 ; -C -1 ; WX 500 ; N ohungarumlaut ; B 29 -10 491 678 ; -C -1 ; WX 611 ; N Eogonek ; B 12 -165 597 662 ; -C -1 ; WX 500 ; N dcroat ; B 27 -10 500 683 ; -C -1 ; WX 750 ; N threequarters ; B 15 -14 718 676 ; -C -1 ; WX 556 ; N Scedilla ; B 42 -215 491 676 ; -C -1 ; WX 344 ; N lcaron ; B 19 0 347 695 ; -C -1 ; WX 722 ; N Kcommaaccent ; B 34 -198 723 662 ; -C -1 ; WX 611 ; N Lacute ; B 12 0 598 890 ; -C -1 ; WX 980 ; N trademark ; B 30 256 957 662 ; -C -1 ; WX 444 ; N edotaccent ; B 25 -10 424 623 ; -C -1 ; WX 333 ; N Igrave ; B 18 0 315 890 ; -C -1 ; WX 333 ; N Imacron ; B 11 0 322 813 ; -C -1 ; WX 611 ; N Lcaron ; B 12 0 598 676 ; -C -1 ; WX 750 ; N onehalf ; B 31 -14 746 676 ; -C -1 ; WX 549 ; N lessequal ; B 26 0 523 666 ; -C -1 ; WX 500 ; N ocircumflex ; B 29 -10 470 674 ; -C -1 ; WX 500 ; N ntilde ; B 16 0 485 638 ; -C -1 ; WX 722 ; N Uhungarumlaut ; B 14 -14 705 890 ; -C -1 ; WX 611 ; N Eacute ; B 12 0 597 890 ; -C -1 ; WX 444 ; N emacron ; B 25 -10 424 601 ; -C -1 ; WX 500 ; N gbreve ; B 28 -218 470 664 ; -C -1 ; WX 750 ; N onequarter ; B 37 -14 718 676 ; -C -1 ; WX 556 ; N Scaron ; B 42 -14 491 886 ; -C -1 ; WX 556 ; N Scommaaccent ; B 42 -218 491 676 ; -C -1 ; WX 722 ; N Ohungarumlaut ; B 34 -14 688 890 ; -C -1 ; WX 400 ; N degree ; B 57 390 343 676 ; -C -1 ; WX 500 ; N ograve ; B 29 -10 470 678 ; -C -1 ; WX 667 ; N Ccaron ; B 28 -14 633 886 ; -C -1 ; WX 500 ; N ugrave ; B 9 -10 479 678 ; -C -1 ; WX 453 ; N radical ; B 2 -60 452 768 ; -C -1 ; WX 722 ; N Dcaron ; B 16 0 685 886 ; -C -1 ; WX 333 ; N rcommaaccent ; B 5 -218 335 460 ; -C -1 ; WX 722 ; N Ntilde ; B 12 -11 707 850 ; -C -1 ; WX 500 ; N otilde ; B 29 -10 470 638 ; -C -1 ; WX 667 ; N Rcommaaccent ; B 17 -198 659 662 ; -C -1 ; WX 611 ; N Lcommaaccent ; B 12 -218 598 662 ; -C -1 ; WX 722 ; N Atilde ; B 15 0 706 850 ; -C -1 ; WX 722 ; N Aogonek ; B 15 -165 738 674 ; -C -1 ; WX 722 ; N Aring ; B 15 0 706 898 ; -C -1 ; WX 722 ; N Otilde ; B 34 -14 688 850 ; -C -1 ; WX 444 ; N zdotaccent ; B 27 0 418 623 ; -C -1 ; WX 611 ; N Ecaron ; B 12 0 597 886 ; -C -1 ; WX 333 ; N Iogonek ; B 18 -165 315 662 ; -C -1 ; WX 500 ; N kcommaaccent ; B 7 -218 505 683 ; -C -1 ; WX 564 ; N minus ; B 30 220 534 286 ; -C -1 ; WX 333 ; N Icircumflex ; B 11 0 322 886 ; -C -1 ; WX 500 ; N ncaron ; B 16 0 485 674 ; -C -1 ; WX 278 ; N tcommaaccent ; B 13 -218 279 579 ; -C -1 ; WX 564 ; N logicalnot ; B 30 108 534 386 ; -C -1 ; WX 500 ; N odieresis ; B 29 -10 470 623 ; -C -1 ; WX 500 ; N udieresis ; B 9 -10 479 623 ; -C -1 ; WX 549 ; N notequal ; B 12 -31 537 547 ; -C -1 ; WX 500 ; N gcommaaccent ; B 28 -218 470 749 ; -C -1 ; WX 500 ; N eth ; B 29 -10 471 686 ; -C -1 ; WX 444 ; N zcaron ; B 27 0 418 674 ; -C -1 ; WX 500 ; N ncommaaccent ; B 16 -218 485 460 ; -C -1 ; WX 300 ; N onesuperior ; B 57 270 248 676 ; -C -1 ; WX 278 ; N imacron ; B 6 0 271 601 ; -C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ; -EndCharMetrics -StartKernData -StartKernPairs 2073 -KPX A C -40 -KPX A Cacute -40 -KPX A Ccaron -40 -KPX A Ccedilla -40 -KPX A G -40 -KPX A Gbreve -40 -KPX A Gcommaaccent -40 -KPX A O -55 -KPX A Oacute -55 -KPX A Ocircumflex -55 -KPX A Odieresis -55 -KPX A Ograve -55 -KPX A Ohungarumlaut -55 -KPX A Omacron -55 -KPX A Oslash -55 -KPX A Otilde -55 -KPX A Q -55 -KPX A T -111 -KPX A Tcaron -111 -KPX A Tcommaaccent -111 -KPX A U -55 -KPX A Uacute -55 -KPX A Ucircumflex -55 -KPX A Udieresis -55 -KPX A Ugrave -55 -KPX A Uhungarumlaut -55 -KPX A Umacron -55 -KPX A Uogonek -55 -KPX A Uring -55 -KPX A V -135 -KPX A W -90 -KPX A Y -105 -KPX A Yacute -105 -KPX A Ydieresis -105 -KPX A quoteright -111 -KPX A v -74 -KPX A w -92 -KPX A y -92 -KPX A yacute -92 -KPX A ydieresis -92 -KPX Aacute C -40 -KPX Aacute Cacute -40 -KPX Aacute Ccaron -40 -KPX Aacute Ccedilla -40 -KPX Aacute G -40 -KPX Aacute Gbreve -40 -KPX Aacute Gcommaaccent -40 -KPX Aacute O -55 -KPX Aacute Oacute -55 -KPX Aacute Ocircumflex -55 -KPX Aacute Odieresis -55 -KPX Aacute Ograve -55 -KPX Aacute Ohungarumlaut -55 -KPX Aacute Omacron -55 -KPX Aacute Oslash -55 -KPX Aacute Otilde -55 -KPX Aacute Q -55 -KPX Aacute T -111 -KPX Aacute Tcaron -111 -KPX Aacute Tcommaaccent -111 -KPX Aacute U -55 -KPX Aacute Uacute -55 -KPX Aacute Ucircumflex -55 -KPX Aacute Udieresis -55 -KPX Aacute Ugrave -55 -KPX Aacute Uhungarumlaut -55 -KPX Aacute Umacron -55 -KPX Aacute Uogonek -55 -KPX Aacute Uring -55 -KPX Aacute V -135 -KPX Aacute W -90 -KPX Aacute Y -105 -KPX Aacute Yacute -105 -KPX Aacute Ydieresis -105 -KPX Aacute quoteright -111 -KPX Aacute v -74 -KPX Aacute w -92 -KPX Aacute y -92 -KPX Aacute yacute -92 -KPX Aacute ydieresis -92 -KPX Abreve C -40 -KPX Abreve Cacute -40 -KPX Abreve Ccaron -40 -KPX Abreve Ccedilla -40 -KPX Abreve G -40 -KPX Abreve Gbreve -40 -KPX Abreve Gcommaaccent -40 -KPX Abreve O -55 -KPX Abreve Oacute -55 -KPX Abreve Ocircumflex -55 -KPX Abreve Odieresis -55 -KPX Abreve Ograve -55 -KPX Abreve Ohungarumlaut -55 -KPX Abreve Omacron -55 -KPX Abreve Oslash -55 -KPX Abreve Otilde -55 -KPX Abreve Q -55 -KPX Abreve T -111 -KPX Abreve Tcaron -111 -KPX Abreve Tcommaaccent -111 -KPX Abreve U -55 -KPX Abreve Uacute -55 -KPX Abreve Ucircumflex -55 -KPX Abreve Udieresis -55 -KPX Abreve Ugrave -55 -KPX Abreve Uhungarumlaut -55 -KPX Abreve Umacron -55 -KPX Abreve Uogonek -55 -KPX Abreve Uring -55 -KPX Abreve V -135 -KPX Abreve W -90 -KPX Abreve Y -105 -KPX Abreve Yacute -105 -KPX Abreve Ydieresis -105 -KPX Abreve quoteright -111 -KPX Abreve v -74 -KPX Abreve w -92 -KPX Abreve y -92 -KPX Abreve yacute -92 -KPX Abreve ydieresis -92 -KPX Acircumflex C -40 -KPX Acircumflex Cacute -40 -KPX Acircumflex Ccaron -40 -KPX Acircumflex Ccedilla -40 -KPX Acircumflex G -40 -KPX Acircumflex Gbreve -40 -KPX Acircumflex Gcommaaccent -40 -KPX Acircumflex O -55 -KPX Acircumflex Oacute -55 -KPX Acircumflex Ocircumflex -55 -KPX Acircumflex Odieresis -55 -KPX Acircumflex Ograve -55 -KPX Acircumflex Ohungarumlaut -55 -KPX Acircumflex Omacron -55 -KPX Acircumflex Oslash -55 -KPX Acircumflex Otilde -55 -KPX Acircumflex Q -55 -KPX Acircumflex T -111 -KPX Acircumflex Tcaron -111 -KPX Acircumflex Tcommaaccent -111 -KPX Acircumflex U -55 -KPX Acircumflex Uacute -55 -KPX Acircumflex Ucircumflex -55 -KPX Acircumflex Udieresis -55 -KPX Acircumflex Ugrave -55 -KPX Acircumflex Uhungarumlaut -55 -KPX Acircumflex Umacron -55 -KPX Acircumflex Uogonek -55 -KPX Acircumflex Uring -55 -KPX Acircumflex V -135 -KPX Acircumflex W -90 -KPX Acircumflex Y -105 -KPX Acircumflex Yacute -105 -KPX Acircumflex Ydieresis -105 -KPX Acircumflex quoteright -111 -KPX Acircumflex v -74 -KPX Acircumflex w -92 -KPX Acircumflex y -92 -KPX Acircumflex yacute -92 -KPX Acircumflex ydieresis -92 -KPX Adieresis C -40 -KPX Adieresis Cacute -40 -KPX Adieresis Ccaron -40 -KPX Adieresis Ccedilla -40 -KPX Adieresis G -40 -KPX Adieresis Gbreve -40 -KPX Adieresis Gcommaaccent -40 -KPX Adieresis O -55 -KPX Adieresis Oacute -55 -KPX Adieresis Ocircumflex -55 -KPX Adieresis Odieresis -55 -KPX Adieresis Ograve -55 -KPX Adieresis Ohungarumlaut -55 -KPX Adieresis Omacron -55 -KPX Adieresis Oslash -55 -KPX Adieresis Otilde -55 -KPX Adieresis Q -55 -KPX Adieresis T -111 -KPX Adieresis Tcaron -111 -KPX Adieresis Tcommaaccent -111 -KPX Adieresis U -55 -KPX Adieresis Uacute -55 -KPX Adieresis Ucircumflex -55 -KPX Adieresis Udieresis -55 -KPX Adieresis Ugrave -55 -KPX Adieresis Uhungarumlaut -55 -KPX Adieresis Umacron -55 -KPX Adieresis Uogonek -55 -KPX Adieresis Uring -55 -KPX Adieresis V -135 -KPX Adieresis W -90 -KPX Adieresis Y -105 -KPX Adieresis Yacute -105 -KPX Adieresis Ydieresis -105 -KPX Adieresis quoteright -111 -KPX Adieresis v -74 -KPX Adieresis w -92 -KPX Adieresis y -92 -KPX Adieresis yacute -92 -KPX Adieresis ydieresis -92 -KPX Agrave C -40 -KPX Agrave Cacute -40 -KPX Agrave Ccaron -40 -KPX Agrave Ccedilla -40 -KPX Agrave G -40 -KPX Agrave Gbreve -40 -KPX Agrave Gcommaaccent -40 -KPX Agrave O -55 -KPX Agrave Oacute -55 -KPX Agrave Ocircumflex -55 -KPX Agrave Odieresis -55 -KPX Agrave Ograve -55 -KPX Agrave Ohungarumlaut -55 -KPX Agrave Omacron -55 -KPX Agrave Oslash -55 -KPX Agrave Otilde -55 -KPX Agrave Q -55 -KPX Agrave T -111 -KPX Agrave Tcaron -111 -KPX Agrave Tcommaaccent -111 -KPX Agrave U -55 -KPX Agrave Uacute -55 -KPX Agrave Ucircumflex -55 -KPX Agrave Udieresis -55 -KPX Agrave Ugrave -55 -KPX Agrave Uhungarumlaut -55 -KPX Agrave Umacron -55 -KPX Agrave Uogonek -55 -KPX Agrave Uring -55 -KPX Agrave V -135 -KPX Agrave W -90 -KPX Agrave Y -105 -KPX Agrave Yacute -105 -KPX Agrave Ydieresis -105 -KPX Agrave quoteright -111 -KPX Agrave v -74 -KPX Agrave w -92 -KPX Agrave y -92 -KPX Agrave yacute -92 -KPX Agrave ydieresis -92 -KPX Amacron C -40 -KPX Amacron Cacute -40 -KPX Amacron Ccaron -40 -KPX Amacron Ccedilla -40 -KPX Amacron G -40 -KPX Amacron Gbreve -40 -KPX Amacron Gcommaaccent -40 -KPX Amacron O -55 -KPX Amacron Oacute -55 -KPX Amacron Ocircumflex -55 -KPX Amacron Odieresis -55 -KPX Amacron Ograve -55 -KPX Amacron Ohungarumlaut -55 -KPX Amacron Omacron -55 -KPX Amacron Oslash -55 -KPX Amacron Otilde -55 -KPX Amacron Q -55 -KPX Amacron T -111 -KPX Amacron Tcaron -111 -KPX Amacron Tcommaaccent -111 -KPX Amacron U -55 -KPX Amacron Uacute -55 -KPX Amacron Ucircumflex -55 -KPX Amacron Udieresis -55 -KPX Amacron Ugrave -55 -KPX Amacron Uhungarumlaut -55 -KPX Amacron Umacron -55 -KPX Amacron Uogonek -55 -KPX Amacron Uring -55 -KPX Amacron V -135 -KPX Amacron W -90 -KPX Amacron Y -105 -KPX Amacron Yacute -105 -KPX Amacron Ydieresis -105 -KPX Amacron quoteright -111 -KPX Amacron v -74 -KPX Amacron w -92 -KPX Amacron y -92 -KPX Amacron yacute -92 -KPX Amacron ydieresis -92 -KPX Aogonek C -40 -KPX Aogonek Cacute -40 -KPX Aogonek Ccaron -40 -KPX Aogonek Ccedilla -40 -KPX Aogonek G -40 -KPX Aogonek Gbreve -40 -KPX Aogonek Gcommaaccent -40 -KPX Aogonek O -55 -KPX Aogonek Oacute -55 -KPX Aogonek Ocircumflex -55 -KPX Aogonek Odieresis -55 -KPX Aogonek Ograve -55 -KPX Aogonek Ohungarumlaut -55 -KPX Aogonek Omacron -55 -KPX Aogonek Oslash -55 -KPX Aogonek Otilde -55 -KPX Aogonek Q -55 -KPX Aogonek T -111 -KPX Aogonek Tcaron -111 -KPX Aogonek Tcommaaccent -111 -KPX Aogonek U -55 -KPX Aogonek Uacute -55 -KPX Aogonek Ucircumflex -55 -KPX Aogonek Udieresis -55 -KPX Aogonek Ugrave -55 -KPX Aogonek Uhungarumlaut -55 -KPX Aogonek Umacron -55 -KPX Aogonek Uogonek -55 -KPX Aogonek Uring -55 -KPX Aogonek V -135 -KPX Aogonek W -90 -KPX Aogonek Y -105 -KPX Aogonek Yacute -105 -KPX Aogonek Ydieresis -105 -KPX Aogonek quoteright -111 -KPX Aogonek v -74 -KPX Aogonek w -52 -KPX Aogonek y -52 -KPX Aogonek yacute -52 -KPX Aogonek ydieresis -52 -KPX Aring C -40 -KPX Aring Cacute -40 -KPX Aring Ccaron -40 -KPX Aring Ccedilla -40 -KPX Aring G -40 -KPX Aring Gbreve -40 -KPX Aring Gcommaaccent -40 -KPX Aring O -55 -KPX Aring Oacute -55 -KPX Aring Ocircumflex -55 -KPX Aring Odieresis -55 -KPX Aring Ograve -55 -KPX Aring Ohungarumlaut -55 -KPX Aring Omacron -55 -KPX Aring Oslash -55 -KPX Aring Otilde -55 -KPX Aring Q -55 -KPX Aring T -111 -KPX Aring Tcaron -111 -KPX Aring Tcommaaccent -111 -KPX Aring U -55 -KPX Aring Uacute -55 -KPX Aring Ucircumflex -55 -KPX Aring Udieresis -55 -KPX Aring Ugrave -55 -KPX Aring Uhungarumlaut -55 -KPX Aring Umacron -55 -KPX Aring Uogonek -55 -KPX Aring Uring -55 -KPX Aring V -135 -KPX Aring W -90 -KPX Aring Y -105 -KPX Aring Yacute -105 -KPX Aring Ydieresis -105 -KPX Aring quoteright -111 -KPX Aring v -74 -KPX Aring w -92 -KPX Aring y -92 -KPX Aring yacute -92 -KPX Aring ydieresis -92 -KPX Atilde C -40 -KPX Atilde Cacute -40 -KPX Atilde Ccaron -40 -KPX Atilde Ccedilla -40 -KPX Atilde G -40 -KPX Atilde Gbreve -40 -KPX Atilde Gcommaaccent -40 -KPX Atilde O -55 -KPX Atilde Oacute -55 -KPX Atilde Ocircumflex -55 -KPX Atilde Odieresis -55 -KPX Atilde Ograve -55 -KPX Atilde Ohungarumlaut -55 -KPX Atilde Omacron -55 -KPX Atilde Oslash -55 -KPX Atilde Otilde -55 -KPX Atilde Q -55 -KPX Atilde T -111 -KPX Atilde Tcaron -111 -KPX Atilde Tcommaaccent -111 -KPX Atilde U -55 -KPX Atilde Uacute -55 -KPX Atilde Ucircumflex -55 -KPX Atilde Udieresis -55 -KPX Atilde Ugrave -55 -KPX Atilde Uhungarumlaut -55 -KPX Atilde Umacron -55 -KPX Atilde Uogonek -55 -KPX Atilde Uring -55 -KPX Atilde V -135 -KPX Atilde W -90 -KPX Atilde Y -105 -KPX Atilde Yacute -105 -KPX Atilde Ydieresis -105 -KPX Atilde quoteright -111 -KPX Atilde v -74 -KPX Atilde w -92 -KPX Atilde y -92 -KPX Atilde yacute -92 -KPX Atilde ydieresis -92 -KPX B A -35 -KPX B Aacute -35 -KPX B Abreve -35 -KPX B Acircumflex -35 -KPX B Adieresis -35 -KPX B Agrave -35 -KPX B Amacron -35 -KPX B Aogonek -35 -KPX B Aring -35 -KPX B Atilde -35 -KPX B U -10 -KPX B Uacute -10 -KPX B Ucircumflex -10 -KPX B Udieresis -10 -KPX B Ugrave -10 -KPX B Uhungarumlaut -10 -KPX B Umacron -10 -KPX B Uogonek -10 -KPX B Uring -10 -KPX D A -40 -KPX D Aacute -40 -KPX D Abreve -40 -KPX D Acircumflex -40 -KPX D Adieresis -40 -KPX D Agrave -40 -KPX D Amacron -40 -KPX D Aogonek -40 -KPX D Aring -40 -KPX D Atilde -40 -KPX D V -40 -KPX D W -30 -KPX D Y -55 -KPX D Yacute -55 -KPX D Ydieresis -55 -KPX Dcaron A -40 -KPX Dcaron Aacute -40 -KPX Dcaron Abreve -40 -KPX Dcaron Acircumflex -40 -KPX Dcaron Adieresis -40 -KPX Dcaron Agrave -40 -KPX Dcaron Amacron -40 -KPX Dcaron Aogonek -40 -KPX Dcaron Aring -40 -KPX Dcaron Atilde -40 -KPX Dcaron V -40 -KPX Dcaron W -30 -KPX Dcaron Y -55 -KPX Dcaron Yacute -55 -KPX Dcaron Ydieresis -55 -KPX Dcroat A -40 -KPX Dcroat Aacute -40 -KPX Dcroat Abreve -40 -KPX Dcroat Acircumflex -40 -KPX Dcroat Adieresis -40 -KPX Dcroat Agrave -40 -KPX Dcroat Amacron -40 -KPX Dcroat Aogonek -40 -KPX Dcroat Aring -40 -KPX Dcroat Atilde -40 -KPX Dcroat V -40 -KPX Dcroat W -30 -KPX Dcroat Y -55 -KPX Dcroat Yacute -55 -KPX Dcroat Ydieresis -55 -KPX F A -74 -KPX F Aacute -74 -KPX F Abreve -74 -KPX F Acircumflex -74 -KPX F Adieresis -74 -KPX F Agrave -74 -KPX F Amacron -74 -KPX F Aogonek -74 -KPX F Aring -74 -KPX F Atilde -74 -KPX F a -15 -KPX F aacute -15 -KPX F abreve -15 -KPX F acircumflex -15 -KPX F adieresis -15 -KPX F agrave -15 -KPX F amacron -15 -KPX F aogonek -15 -KPX F aring -15 -KPX F atilde -15 -KPX F comma -80 -KPX F o -15 -KPX F oacute -15 -KPX F ocircumflex -15 -KPX F odieresis -15 -KPX F ograve -15 -KPX F ohungarumlaut -15 -KPX F omacron -15 -KPX F oslash -15 -KPX F otilde -15 -KPX F period -80 -KPX J A -60 -KPX J Aacute -60 -KPX J Abreve -60 -KPX J Acircumflex -60 -KPX J Adieresis -60 -KPX J Agrave -60 -KPX J Amacron -60 -KPX J Aogonek -60 -KPX J Aring -60 -KPX J Atilde -60 -KPX K O -30 -KPX K Oacute -30 -KPX K Ocircumflex -30 -KPX K Odieresis -30 -KPX K Ograve -30 -KPX K Ohungarumlaut -30 -KPX K Omacron -30 -KPX K Oslash -30 -KPX K Otilde -30 -KPX K e -25 -KPX K eacute -25 -KPX K ecaron -25 -KPX K ecircumflex -25 -KPX K edieresis -25 -KPX K edotaccent -25 -KPX K egrave -25 -KPX K emacron -25 -KPX K eogonek -25 -KPX K o -35 -KPX K oacute -35 -KPX K ocircumflex -35 -KPX K odieresis -35 -KPX K ograve -35 -KPX K ohungarumlaut -35 -KPX K omacron -35 -KPX K oslash -35 -KPX K otilde -35 -KPX K u -15 -KPX K uacute -15 -KPX K ucircumflex -15 -KPX K udieresis -15 -KPX K ugrave -15 -KPX K uhungarumlaut -15 -KPX K umacron -15 -KPX K uogonek -15 -KPX K uring -15 -KPX K y -25 -KPX K yacute -25 -KPX K ydieresis -25 -KPX Kcommaaccent O -30 -KPX Kcommaaccent Oacute -30 -KPX Kcommaaccent Ocircumflex -30 -KPX Kcommaaccent Odieresis -30 -KPX Kcommaaccent Ograve -30 -KPX Kcommaaccent Ohungarumlaut -30 -KPX Kcommaaccent Omacron -30 -KPX Kcommaaccent Oslash -30 -KPX Kcommaaccent Otilde -30 -KPX Kcommaaccent e -25 -KPX Kcommaaccent eacute -25 -KPX Kcommaaccent ecaron -25 -KPX Kcommaaccent ecircumflex -25 -KPX Kcommaaccent edieresis -25 -KPX Kcommaaccent edotaccent -25 -KPX Kcommaaccent egrave -25 -KPX Kcommaaccent emacron -25 -KPX Kcommaaccent eogonek -25 -KPX Kcommaaccent o -35 -KPX Kcommaaccent oacute -35 -KPX Kcommaaccent ocircumflex -35 -KPX Kcommaaccent odieresis -35 -KPX Kcommaaccent ograve -35 -KPX Kcommaaccent ohungarumlaut -35 -KPX Kcommaaccent omacron -35 -KPX Kcommaaccent oslash -35 -KPX Kcommaaccent otilde -35 -KPX Kcommaaccent u -15 -KPX Kcommaaccent uacute -15 -KPX Kcommaaccent ucircumflex -15 -KPX Kcommaaccent udieresis -15 -KPX Kcommaaccent ugrave -15 -KPX Kcommaaccent uhungarumlaut -15 -KPX Kcommaaccent umacron -15 -KPX Kcommaaccent uogonek -15 -KPX Kcommaaccent uring -15 -KPX Kcommaaccent y -25 -KPX Kcommaaccent yacute -25 -KPX Kcommaaccent ydieresis -25 -KPX L T -92 -KPX L Tcaron -92 -KPX L Tcommaaccent -92 -KPX L V -100 -KPX L W -74 -KPX L Y -100 -KPX L Yacute -100 -KPX L Ydieresis -100 -KPX L quoteright -92 -KPX L y -55 -KPX L yacute -55 -KPX L ydieresis -55 -KPX Lacute T -92 -KPX Lacute Tcaron -92 -KPX Lacute Tcommaaccent -92 -KPX Lacute V -100 -KPX Lacute W -74 -KPX Lacute Y -100 -KPX Lacute Yacute -100 -KPX Lacute Ydieresis -100 -KPX Lacute quoteright -92 -KPX Lacute y -55 -KPX Lacute yacute -55 -KPX Lacute ydieresis -55 -KPX Lcaron quoteright -92 -KPX Lcaron y -55 -KPX Lcaron yacute -55 -KPX Lcaron ydieresis -55 -KPX Lcommaaccent T -92 -KPX Lcommaaccent Tcaron -92 -KPX Lcommaaccent Tcommaaccent -92 -KPX Lcommaaccent V -100 -KPX Lcommaaccent W -74 -KPX Lcommaaccent Y -100 -KPX Lcommaaccent Yacute -100 -KPX Lcommaaccent Ydieresis -100 -KPX Lcommaaccent quoteright -92 -KPX Lcommaaccent y -55 -KPX Lcommaaccent yacute -55 -KPX Lcommaaccent ydieresis -55 -KPX Lslash T -92 -KPX Lslash Tcaron -92 -KPX Lslash Tcommaaccent -92 -KPX Lslash V -100 -KPX Lslash W -74 -KPX Lslash Y -100 -KPX Lslash Yacute -100 -KPX Lslash Ydieresis -100 -KPX Lslash quoteright -92 -KPX Lslash y -55 -KPX Lslash yacute -55 -KPX Lslash ydieresis -55 -KPX N A -35 -KPX N Aacute -35 -KPX N Abreve -35 -KPX N Acircumflex -35 -KPX N Adieresis -35 -KPX N Agrave -35 -KPX N Amacron -35 -KPX N Aogonek -35 -KPX N Aring -35 -KPX N Atilde -35 -KPX Nacute A -35 -KPX Nacute Aacute -35 -KPX Nacute Abreve -35 -KPX Nacute Acircumflex -35 -KPX Nacute Adieresis -35 -KPX Nacute Agrave -35 -KPX Nacute Amacron -35 -KPX Nacute Aogonek -35 -KPX Nacute Aring -35 -KPX Nacute Atilde -35 -KPX Ncaron A -35 -KPX Ncaron Aacute -35 -KPX Ncaron Abreve -35 -KPX Ncaron Acircumflex -35 -KPX Ncaron Adieresis -35 -KPX Ncaron Agrave -35 -KPX Ncaron Amacron -35 -KPX Ncaron Aogonek -35 -KPX Ncaron Aring -35 -KPX Ncaron Atilde -35 -KPX Ncommaaccent A -35 -KPX Ncommaaccent Aacute -35 -KPX Ncommaaccent Abreve -35 -KPX Ncommaaccent Acircumflex -35 -KPX Ncommaaccent Adieresis -35 -KPX Ncommaaccent Agrave -35 -KPX Ncommaaccent Amacron -35 -KPX Ncommaaccent Aogonek -35 -KPX Ncommaaccent Aring -35 -KPX Ncommaaccent Atilde -35 -KPX Ntilde A -35 -KPX Ntilde Aacute -35 -KPX Ntilde Abreve -35 -KPX Ntilde Acircumflex -35 -KPX Ntilde Adieresis -35 -KPX Ntilde Agrave -35 -KPX Ntilde Amacron -35 -KPX Ntilde Aogonek -35 -KPX Ntilde Aring -35 -KPX Ntilde Atilde -35 -KPX O A -35 -KPX O Aacute -35 -KPX O Abreve -35 -KPX O Acircumflex -35 -KPX O Adieresis -35 -KPX O Agrave -35 -KPX O Amacron -35 -KPX O Aogonek -35 -KPX O Aring -35 -KPX O Atilde -35 -KPX O T -40 -KPX O Tcaron -40 -KPX O Tcommaaccent -40 -KPX O V -50 -KPX O W -35 -KPX O X -40 -KPX O Y -50 -KPX O Yacute -50 -KPX O Ydieresis -50 -KPX Oacute A -35 -KPX Oacute Aacute -35 -KPX Oacute Abreve -35 -KPX Oacute Acircumflex -35 -KPX Oacute Adieresis -35 -KPX Oacute Agrave -35 -KPX Oacute Amacron -35 -KPX Oacute Aogonek -35 -KPX Oacute Aring -35 -KPX Oacute Atilde -35 -KPX Oacute T -40 -KPX Oacute Tcaron -40 -KPX Oacute Tcommaaccent -40 -KPX Oacute V -50 -KPX Oacute W -35 -KPX Oacute X -40 -KPX Oacute Y -50 -KPX Oacute Yacute -50 -KPX Oacute Ydieresis -50 -KPX Ocircumflex A -35 -KPX Ocircumflex Aacute -35 -KPX Ocircumflex Abreve -35 -KPX Ocircumflex Acircumflex -35 -KPX Ocircumflex Adieresis -35 -KPX Ocircumflex Agrave -35 -KPX Ocircumflex Amacron -35 -KPX Ocircumflex Aogonek -35 -KPX Ocircumflex Aring -35 -KPX Ocircumflex Atilde -35 -KPX Ocircumflex T -40 -KPX Ocircumflex Tcaron -40 -KPX Ocircumflex Tcommaaccent -40 -KPX Ocircumflex V -50 -KPX Ocircumflex W -35 -KPX Ocircumflex X -40 -KPX Ocircumflex Y -50 -KPX Ocircumflex Yacute -50 -KPX Ocircumflex Ydieresis -50 -KPX Odieresis A -35 -KPX Odieresis Aacute -35 -KPX Odieresis Abreve -35 -KPX Odieresis Acircumflex -35 -KPX Odieresis Adieresis -35 -KPX Odieresis Agrave -35 -KPX Odieresis Amacron -35 -KPX Odieresis Aogonek -35 -KPX Odieresis Aring -35 -KPX Odieresis Atilde -35 -KPX Odieresis T -40 -KPX Odieresis Tcaron -40 -KPX Odieresis Tcommaaccent -40 -KPX Odieresis V -50 -KPX Odieresis W -35 -KPX Odieresis X -40 -KPX Odieresis Y -50 -KPX Odieresis Yacute -50 -KPX Odieresis Ydieresis -50 -KPX Ograve A -35 -KPX Ograve Aacute -35 -KPX Ograve Abreve -35 -KPX Ograve Acircumflex -35 -KPX Ograve Adieresis -35 -KPX Ograve Agrave -35 -KPX Ograve Amacron -35 -KPX Ograve Aogonek -35 -KPX Ograve Aring -35 -KPX Ograve Atilde -35 -KPX Ograve T -40 -KPX Ograve Tcaron -40 -KPX Ograve Tcommaaccent -40 -KPX Ograve V -50 -KPX Ograve W -35 -KPX Ograve X -40 -KPX Ograve Y -50 -KPX Ograve Yacute -50 -KPX Ograve Ydieresis -50 -KPX Ohungarumlaut A -35 -KPX Ohungarumlaut Aacute -35 -KPX Ohungarumlaut Abreve -35 -KPX Ohungarumlaut Acircumflex -35 -KPX Ohungarumlaut Adieresis -35 -KPX Ohungarumlaut Agrave -35 -KPX Ohungarumlaut Amacron -35 -KPX Ohungarumlaut Aogonek -35 -KPX Ohungarumlaut Aring -35 -KPX Ohungarumlaut Atilde -35 -KPX Ohungarumlaut T -40 -KPX Ohungarumlaut Tcaron -40 -KPX Ohungarumlaut Tcommaaccent -40 -KPX Ohungarumlaut V -50 -KPX Ohungarumlaut W -35 -KPX Ohungarumlaut X -40 -KPX Ohungarumlaut Y -50 -KPX Ohungarumlaut Yacute -50 -KPX Ohungarumlaut Ydieresis -50 -KPX Omacron A -35 -KPX Omacron Aacute -35 -KPX Omacron Abreve -35 -KPX Omacron Acircumflex -35 -KPX Omacron Adieresis -35 -KPX Omacron Agrave -35 -KPX Omacron Amacron -35 -KPX Omacron Aogonek -35 -KPX Omacron Aring -35 -KPX Omacron Atilde -35 -KPX Omacron T -40 -KPX Omacron Tcaron -40 -KPX Omacron Tcommaaccent -40 -KPX Omacron V -50 -KPX Omacron W -35 -KPX Omacron X -40 -KPX Omacron Y -50 -KPX Omacron Yacute -50 -KPX Omacron Ydieresis -50 -KPX Oslash A -35 -KPX Oslash Aacute -35 -KPX Oslash Abreve -35 -KPX Oslash Acircumflex -35 -KPX Oslash Adieresis -35 -KPX Oslash Agrave -35 -KPX Oslash Amacron -35 -KPX Oslash Aogonek -35 -KPX Oslash Aring -35 -KPX Oslash Atilde -35 -KPX Oslash T -40 -KPX Oslash Tcaron -40 -KPX Oslash Tcommaaccent -40 -KPX Oslash V -50 -KPX Oslash W -35 -KPX Oslash X -40 -KPX Oslash Y -50 -KPX Oslash Yacute -50 -KPX Oslash Ydieresis -50 -KPX Otilde A -35 -KPX Otilde Aacute -35 -KPX Otilde Abreve -35 -KPX Otilde Acircumflex -35 -KPX Otilde Adieresis -35 -KPX Otilde Agrave -35 -KPX Otilde Amacron -35 -KPX Otilde Aogonek -35 -KPX Otilde Aring -35 -KPX Otilde Atilde -35 -KPX Otilde T -40 -KPX Otilde Tcaron -40 -KPX Otilde Tcommaaccent -40 -KPX Otilde V -50 -KPX Otilde W -35 -KPX Otilde X -40 -KPX Otilde Y -50 -KPX Otilde Yacute -50 -KPX Otilde Ydieresis -50 -KPX P A -92 -KPX P Aacute -92 -KPX P Abreve -92 -KPX P Acircumflex -92 -KPX P Adieresis -92 -KPX P Agrave -92 -KPX P Amacron -92 -KPX P Aogonek -92 -KPX P Aring -92 -KPX P Atilde -92 -KPX P a -15 -KPX P aacute -15 -KPX P abreve -15 -KPX P acircumflex -15 -KPX P adieresis -15 -KPX P agrave -15 -KPX P amacron -15 -KPX P aogonek -15 -KPX P aring -15 -KPX P atilde -15 -KPX P comma -111 -KPX P period -111 -KPX Q U -10 -KPX Q Uacute -10 -KPX Q Ucircumflex -10 -KPX Q Udieresis -10 -KPX Q Ugrave -10 -KPX Q Uhungarumlaut -10 -KPX Q Umacron -10 -KPX Q Uogonek -10 -KPX Q Uring -10 -KPX R O -40 -KPX R Oacute -40 -KPX R Ocircumflex -40 -KPX R Odieresis -40 -KPX R Ograve -40 -KPX R Ohungarumlaut -40 -KPX R Omacron -40 -KPX R Oslash -40 -KPX R Otilde -40 -KPX R T -60 -KPX R Tcaron -60 -KPX R Tcommaaccent -60 -KPX R U -40 -KPX R Uacute -40 -KPX R Ucircumflex -40 -KPX R Udieresis -40 -KPX R Ugrave -40 -KPX R Uhungarumlaut -40 -KPX R Umacron -40 -KPX R Uogonek -40 -KPX R Uring -40 -KPX R V -80 -KPX R W -55 -KPX R Y -65 -KPX R Yacute -65 -KPX R Ydieresis -65 -KPX Racute O -40 -KPX Racute Oacute -40 -KPX Racute Ocircumflex -40 -KPX Racute Odieresis -40 -KPX Racute Ograve -40 -KPX Racute Ohungarumlaut -40 -KPX Racute Omacron -40 -KPX Racute Oslash -40 -KPX Racute Otilde -40 -KPX Racute T -60 -KPX Racute Tcaron -60 -KPX Racute Tcommaaccent -60 -KPX Racute U -40 -KPX Racute Uacute -40 -KPX Racute Ucircumflex -40 -KPX Racute Udieresis -40 -KPX Racute Ugrave -40 -KPX Racute Uhungarumlaut -40 -KPX Racute Umacron -40 -KPX Racute Uogonek -40 -KPX Racute Uring -40 -KPX Racute V -80 -KPX Racute W -55 -KPX Racute Y -65 -KPX Racute Yacute -65 -KPX Racute Ydieresis -65 -KPX Rcaron O -40 -KPX Rcaron Oacute -40 -KPX Rcaron Ocircumflex -40 -KPX Rcaron Odieresis -40 -KPX Rcaron Ograve -40 -KPX Rcaron Ohungarumlaut -40 -KPX Rcaron Omacron -40 -KPX Rcaron Oslash -40 -KPX Rcaron Otilde -40 -KPX Rcaron T -60 -KPX Rcaron Tcaron -60 -KPX Rcaron Tcommaaccent -60 -KPX Rcaron U -40 -KPX Rcaron Uacute -40 -KPX Rcaron Ucircumflex -40 -KPX Rcaron Udieresis -40 -KPX Rcaron Ugrave -40 -KPX Rcaron Uhungarumlaut -40 -KPX Rcaron Umacron -40 -KPX Rcaron Uogonek -40 -KPX Rcaron Uring -40 -KPX Rcaron V -80 -KPX Rcaron W -55 -KPX Rcaron Y -65 -KPX Rcaron Yacute -65 -KPX Rcaron Ydieresis -65 -KPX Rcommaaccent O -40 -KPX Rcommaaccent Oacute -40 -KPX Rcommaaccent Ocircumflex -40 -KPX Rcommaaccent Odieresis -40 -KPX Rcommaaccent Ograve -40 -KPX Rcommaaccent Ohungarumlaut -40 -KPX Rcommaaccent Omacron -40 -KPX Rcommaaccent Oslash -40 -KPX Rcommaaccent Otilde -40 -KPX Rcommaaccent T -60 -KPX Rcommaaccent Tcaron -60 -KPX Rcommaaccent Tcommaaccent -60 -KPX Rcommaaccent U -40 -KPX Rcommaaccent Uacute -40 -KPX Rcommaaccent Ucircumflex -40 -KPX Rcommaaccent Udieresis -40 -KPX Rcommaaccent Ugrave -40 -KPX Rcommaaccent Uhungarumlaut -40 -KPX Rcommaaccent Umacron -40 -KPX Rcommaaccent Uogonek -40 -KPX Rcommaaccent Uring -40 -KPX Rcommaaccent V -80 -KPX Rcommaaccent W -55 -KPX Rcommaaccent Y -65 -KPX Rcommaaccent Yacute -65 -KPX Rcommaaccent Ydieresis -65 -KPX T A -93 -KPX T Aacute -93 -KPX T Abreve -93 -KPX T Acircumflex -93 -KPX T Adieresis -93 -KPX T Agrave -93 -KPX T Amacron -93 -KPX T Aogonek -93 -KPX T Aring -93 -KPX T Atilde -93 -KPX T O -18 -KPX T Oacute -18 -KPX T Ocircumflex -18 -KPX T Odieresis -18 -KPX T Ograve -18 -KPX T Ohungarumlaut -18 -KPX T Omacron -18 -KPX T Oslash -18 -KPX T Otilde -18 -KPX T a -80 -KPX T aacute -80 -KPX T abreve -80 -KPX T acircumflex -80 -KPX T adieresis -40 -KPX T agrave -40 -KPX T amacron -40 -KPX T aogonek -80 -KPX T aring -80 -KPX T atilde -40 -KPX T colon -50 -KPX T comma -74 -KPX T e -70 -KPX T eacute -70 -KPX T ecaron -70 -KPX T ecircumflex -70 -KPX T edieresis -30 -KPX T edotaccent -70 -KPX T egrave -70 -KPX T emacron -30 -KPX T eogonek -70 -KPX T hyphen -92 -KPX T i -35 -KPX T iacute -35 -KPX T iogonek -35 -KPX T o -80 -KPX T oacute -80 -KPX T ocircumflex -80 -KPX T odieresis -80 -KPX T ograve -80 -KPX T ohungarumlaut -80 -KPX T omacron -80 -KPX T oslash -80 -KPX T otilde -80 -KPX T period -74 -KPX T r -35 -KPX T racute -35 -KPX T rcaron -35 -KPX T rcommaaccent -35 -KPX T semicolon -55 -KPX T u -45 -KPX T uacute -45 -KPX T ucircumflex -45 -KPX T udieresis -45 -KPX T ugrave -45 -KPX T uhungarumlaut -45 -KPX T umacron -45 -KPX T uogonek -45 -KPX T uring -45 -KPX T w -80 -KPX T y -80 -KPX T yacute -80 -KPX T ydieresis -80 -KPX Tcaron A -93 -KPX Tcaron Aacute -93 -KPX Tcaron Abreve -93 -KPX Tcaron Acircumflex -93 -KPX Tcaron Adieresis -93 -KPX Tcaron Agrave -93 -KPX Tcaron Amacron -93 -KPX Tcaron Aogonek -93 -KPX Tcaron Aring -93 -KPX Tcaron Atilde -93 -KPX Tcaron O -18 -KPX Tcaron Oacute -18 -KPX Tcaron Ocircumflex -18 -KPX Tcaron Odieresis -18 -KPX Tcaron Ograve -18 -KPX Tcaron Ohungarumlaut -18 -KPX Tcaron Omacron -18 -KPX Tcaron Oslash -18 -KPX Tcaron Otilde -18 -KPX Tcaron a -80 -KPX Tcaron aacute -80 -KPX Tcaron abreve -80 -KPX Tcaron acircumflex -80 -KPX Tcaron adieresis -40 -KPX Tcaron agrave -40 -KPX Tcaron amacron -40 -KPX Tcaron aogonek -80 -KPX Tcaron aring -80 -KPX Tcaron atilde -40 -KPX Tcaron colon -50 -KPX Tcaron comma -74 -KPX Tcaron e -70 -KPX Tcaron eacute -70 -KPX Tcaron ecaron -70 -KPX Tcaron ecircumflex -30 -KPX Tcaron edieresis -30 -KPX Tcaron edotaccent -70 -KPX Tcaron egrave -70 -KPX Tcaron emacron -30 -KPX Tcaron eogonek -70 -KPX Tcaron hyphen -92 -KPX Tcaron i -35 -KPX Tcaron iacute -35 -KPX Tcaron iogonek -35 -KPX Tcaron o -80 -KPX Tcaron oacute -80 -KPX Tcaron ocircumflex -80 -KPX Tcaron odieresis -80 -KPX Tcaron ograve -80 -KPX Tcaron ohungarumlaut -80 -KPX Tcaron omacron -80 -KPX Tcaron oslash -80 -KPX Tcaron otilde -80 -KPX Tcaron period -74 -KPX Tcaron r -35 -KPX Tcaron racute -35 -KPX Tcaron rcaron -35 -KPX Tcaron rcommaaccent -35 -KPX Tcaron semicolon -55 -KPX Tcaron u -45 -KPX Tcaron uacute -45 -KPX Tcaron ucircumflex -45 -KPX Tcaron udieresis -45 -KPX Tcaron ugrave -45 -KPX Tcaron uhungarumlaut -45 -KPX Tcaron umacron -45 -KPX Tcaron uogonek -45 -KPX Tcaron uring -45 -KPX Tcaron w -80 -KPX Tcaron y -80 -KPX Tcaron yacute -80 -KPX Tcaron ydieresis -80 -KPX Tcommaaccent A -93 -KPX Tcommaaccent Aacute -93 -KPX Tcommaaccent Abreve -93 -KPX Tcommaaccent Acircumflex -93 -KPX Tcommaaccent Adieresis -93 -KPX Tcommaaccent Agrave -93 -KPX Tcommaaccent Amacron -93 -KPX Tcommaaccent Aogonek -93 -KPX Tcommaaccent Aring -93 -KPX Tcommaaccent Atilde -93 -KPX Tcommaaccent O -18 -KPX Tcommaaccent Oacute -18 -KPX Tcommaaccent Ocircumflex -18 -KPX Tcommaaccent Odieresis -18 -KPX Tcommaaccent Ograve -18 -KPX Tcommaaccent Ohungarumlaut -18 -KPX Tcommaaccent Omacron -18 -KPX Tcommaaccent Oslash -18 -KPX Tcommaaccent Otilde -18 -KPX Tcommaaccent a -80 -KPX Tcommaaccent aacute -80 -KPX Tcommaaccent abreve -80 -KPX Tcommaaccent acircumflex -80 -KPX Tcommaaccent adieresis -40 -KPX Tcommaaccent agrave -40 -KPX Tcommaaccent amacron -40 -KPX Tcommaaccent aogonek -80 -KPX Tcommaaccent aring -80 -KPX Tcommaaccent atilde -40 -KPX Tcommaaccent colon -50 -KPX Tcommaaccent comma -74 -KPX Tcommaaccent e -70 -KPX Tcommaaccent eacute -70 -KPX Tcommaaccent ecaron -70 -KPX Tcommaaccent ecircumflex -30 -KPX Tcommaaccent edieresis -30 -KPX Tcommaaccent edotaccent -70 -KPX Tcommaaccent egrave -30 -KPX Tcommaaccent emacron -70 -KPX Tcommaaccent eogonek -70 -KPX Tcommaaccent hyphen -92 -KPX Tcommaaccent i -35 -KPX Tcommaaccent iacute -35 -KPX Tcommaaccent iogonek -35 -KPX Tcommaaccent o -80 -KPX Tcommaaccent oacute -80 -KPX Tcommaaccent ocircumflex -80 -KPX Tcommaaccent odieresis -80 -KPX Tcommaaccent ograve -80 -KPX Tcommaaccent ohungarumlaut -80 -KPX Tcommaaccent omacron -80 -KPX Tcommaaccent oslash -80 -KPX Tcommaaccent otilde -80 -KPX Tcommaaccent period -74 -KPX Tcommaaccent r -35 -KPX Tcommaaccent racute -35 -KPX Tcommaaccent rcaron -35 -KPX Tcommaaccent rcommaaccent -35 -KPX Tcommaaccent semicolon -55 -KPX Tcommaaccent u -45 -KPX Tcommaaccent uacute -45 -KPX Tcommaaccent ucircumflex -45 -KPX Tcommaaccent udieresis -45 -KPX Tcommaaccent ugrave -45 -KPX Tcommaaccent uhungarumlaut -45 -KPX Tcommaaccent umacron -45 -KPX Tcommaaccent uogonek -45 -KPX Tcommaaccent uring -45 -KPX Tcommaaccent w -80 -KPX Tcommaaccent y -80 -KPX Tcommaaccent yacute -80 -KPX Tcommaaccent ydieresis -80 -KPX U A -40 -KPX U Aacute -40 -KPX U Abreve -40 -KPX U Acircumflex -40 -KPX U Adieresis -40 -KPX U Agrave -40 -KPX U Amacron -40 -KPX U Aogonek -40 -KPX U Aring -40 -KPX U Atilde -40 -KPX Uacute A -40 -KPX Uacute Aacute -40 -KPX Uacute Abreve -40 -KPX Uacute Acircumflex -40 -KPX Uacute Adieresis -40 -KPX Uacute Agrave -40 -KPX Uacute Amacron -40 -KPX Uacute Aogonek -40 -KPX Uacute Aring -40 -KPX Uacute Atilde -40 -KPX Ucircumflex A -40 -KPX Ucircumflex Aacute -40 -KPX Ucircumflex Abreve -40 -KPX Ucircumflex Acircumflex -40 -KPX Ucircumflex Adieresis -40 -KPX Ucircumflex Agrave -40 -KPX Ucircumflex Amacron -40 -KPX Ucircumflex Aogonek -40 -KPX Ucircumflex Aring -40 -KPX Ucircumflex Atilde -40 -KPX Udieresis A -40 -KPX Udieresis Aacute -40 -KPX Udieresis Abreve -40 -KPX Udieresis Acircumflex -40 -KPX Udieresis Adieresis -40 -KPX Udieresis Agrave -40 -KPX Udieresis Amacron -40 -KPX Udieresis Aogonek -40 -KPX Udieresis Aring -40 -KPX Udieresis Atilde -40 -KPX Ugrave A -40 -KPX Ugrave Aacute -40 -KPX Ugrave Abreve -40 -KPX Ugrave Acircumflex -40 -KPX Ugrave Adieresis -40 -KPX Ugrave Agrave -40 -KPX Ugrave Amacron -40 -KPX Ugrave Aogonek -40 -KPX Ugrave Aring -40 -KPX Ugrave Atilde -40 -KPX Uhungarumlaut A -40 -KPX Uhungarumlaut Aacute -40 -KPX Uhungarumlaut Abreve -40 -KPX Uhungarumlaut Acircumflex -40 -KPX Uhungarumlaut Adieresis -40 -KPX Uhungarumlaut Agrave -40 -KPX Uhungarumlaut Amacron -40 -KPX Uhungarumlaut Aogonek -40 -KPX Uhungarumlaut Aring -40 -KPX Uhungarumlaut Atilde -40 -KPX Umacron A -40 -KPX Umacron Aacute -40 -KPX Umacron Abreve -40 -KPX Umacron Acircumflex -40 -KPX Umacron Adieresis -40 -KPX Umacron Agrave -40 -KPX Umacron Amacron -40 -KPX Umacron Aogonek -40 -KPX Umacron Aring -40 -KPX Umacron Atilde -40 -KPX Uogonek A -40 -KPX Uogonek Aacute -40 -KPX Uogonek Abreve -40 -KPX Uogonek Acircumflex -40 -KPX Uogonek Adieresis -40 -KPX Uogonek Agrave -40 -KPX Uogonek Amacron -40 -KPX Uogonek Aogonek -40 -KPX Uogonek Aring -40 -KPX Uogonek Atilde -40 -KPX Uring A -40 -KPX Uring Aacute -40 -KPX Uring Abreve -40 -KPX Uring Acircumflex -40 -KPX Uring Adieresis -40 -KPX Uring Agrave -40 -KPX Uring Amacron -40 -KPX Uring Aogonek -40 -KPX Uring Aring -40 -KPX Uring Atilde -40 -KPX V A -135 -KPX V Aacute -135 -KPX V Abreve -135 -KPX V Acircumflex -135 -KPX V Adieresis -135 -KPX V Agrave -135 -KPX V Amacron -135 -KPX V Aogonek -135 -KPX V Aring -135 -KPX V Atilde -135 -KPX V G -15 -KPX V Gbreve -15 -KPX V Gcommaaccent -15 -KPX V O -40 -KPX V Oacute -40 -KPX V Ocircumflex -40 -KPX V Odieresis -40 -KPX V Ograve -40 -KPX V Ohungarumlaut -40 -KPX V Omacron -40 -KPX V Oslash -40 -KPX V Otilde -40 -KPX V a -111 -KPX V aacute -111 -KPX V abreve -111 -KPX V acircumflex -71 -KPX V adieresis -71 -KPX V agrave -71 -KPX V amacron -71 -KPX V aogonek -111 -KPX V aring -111 -KPX V atilde -71 -KPX V colon -74 -KPX V comma -129 -KPX V e -111 -KPX V eacute -111 -KPX V ecaron -71 -KPX V ecircumflex -71 -KPX V edieresis -71 -KPX V edotaccent -111 -KPX V egrave -71 -KPX V emacron -71 -KPX V eogonek -111 -KPX V hyphen -100 -KPX V i -60 -KPX V iacute -60 -KPX V icircumflex -20 -KPX V idieresis -20 -KPX V igrave -20 -KPX V imacron -20 -KPX V iogonek -60 -KPX V o -129 -KPX V oacute -129 -KPX V ocircumflex -129 -KPX V odieresis -89 -KPX V ograve -89 -KPX V ohungarumlaut -129 -KPX V omacron -89 -KPX V oslash -129 -KPX V otilde -89 -KPX V period -129 -KPX V semicolon -74 -KPX V u -75 -KPX V uacute -75 -KPX V ucircumflex -75 -KPX V udieresis -75 -KPX V ugrave -75 -KPX V uhungarumlaut -75 -KPX V umacron -75 -KPX V uogonek -75 -KPX V uring -75 -KPX W A -120 -KPX W Aacute -120 -KPX W Abreve -120 -KPX W Acircumflex -120 -KPX W Adieresis -120 -KPX W Agrave -120 -KPX W Amacron -120 -KPX W Aogonek -120 -KPX W Aring -120 -KPX W Atilde -120 -KPX W O -10 -KPX W Oacute -10 -KPX W Ocircumflex -10 -KPX W Odieresis -10 -KPX W Ograve -10 -KPX W Ohungarumlaut -10 -KPX W Omacron -10 -KPX W Oslash -10 -KPX W Otilde -10 -KPX W a -80 -KPX W aacute -80 -KPX W abreve -80 -KPX W acircumflex -80 -KPX W adieresis -80 -KPX W agrave -80 -KPX W amacron -80 -KPX W aogonek -80 -KPX W aring -80 -KPX W atilde -80 -KPX W colon -37 -KPX W comma -92 -KPX W e -80 -KPX W eacute -80 -KPX W ecaron -80 -KPX W ecircumflex -80 -KPX W edieresis -40 -KPX W edotaccent -80 -KPX W egrave -40 -KPX W emacron -40 -KPX W eogonek -80 -KPX W hyphen -65 -KPX W i -40 -KPX W iacute -40 -KPX W iogonek -40 -KPX W o -80 -KPX W oacute -80 -KPX W ocircumflex -80 -KPX W odieresis -80 -KPX W ograve -80 -KPX W ohungarumlaut -80 -KPX W omacron -80 -KPX W oslash -80 -KPX W otilde -80 -KPX W period -92 -KPX W semicolon -37 -KPX W u -50 -KPX W uacute -50 -KPX W ucircumflex -50 -KPX W udieresis -50 -KPX W ugrave -50 -KPX W uhungarumlaut -50 -KPX W umacron -50 -KPX W uogonek -50 -KPX W uring -50 -KPX W y -73 -KPX W yacute -73 -KPX W ydieresis -73 -KPX Y A -120 -KPX Y Aacute -120 -KPX Y Abreve -120 -KPX Y Acircumflex -120 -KPX Y Adieresis -120 -KPX Y Agrave -120 -KPX Y Amacron -120 -KPX Y Aogonek -120 -KPX Y Aring -120 -KPX Y Atilde -120 -KPX Y O -30 -KPX Y Oacute -30 -KPX Y Ocircumflex -30 -KPX Y Odieresis -30 -KPX Y Ograve -30 -KPX Y Ohungarumlaut -30 -KPX Y Omacron -30 -KPX Y Oslash -30 -KPX Y Otilde -30 -KPX Y a -100 -KPX Y aacute -100 -KPX Y abreve -100 -KPX Y acircumflex -100 -KPX Y adieresis -60 -KPX Y agrave -60 -KPX Y amacron -60 -KPX Y aogonek -100 -KPX Y aring -100 -KPX Y atilde -60 -KPX Y colon -92 -KPX Y comma -129 -KPX Y e -100 -KPX Y eacute -100 -KPX Y ecaron -100 -KPX Y ecircumflex -100 -KPX Y edieresis -60 -KPX Y edotaccent -100 -KPX Y egrave -60 -KPX Y emacron -60 -KPX Y eogonek -100 -KPX Y hyphen -111 -KPX Y i -55 -KPX Y iacute -55 -KPX Y iogonek -55 -KPX Y o -110 -KPX Y oacute -110 -KPX Y ocircumflex -110 -KPX Y odieresis -70 -KPX Y ograve -70 -KPX Y ohungarumlaut -110 -KPX Y omacron -70 -KPX Y oslash -110 -KPX Y otilde -70 -KPX Y period -129 -KPX Y semicolon -92 -KPX Y u -111 -KPX Y uacute -111 -KPX Y ucircumflex -111 -KPX Y udieresis -71 -KPX Y ugrave -71 -KPX Y uhungarumlaut -111 -KPX Y umacron -71 -KPX Y uogonek -111 -KPX Y uring -111 -KPX Yacute A -120 -KPX Yacute Aacute -120 -KPX Yacute Abreve -120 -KPX Yacute Acircumflex -120 -KPX Yacute Adieresis -120 -KPX Yacute Agrave -120 -KPX Yacute Amacron -120 -KPX Yacute Aogonek -120 -KPX Yacute Aring -120 -KPX Yacute Atilde -120 -KPX Yacute O -30 -KPX Yacute Oacute -30 -KPX Yacute Ocircumflex -30 -KPX Yacute Odieresis -30 -KPX Yacute Ograve -30 -KPX Yacute Ohungarumlaut -30 -KPX Yacute Omacron -30 -KPX Yacute Oslash -30 -KPX Yacute Otilde -30 -KPX Yacute a -100 -KPX Yacute aacute -100 -KPX Yacute abreve -100 -KPX Yacute acircumflex -100 -KPX Yacute adieresis -60 -KPX Yacute agrave -60 -KPX Yacute amacron -60 -KPX Yacute aogonek -100 -KPX Yacute aring -100 -KPX Yacute atilde -60 -KPX Yacute colon -92 -KPX Yacute comma -129 -KPX Yacute e -100 -KPX Yacute eacute -100 -KPX Yacute ecaron -100 -KPX Yacute ecircumflex -100 -KPX Yacute edieresis -60 -KPX Yacute edotaccent -100 -KPX Yacute egrave -60 -KPX Yacute emacron -60 -KPX Yacute eogonek -100 -KPX Yacute hyphen -111 -KPX Yacute i -55 -KPX Yacute iacute -55 -KPX Yacute iogonek -55 -KPX Yacute o -110 -KPX Yacute oacute -110 -KPX Yacute ocircumflex -110 -KPX Yacute odieresis -70 -KPX Yacute ograve -70 -KPX Yacute ohungarumlaut -110 -KPX Yacute omacron -70 -KPX Yacute oslash -110 -KPX Yacute otilde -70 -KPX Yacute period -129 -KPX Yacute semicolon -92 -KPX Yacute u -111 -KPX Yacute uacute -111 -KPX Yacute ucircumflex -111 -KPX Yacute udieresis -71 -KPX Yacute ugrave -71 -KPX Yacute uhungarumlaut -111 -KPX Yacute umacron -71 -KPX Yacute uogonek -111 -KPX Yacute uring -111 -KPX Ydieresis A -120 -KPX Ydieresis Aacute -120 -KPX Ydieresis Abreve -120 -KPX Ydieresis Acircumflex -120 -KPX Ydieresis Adieresis -120 -KPX Ydieresis Agrave -120 -KPX Ydieresis Amacron -120 -KPX Ydieresis Aogonek -120 -KPX Ydieresis Aring -120 -KPX Ydieresis Atilde -120 -KPX Ydieresis O -30 -KPX Ydieresis Oacute -30 -KPX Ydieresis Ocircumflex -30 -KPX Ydieresis Odieresis -30 -KPX Ydieresis Ograve -30 -KPX Ydieresis Ohungarumlaut -30 -KPX Ydieresis Omacron -30 -KPX Ydieresis Oslash -30 -KPX Ydieresis Otilde -30 -KPX Ydieresis a -100 -KPX Ydieresis aacute -100 -KPX Ydieresis abreve -100 -KPX Ydieresis acircumflex -100 -KPX Ydieresis adieresis -60 -KPX Ydieresis agrave -60 -KPX Ydieresis amacron -60 -KPX Ydieresis aogonek -100 -KPX Ydieresis aring -100 -KPX Ydieresis atilde -100 -KPX Ydieresis colon -92 -KPX Ydieresis comma -129 -KPX Ydieresis e -100 -KPX Ydieresis eacute -100 -KPX Ydieresis ecaron -100 -KPX Ydieresis ecircumflex -100 -KPX Ydieresis edieresis -60 -KPX Ydieresis edotaccent -100 -KPX Ydieresis egrave -60 -KPX Ydieresis emacron -60 -KPX Ydieresis eogonek -100 -KPX Ydieresis hyphen -111 -KPX Ydieresis i -55 -KPX Ydieresis iacute -55 -KPX Ydieresis iogonek -55 -KPX Ydieresis o -110 -KPX Ydieresis oacute -110 -KPX Ydieresis ocircumflex -110 -KPX Ydieresis odieresis -70 -KPX Ydieresis ograve -70 -KPX Ydieresis ohungarumlaut -110 -KPX Ydieresis omacron -70 -KPX Ydieresis oslash -110 -KPX Ydieresis otilde -70 -KPX Ydieresis period -129 -KPX Ydieresis semicolon -92 -KPX Ydieresis u -111 -KPX Ydieresis uacute -111 -KPX Ydieresis ucircumflex -111 -KPX Ydieresis udieresis -71 -KPX Ydieresis ugrave -71 -KPX Ydieresis uhungarumlaut -111 -KPX Ydieresis umacron -71 -KPX Ydieresis uogonek -111 -KPX Ydieresis uring -111 -KPX a v -20 -KPX a w -15 -KPX aacute v -20 -KPX aacute w -15 -KPX abreve v -20 -KPX abreve w -15 -KPX acircumflex v -20 -KPX acircumflex w -15 -KPX adieresis v -20 -KPX adieresis w -15 -KPX agrave v -20 -KPX agrave w -15 -KPX amacron v -20 -KPX amacron w -15 -KPX aogonek v -20 -KPX aogonek w -15 -KPX aring v -20 -KPX aring w -15 -KPX atilde v -20 -KPX atilde w -15 -KPX b period -40 -KPX b u -20 -KPX b uacute -20 -KPX b ucircumflex -20 -KPX b udieresis -20 -KPX b ugrave -20 -KPX b uhungarumlaut -20 -KPX b umacron -20 -KPX b uogonek -20 -KPX b uring -20 -KPX b v -15 -KPX c y -15 -KPX c yacute -15 -KPX c ydieresis -15 -KPX cacute y -15 -KPX cacute yacute -15 -KPX cacute ydieresis -15 -KPX ccaron y -15 -KPX ccaron yacute -15 -KPX ccaron ydieresis -15 -KPX ccedilla y -15 -KPX ccedilla yacute -15 -KPX ccedilla ydieresis -15 -KPX comma quotedblright -70 -KPX comma quoteright -70 -KPX e g -15 -KPX e gbreve -15 -KPX e gcommaaccent -15 -KPX e v -25 -KPX e w -25 -KPX e x -15 -KPX e y -15 -KPX e yacute -15 -KPX e ydieresis -15 -KPX eacute g -15 -KPX eacute gbreve -15 -KPX eacute gcommaaccent -15 -KPX eacute v -25 -KPX eacute w -25 -KPX eacute x -15 -KPX eacute y -15 -KPX eacute yacute -15 -KPX eacute ydieresis -15 -KPX ecaron g -15 -KPX ecaron gbreve -15 -KPX ecaron gcommaaccent -15 -KPX ecaron v -25 -KPX ecaron w -25 -KPX ecaron x -15 -KPX ecaron y -15 -KPX ecaron yacute -15 -KPX ecaron ydieresis -15 -KPX ecircumflex g -15 -KPX ecircumflex gbreve -15 -KPX ecircumflex gcommaaccent -15 -KPX ecircumflex v -25 -KPX ecircumflex w -25 -KPX ecircumflex x -15 -KPX ecircumflex y -15 -KPX ecircumflex yacute -15 -KPX ecircumflex ydieresis -15 -KPX edieresis g -15 -KPX edieresis gbreve -15 -KPX edieresis gcommaaccent -15 -KPX edieresis v -25 -KPX edieresis w -25 -KPX edieresis x -15 -KPX edieresis y -15 -KPX edieresis yacute -15 -KPX edieresis ydieresis -15 -KPX edotaccent g -15 -KPX edotaccent gbreve -15 -KPX edotaccent gcommaaccent -15 -KPX edotaccent v -25 -KPX edotaccent w -25 -KPX edotaccent x -15 -KPX edotaccent y -15 -KPX edotaccent yacute -15 -KPX edotaccent ydieresis -15 -KPX egrave g -15 -KPX egrave gbreve -15 -KPX egrave gcommaaccent -15 -KPX egrave v -25 -KPX egrave w -25 -KPX egrave x -15 -KPX egrave y -15 -KPX egrave yacute -15 -KPX egrave ydieresis -15 -KPX emacron g -15 -KPX emacron gbreve -15 -KPX emacron gcommaaccent -15 -KPX emacron v -25 -KPX emacron w -25 -KPX emacron x -15 -KPX emacron y -15 -KPX emacron yacute -15 -KPX emacron ydieresis -15 -KPX eogonek g -15 -KPX eogonek gbreve -15 -KPX eogonek gcommaaccent -15 -KPX eogonek v -25 -KPX eogonek w -25 -KPX eogonek x -15 -KPX eogonek y -15 -KPX eogonek yacute -15 -KPX eogonek ydieresis -15 -KPX f a -10 -KPX f aacute -10 -KPX f abreve -10 -KPX f acircumflex -10 -KPX f adieresis -10 -KPX f agrave -10 -KPX f amacron -10 -KPX f aogonek -10 -KPX f aring -10 -KPX f atilde -10 -KPX f dotlessi -50 -KPX f f -25 -KPX f i -20 -KPX f iacute -20 -KPX f quoteright 55 -KPX g a -5 -KPX g aacute -5 -KPX g abreve -5 -KPX g acircumflex -5 -KPX g adieresis -5 -KPX g agrave -5 -KPX g amacron -5 -KPX g aogonek -5 -KPX g aring -5 -KPX g atilde -5 -KPX gbreve a -5 -KPX gbreve aacute -5 -KPX gbreve abreve -5 -KPX gbreve acircumflex -5 -KPX gbreve adieresis -5 -KPX gbreve agrave -5 -KPX gbreve amacron -5 -KPX gbreve aogonek -5 -KPX gbreve aring -5 -KPX gbreve atilde -5 -KPX gcommaaccent a -5 -KPX gcommaaccent aacute -5 -KPX gcommaaccent abreve -5 -KPX gcommaaccent acircumflex -5 -KPX gcommaaccent adieresis -5 -KPX gcommaaccent agrave -5 -KPX gcommaaccent amacron -5 -KPX gcommaaccent aogonek -5 -KPX gcommaaccent aring -5 -KPX gcommaaccent atilde -5 -KPX h y -5 -KPX h yacute -5 -KPX h ydieresis -5 -KPX i v -25 -KPX iacute v -25 -KPX icircumflex v -25 -KPX idieresis v -25 -KPX igrave v -25 -KPX imacron v -25 -KPX iogonek v -25 -KPX k e -10 -KPX k eacute -10 -KPX k ecaron -10 -KPX k ecircumflex -10 -KPX k edieresis -10 -KPX k edotaccent -10 -KPX k egrave -10 -KPX k emacron -10 -KPX k eogonek -10 -KPX k o -10 -KPX k oacute -10 -KPX k ocircumflex -10 -KPX k odieresis -10 -KPX k ograve -10 -KPX k ohungarumlaut -10 -KPX k omacron -10 -KPX k oslash -10 -KPX k otilde -10 -KPX k y -15 -KPX k yacute -15 -KPX k ydieresis -15 -KPX kcommaaccent e -10 -KPX kcommaaccent eacute -10 -KPX kcommaaccent ecaron -10 -KPX kcommaaccent ecircumflex -10 -KPX kcommaaccent edieresis -10 -KPX kcommaaccent edotaccent -10 -KPX kcommaaccent egrave -10 -KPX kcommaaccent emacron -10 -KPX kcommaaccent eogonek -10 -KPX kcommaaccent o -10 -KPX kcommaaccent oacute -10 -KPX kcommaaccent ocircumflex -10 -KPX kcommaaccent odieresis -10 -KPX kcommaaccent ograve -10 -KPX kcommaaccent ohungarumlaut -10 -KPX kcommaaccent omacron -10 -KPX kcommaaccent oslash -10 -KPX kcommaaccent otilde -10 -KPX kcommaaccent y -15 -KPX kcommaaccent yacute -15 -KPX kcommaaccent ydieresis -15 -KPX l w -10 -KPX lacute w -10 -KPX lcommaaccent w -10 -KPX lslash w -10 -KPX n v -40 -KPX n y -15 -KPX n yacute -15 -KPX n ydieresis -15 -KPX nacute v -40 -KPX nacute y -15 -KPX nacute yacute -15 -KPX nacute ydieresis -15 -KPX ncaron v -40 -KPX ncaron y -15 -KPX ncaron yacute -15 -KPX ncaron ydieresis -15 -KPX ncommaaccent v -40 -KPX ncommaaccent y -15 -KPX ncommaaccent yacute -15 -KPX ncommaaccent ydieresis -15 -KPX ntilde v -40 -KPX ntilde y -15 -KPX ntilde yacute -15 -KPX ntilde ydieresis -15 -KPX o v -15 -KPX o w -25 -KPX o y -10 -KPX o yacute -10 -KPX o ydieresis -10 -KPX oacute v -15 -KPX oacute w -25 -KPX oacute y -10 -KPX oacute yacute -10 -KPX oacute ydieresis -10 -KPX ocircumflex v -15 -KPX ocircumflex w -25 -KPX ocircumflex y -10 -KPX ocircumflex yacute -10 -KPX ocircumflex ydieresis -10 -KPX odieresis v -15 -KPX odieresis w -25 -KPX odieresis y -10 -KPX odieresis yacute -10 -KPX odieresis ydieresis -10 -KPX ograve v -15 -KPX ograve w -25 -KPX ograve y -10 -KPX ograve yacute -10 -KPX ograve ydieresis -10 -KPX ohungarumlaut v -15 -KPX ohungarumlaut w -25 -KPX ohungarumlaut y -10 -KPX ohungarumlaut yacute -10 -KPX ohungarumlaut ydieresis -10 -KPX omacron v -15 -KPX omacron w -25 -KPX omacron y -10 -KPX omacron yacute -10 -KPX omacron ydieresis -10 -KPX oslash v -15 -KPX oslash w -25 -KPX oslash y -10 -KPX oslash yacute -10 -KPX oslash ydieresis -10 -KPX otilde v -15 -KPX otilde w -25 -KPX otilde y -10 -KPX otilde yacute -10 -KPX otilde ydieresis -10 -KPX p y -10 -KPX p yacute -10 -KPX p ydieresis -10 -KPX period quotedblright -70 -KPX period quoteright -70 -KPX quotedblleft A -80 -KPX quotedblleft Aacute -80 -KPX quotedblleft Abreve -80 -KPX quotedblleft Acircumflex -80 -KPX quotedblleft Adieresis -80 -KPX quotedblleft Agrave -80 -KPX quotedblleft Amacron -80 -KPX quotedblleft Aogonek -80 -KPX quotedblleft Aring -80 -KPX quotedblleft Atilde -80 -KPX quoteleft A -80 -KPX quoteleft Aacute -80 -KPX quoteleft Abreve -80 -KPX quoteleft Acircumflex -80 -KPX quoteleft Adieresis -80 -KPX quoteleft Agrave -80 -KPX quoteleft Amacron -80 -KPX quoteleft Aogonek -80 -KPX quoteleft Aring -80 -KPX quoteleft Atilde -80 -KPX quoteleft quoteleft -74 -KPX quoteright d -50 -KPX quoteright dcroat -50 -KPX quoteright l -10 -KPX quoteright lacute -10 -KPX quoteright lcommaaccent -10 -KPX quoteright lslash -10 -KPX quoteright quoteright -74 -KPX quoteright r -50 -KPX quoteright racute -50 -KPX quoteright rcaron -50 -KPX quoteright rcommaaccent -50 -KPX quoteright s -55 -KPX quoteright sacute -55 -KPX quoteright scaron -55 -KPX quoteright scedilla -55 -KPX quoteright scommaaccent -55 -KPX quoteright space -74 -KPX quoteright t -18 -KPX quoteright tcommaaccent -18 -KPX quoteright v -50 -KPX r comma -40 -KPX r g -18 -KPX r gbreve -18 -KPX r gcommaaccent -18 -KPX r hyphen -20 -KPX r period -55 -KPX racute comma -40 -KPX racute g -18 -KPX racute gbreve -18 -KPX racute gcommaaccent -18 -KPX racute hyphen -20 -KPX racute period -55 -KPX rcaron comma -40 -KPX rcaron g -18 -KPX rcaron gbreve -18 -KPX rcaron gcommaaccent -18 -KPX rcaron hyphen -20 -KPX rcaron period -55 -KPX rcommaaccent comma -40 -KPX rcommaaccent g -18 -KPX rcommaaccent gbreve -18 -KPX rcommaaccent gcommaaccent -18 -KPX rcommaaccent hyphen -20 -KPX rcommaaccent period -55 -KPX space A -55 -KPX space Aacute -55 -KPX space Abreve -55 -KPX space Acircumflex -55 -KPX space Adieresis -55 -KPX space Agrave -55 -KPX space Amacron -55 -KPX space Aogonek -55 -KPX space Aring -55 -KPX space Atilde -55 -KPX space T -18 -KPX space Tcaron -18 -KPX space Tcommaaccent -18 -KPX space V -50 -KPX space W -30 -KPX space Y -90 -KPX space Yacute -90 -KPX space Ydieresis -90 -KPX v a -25 -KPX v aacute -25 -KPX v abreve -25 -KPX v acircumflex -25 -KPX v adieresis -25 -KPX v agrave -25 -KPX v amacron -25 -KPX v aogonek -25 -KPX v aring -25 -KPX v atilde -25 -KPX v comma -65 -KPX v e -15 -KPX v eacute -15 -KPX v ecaron -15 -KPX v ecircumflex -15 -KPX v edieresis -15 -KPX v edotaccent -15 -KPX v egrave -15 -KPX v emacron -15 -KPX v eogonek -15 -KPX v o -20 -KPX v oacute -20 -KPX v ocircumflex -20 -KPX v odieresis -20 -KPX v ograve -20 -KPX v ohungarumlaut -20 -KPX v omacron -20 -KPX v oslash -20 -KPX v otilde -20 -KPX v period -65 -KPX w a -10 -KPX w aacute -10 -KPX w abreve -10 -KPX w acircumflex -10 -KPX w adieresis -10 -KPX w agrave -10 -KPX w amacron -10 -KPX w aogonek -10 -KPX w aring -10 -KPX w atilde -10 -KPX w comma -65 -KPX w o -10 -KPX w oacute -10 -KPX w ocircumflex -10 -KPX w odieresis -10 -KPX w ograve -10 -KPX w ohungarumlaut -10 -KPX w omacron -10 -KPX w oslash -10 -KPX w otilde -10 -KPX w period -65 -KPX x e -15 -KPX x eacute -15 -KPX x ecaron -15 -KPX x ecircumflex -15 -KPX x edieresis -15 -KPX x edotaccent -15 -KPX x egrave -15 -KPX x emacron -15 -KPX x eogonek -15 -KPX y comma -65 -KPX y period -65 -KPX yacute comma -65 -KPX yacute period -65 -KPX ydieresis comma -65 -KPX ydieresis period -65 -EndKernPairs -EndKernData -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/ZapfDingbats.afm b/target/classes/com/itextpdf/text/pdf/fonts/ZapfDingbats.afm deleted file mode 100644 index b2745053..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/ZapfDingbats.afm +++ /dev/null @@ -1,225 +0,0 @@ -StartFontMetrics 4.1 -Comment Copyright (c) 1985, 1987, 1988, 1989, 1997 Adobe Systems Incorporated. All Rights Reserved. -Comment Creation Date: Thu May 1 15:14:13 1997 -Comment UniqueID 43082 -Comment VMusage 45775 55535 -FontName ZapfDingbats -FullName ITC Zapf Dingbats -FamilyName ZapfDingbats -Weight Medium -ItalicAngle 0 -IsFixedPitch false -CharacterSet Special -FontBBox -1 -143 981 820 -UnderlinePosition -100 -UnderlineThickness 50 -Version 002.000 -Notice Copyright (c) 1985, 1987, 1988, 1989, 1997 Adobe Systems Incorporated. All Rights Reserved.ITC Zapf Dingbats is a registered trademark of International Typeface Corporation. -EncodingScheme FontSpecific -StdHW 28 -StdVW 90 -StartCharMetrics 202 -C 32 ; WX 278 ; N space ; B 0 0 0 0 ; -C 33 ; WX 974 ; N a1 ; B 35 72 939 621 ; -C 34 ; WX 961 ; N a2 ; B 35 81 927 611 ; -C 35 ; WX 974 ; N a202 ; B 35 72 939 621 ; -C 36 ; WX 980 ; N a3 ; B 35 0 945 692 ; -C 37 ; WX 719 ; N a4 ; B 34 139 685 566 ; -C 38 ; WX 789 ; N a5 ; B 35 -14 755 705 ; -C 39 ; WX 790 ; N a119 ; B 35 -14 755 705 ; -C 40 ; WX 791 ; N a118 ; B 35 -13 761 705 ; -C 41 ; WX 690 ; N a117 ; B 34 138 655 553 ; -C 42 ; WX 960 ; N a11 ; B 35 123 925 568 ; -C 43 ; WX 939 ; N a12 ; B 35 134 904 559 ; -C 44 ; WX 549 ; N a13 ; B 29 -11 516 705 ; -C 45 ; WX 855 ; N a14 ; B 34 59 820 632 ; -C 46 ; WX 911 ; N a15 ; B 35 50 876 642 ; -C 47 ; WX 933 ; N a16 ; B 35 139 899 550 ; -C 48 ; WX 911 ; N a105 ; B 35 50 876 642 ; -C 49 ; WX 945 ; N a17 ; B 35 139 909 553 ; -C 50 ; WX 974 ; N a18 ; B 35 104 938 587 ; -C 51 ; WX 755 ; N a19 ; B 34 -13 721 705 ; -C 52 ; WX 846 ; N a20 ; B 36 -14 811 705 ; -C 53 ; WX 762 ; N a21 ; B 35 0 727 692 ; -C 54 ; WX 761 ; N a22 ; B 35 0 727 692 ; -C 55 ; WX 571 ; N a23 ; B -1 -68 571 661 ; -C 56 ; WX 677 ; N a24 ; B 36 -13 642 705 ; -C 57 ; WX 763 ; N a25 ; B 35 0 728 692 ; -C 58 ; WX 760 ; N a26 ; B 35 0 726 692 ; -C 59 ; WX 759 ; N a27 ; B 35 0 725 692 ; -C 60 ; WX 754 ; N a28 ; B 35 0 720 692 ; -C 61 ; WX 494 ; N a6 ; B 35 0 460 692 ; -C 62 ; WX 552 ; N a7 ; B 35 0 517 692 ; -C 63 ; WX 537 ; N a8 ; B 35 0 503 692 ; -C 64 ; WX 577 ; N a9 ; B 35 96 542 596 ; -C 65 ; WX 692 ; N a10 ; B 35 -14 657 705 ; -C 66 ; WX 786 ; N a29 ; B 35 -14 751 705 ; -C 67 ; WX 788 ; N a30 ; B 35 -14 752 705 ; -C 68 ; WX 788 ; N a31 ; B 35 -14 753 705 ; -C 69 ; WX 790 ; N a32 ; B 35 -14 756 705 ; -C 70 ; WX 793 ; N a33 ; B 35 -13 759 705 ; -C 71 ; WX 794 ; N a34 ; B 35 -13 759 705 ; -C 72 ; WX 816 ; N a35 ; B 35 -14 782 705 ; -C 73 ; WX 823 ; N a36 ; B 35 -14 787 705 ; -C 74 ; WX 789 ; N a37 ; B 35 -14 754 705 ; -C 75 ; WX 841 ; N a38 ; B 35 -14 807 705 ; -C 76 ; WX 823 ; N a39 ; B 35 -14 789 705 ; -C 77 ; WX 833 ; N a40 ; B 35 -14 798 705 ; -C 78 ; WX 816 ; N a41 ; B 35 -13 782 705 ; -C 79 ; WX 831 ; N a42 ; B 35 -14 796 705 ; -C 80 ; WX 923 ; N a43 ; B 35 -14 888 705 ; -C 81 ; WX 744 ; N a44 ; B 35 0 710 692 ; -C 82 ; WX 723 ; N a45 ; B 35 0 688 692 ; -C 83 ; WX 749 ; N a46 ; B 35 0 714 692 ; -C 84 ; WX 790 ; N a47 ; B 34 -14 756 705 ; -C 85 ; WX 792 ; N a48 ; B 35 -14 758 705 ; -C 86 ; WX 695 ; N a49 ; B 35 -14 661 706 ; -C 87 ; WX 776 ; N a50 ; B 35 -6 741 699 ; -C 88 ; WX 768 ; N a51 ; B 35 -7 734 699 ; -C 89 ; WX 792 ; N a52 ; B 35 -14 757 705 ; -C 90 ; WX 759 ; N a53 ; B 35 0 725 692 ; -C 91 ; WX 707 ; N a54 ; B 35 -13 672 704 ; -C 92 ; WX 708 ; N a55 ; B 35 -14 672 705 ; -C 93 ; WX 682 ; N a56 ; B 35 -14 647 705 ; -C 94 ; WX 701 ; N a57 ; B 35 -14 666 705 ; -C 95 ; WX 826 ; N a58 ; B 35 -14 791 705 ; -C 96 ; WX 815 ; N a59 ; B 35 -14 780 705 ; -C 97 ; WX 789 ; N a60 ; B 35 -14 754 705 ; -C 98 ; WX 789 ; N a61 ; B 35 -14 754 705 ; -C 99 ; WX 707 ; N a62 ; B 34 -14 673 705 ; -C 100 ; WX 687 ; N a63 ; B 36 0 651 692 ; -C 101 ; WX 696 ; N a64 ; B 35 0 661 691 ; -C 102 ; WX 689 ; N a65 ; B 35 0 655 692 ; -C 103 ; WX 786 ; N a66 ; B 34 -14 751 705 ; -C 104 ; WX 787 ; N a67 ; B 35 -14 752 705 ; -C 105 ; WX 713 ; N a68 ; B 35 -14 678 705 ; -C 106 ; WX 791 ; N a69 ; B 35 -14 756 705 ; -C 107 ; WX 785 ; N a70 ; B 36 -14 751 705 ; -C 108 ; WX 791 ; N a71 ; B 35 -14 757 705 ; -C 109 ; WX 873 ; N a72 ; B 35 -14 838 705 ; -C 110 ; WX 761 ; N a73 ; B 35 0 726 692 ; -C 111 ; WX 762 ; N a74 ; B 35 0 727 692 ; -C 112 ; WX 762 ; N a203 ; B 35 0 727 692 ; -C 113 ; WX 759 ; N a75 ; B 35 0 725 692 ; -C 114 ; WX 759 ; N a204 ; B 35 0 725 692 ; -C 115 ; WX 892 ; N a76 ; B 35 0 858 705 ; -C 116 ; WX 892 ; N a77 ; B 35 -14 858 692 ; -C 117 ; WX 788 ; N a78 ; B 35 -14 754 705 ; -C 118 ; WX 784 ; N a79 ; B 35 -14 749 705 ; -C 119 ; WX 438 ; N a81 ; B 35 -14 403 705 ; -C 120 ; WX 138 ; N a82 ; B 35 0 104 692 ; -C 121 ; WX 277 ; N a83 ; B 35 0 242 692 ; -C 122 ; WX 415 ; N a84 ; B 35 0 380 692 ; -C 123 ; WX 392 ; N a97 ; B 35 263 357 705 ; -C 124 ; WX 392 ; N a98 ; B 34 263 357 705 ; -C 125 ; WX 668 ; N a99 ; B 35 263 633 705 ; -C 126 ; WX 668 ; N a100 ; B 36 263 634 705 ; -C 128 ; WX 390 ; N a89 ; B 35 -14 356 705 ; -C 129 ; WX 390 ; N a90 ; B 35 -14 355 705 ; -C 130 ; WX 317 ; N a93 ; B 35 0 283 692 ; -C 131 ; WX 317 ; N a94 ; B 35 0 283 692 ; -C 132 ; WX 276 ; N a91 ; B 35 0 242 692 ; -C 133 ; WX 276 ; N a92 ; B 35 0 242 692 ; -C 134 ; WX 509 ; N a205 ; B 35 0 475 692 ; -C 135 ; WX 509 ; N a85 ; B 35 0 475 692 ; -C 136 ; WX 410 ; N a206 ; B 35 0 375 692 ; -C 137 ; WX 410 ; N a86 ; B 35 0 375 692 ; -C 138 ; WX 234 ; N a87 ; B 35 -14 199 705 ; -C 139 ; WX 234 ; N a88 ; B 35 -14 199 705 ; -C 140 ; WX 334 ; N a95 ; B 35 0 299 692 ; -C 141 ; WX 334 ; N a96 ; B 35 0 299 692 ; -C 161 ; WX 732 ; N a101 ; B 35 -143 697 806 ; -C 162 ; WX 544 ; N a102 ; B 56 -14 488 706 ; -C 163 ; WX 544 ; N a103 ; B 34 -14 508 705 ; -C 164 ; WX 910 ; N a104 ; B 35 40 875 651 ; -C 165 ; WX 667 ; N a106 ; B 35 -14 633 705 ; -C 166 ; WX 760 ; N a107 ; B 35 -14 726 705 ; -C 167 ; WX 760 ; N a108 ; B 0 121 758 569 ; -C 168 ; WX 776 ; N a112 ; B 35 0 741 705 ; -C 169 ; WX 595 ; N a111 ; B 34 -14 560 705 ; -C 170 ; WX 694 ; N a110 ; B 35 -14 659 705 ; -C 171 ; WX 626 ; N a109 ; B 34 0 591 705 ; -C 172 ; WX 788 ; N a120 ; B 35 -14 754 705 ; -C 173 ; WX 788 ; N a121 ; B 35 -14 754 705 ; -C 174 ; WX 788 ; N a122 ; B 35 -14 754 705 ; -C 175 ; WX 788 ; N a123 ; B 35 -14 754 705 ; -C 176 ; WX 788 ; N a124 ; B 35 -14 754 705 ; -C 177 ; WX 788 ; N a125 ; B 35 -14 754 705 ; -C 178 ; WX 788 ; N a126 ; B 35 -14 754 705 ; -C 179 ; WX 788 ; N a127 ; B 35 -14 754 705 ; -C 180 ; WX 788 ; N a128 ; B 35 -14 754 705 ; -C 181 ; WX 788 ; N a129 ; B 35 -14 754 705 ; -C 182 ; WX 788 ; N a130 ; B 35 -14 754 705 ; -C 183 ; WX 788 ; N a131 ; B 35 -14 754 705 ; -C 184 ; WX 788 ; N a132 ; B 35 -14 754 705 ; -C 185 ; WX 788 ; N a133 ; B 35 -14 754 705 ; -C 186 ; WX 788 ; N a134 ; B 35 -14 754 705 ; -C 187 ; WX 788 ; N a135 ; B 35 -14 754 705 ; -C 188 ; WX 788 ; N a136 ; B 35 -14 754 705 ; -C 189 ; WX 788 ; N a137 ; B 35 -14 754 705 ; -C 190 ; WX 788 ; N a138 ; B 35 -14 754 705 ; -C 191 ; WX 788 ; N a139 ; B 35 -14 754 705 ; -C 192 ; WX 788 ; N a140 ; B 35 -14 754 705 ; -C 193 ; WX 788 ; N a141 ; B 35 -14 754 705 ; -C 194 ; WX 788 ; N a142 ; B 35 -14 754 705 ; -C 195 ; WX 788 ; N a143 ; B 35 -14 754 705 ; -C 196 ; WX 788 ; N a144 ; B 35 -14 754 705 ; -C 197 ; WX 788 ; N a145 ; B 35 -14 754 705 ; -C 198 ; WX 788 ; N a146 ; B 35 -14 754 705 ; -C 199 ; WX 788 ; N a147 ; B 35 -14 754 705 ; -C 200 ; WX 788 ; N a148 ; B 35 -14 754 705 ; -C 201 ; WX 788 ; N a149 ; B 35 -14 754 705 ; -C 202 ; WX 788 ; N a150 ; B 35 -14 754 705 ; -C 203 ; WX 788 ; N a151 ; B 35 -14 754 705 ; -C 204 ; WX 788 ; N a152 ; B 35 -14 754 705 ; -C 205 ; WX 788 ; N a153 ; B 35 -14 754 705 ; -C 206 ; WX 788 ; N a154 ; B 35 -14 754 705 ; -C 207 ; WX 788 ; N a155 ; B 35 -14 754 705 ; -C 208 ; WX 788 ; N a156 ; B 35 -14 754 705 ; -C 209 ; WX 788 ; N a157 ; B 35 -14 754 705 ; -C 210 ; WX 788 ; N a158 ; B 35 -14 754 705 ; -C 211 ; WX 788 ; N a159 ; B 35 -14 754 705 ; -C 212 ; WX 894 ; N a160 ; B 35 58 860 634 ; -C 213 ; WX 838 ; N a161 ; B 35 152 803 540 ; -C 214 ; WX 1016 ; N a163 ; B 34 152 981 540 ; -C 215 ; WX 458 ; N a164 ; B 35 -127 422 820 ; -C 216 ; WX 748 ; N a196 ; B 35 94 698 597 ; -C 217 ; WX 924 ; N a165 ; B 35 140 890 552 ; -C 218 ; WX 748 ; N a192 ; B 35 94 698 597 ; -C 219 ; WX 918 ; N a166 ; B 35 166 884 526 ; -C 220 ; WX 927 ; N a167 ; B 35 32 892 660 ; -C 221 ; WX 928 ; N a168 ; B 35 129 891 562 ; -C 222 ; WX 928 ; N a169 ; B 35 128 893 563 ; -C 223 ; WX 834 ; N a170 ; B 35 155 799 537 ; -C 224 ; WX 873 ; N a171 ; B 35 93 838 599 ; -C 225 ; WX 828 ; N a172 ; B 35 104 791 588 ; -C 226 ; WX 924 ; N a173 ; B 35 98 889 594 ; -C 227 ; WX 924 ; N a162 ; B 35 98 889 594 ; -C 228 ; WX 917 ; N a174 ; B 35 0 882 692 ; -C 229 ; WX 930 ; N a175 ; B 35 84 896 608 ; -C 230 ; WX 931 ; N a176 ; B 35 84 896 608 ; -C 231 ; WX 463 ; N a177 ; B 35 -99 429 791 ; -C 232 ; WX 883 ; N a178 ; B 35 71 848 623 ; -C 233 ; WX 836 ; N a179 ; B 35 44 802 648 ; -C 234 ; WX 836 ; N a193 ; B 35 44 802 648 ; -C 235 ; WX 867 ; N a180 ; B 35 101 832 591 ; -C 236 ; WX 867 ; N a199 ; B 35 101 832 591 ; -C 237 ; WX 696 ; N a181 ; B 35 44 661 648 ; -C 238 ; WX 696 ; N a200 ; B 35 44 661 648 ; -C 239 ; WX 874 ; N a182 ; B 35 77 840 619 ; -C 241 ; WX 874 ; N a201 ; B 35 73 840 615 ; -C 242 ; WX 760 ; N a183 ; B 35 0 725 692 ; -C 243 ; WX 946 ; N a184 ; B 35 160 911 533 ; -C 244 ; WX 771 ; N a197 ; B 34 37 736 655 ; -C 245 ; WX 865 ; N a185 ; B 35 207 830 481 ; -C 246 ; WX 771 ; N a194 ; B 34 37 736 655 ; -C 247 ; WX 888 ; N a198 ; B 34 -19 853 712 ; -C 248 ; WX 967 ; N a186 ; B 35 124 932 568 ; -C 249 ; WX 888 ; N a195 ; B 34 -19 853 712 ; -C 250 ; WX 831 ; N a187 ; B 35 113 796 579 ; -C 251 ; WX 873 ; N a188 ; B 36 118 838 578 ; -C 252 ; WX 927 ; N a189 ; B 35 150 891 542 ; -C 253 ; WX 970 ; N a190 ; B 35 76 931 616 ; -C 254 ; WX 918 ; N a191 ; B 34 99 884 593 ; -EndCharMetrics -EndFontMetrics diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmap_info.txt b/target/classes/com/itextpdf/text/pdf/fonts/cmap_info.txt deleted file mode 100644 index e0cf95c5..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/cmap_info.txt +++ /dev/null @@ -1,107 +0,0 @@ -The *.cmap and *.properties files in this jar are necessary -to produce PDF files with iText that use CJK fonts. - -Note that whatever value you pass for the 'embedded' parameter -with the method BaseFont.createFont, the font WILL NOT BE embedded. -To understand why, please read the following information. - -The fonts that are used in Acrobat Reader when viewing a PDF file -that uses CJK fonts will be downloaded in one or more font packs. -You can download these fontpacks yourself from this URL: -http://www.adobe.com/products/acrobat/acrrasianfontpack.html - -On this page, you can find the following information: -"If the author of an Adobe (R) Portable Document Format (PDF) file -embeds CJK and Central European (CE) fonts in a PDF document, then -any language version of Adobe Reader (R) software will be able to -display the CJK and CE text on any system without additional software. - -If the author of the PDF document uses CJK or CE fonts but does not -embed them in the document, then the correct fonts will need to be -installed in order to view the Adobe PDF file on non-native systems." - -When you download one of the font packs, for instance the font -pack for "Chinese Simplified", you will see that the fonts are -licensed for use in Adobe Reader only: - -"Note: The font software contained in this package is being licensed -to you solely for use with Adobe (R) Acrobat (R) Reader (R) software -("Acrobat Reader") and is subject to the terms and conditions of -the electronic End-User License Agreement accompanying Acrobat Reader." - -This explains why iText doesn't ever embed a CJK font in the PDF file. -These fonts have to be downloaded and used in the context of Adobe -Reader; you can not use them with iText to produce a PDF document -that has these fonts embedded (as you would do with other fonts) so -that they can be viewed in other readers; unless you have a license -from Adobe to use these fonts. - -The *.cmap and *.properties files in this jar, do not contain -any font program. They contain information (mappings, metrics,...) -that is based on font information distributed on Adobe's site: -http://partners.adobe.com/public/developer/acrobat/index_advanced.html#pci - -The original copyright notice of the mappings is as follows: -"Copyright 1990-2000 Adobe Systems Incorporated. - All Rights Reserved. - - Patents Pending - - NOTICE: All information contained herein is the property - of Adobe Systems Incorporated. - - Permission is granted for redistribution of this file - provided this copyright notice is maintained intact and - that the contents of this file are not altered in any - way from its original form. - - PostScript and Display PostScript are trademarks of - Adobe Systems Incorporated which may be registered in - certain jurisdictions." - -The original files with the mappings are plain text files, -and therefore not optimized for being read by a computer -software program. That's why they were pre-processed to map -directly the Unicode value with the CID value using a 64k -char array. No data was changed in this process. - -Additionally, the iTextAsian.jar contains some properties files -with font metrics. These are included for the same reason AFM -files are needed (see also the file mustRead.html shipped with -the iText.jar). As defined in the PDF reference: "The width -information for each glyph is stored both in the font dictionary -and in the font program itself. (The two sets of widths must be -identical; storing this information in the font dictionary, although -redundant, enables a consumer application to determine glyph -positioning without having to look inside the font program.)" -See PDF Reference sixth edition section 5.1.3 (p393-394). - -Whereas in the case of CJK fonts, the font program is subject -to the Adobe Reader EULA, the font metrics aren't. Page 396: -"Glyph metric information is also available separately in the -form of Adobe font metrics (AFM) and Adobe composite font metrics -(ACFM) files. These files are for use by application programs -that generate PDF page descriptions and must make formatting -decisions based on the widths and other metrics of glyphs. (...) -Specifications for the AFM and ACFM file formats are available -in Adobe Technical Note #5004, Adobe Font Metrics File Format -Specification; the files can be obtained from the Adobe Solutions -Network Web site." - -Unfortuntately the URL of these files has changed over time, and -some metrics files seem to have been removed. However, you'll -find sufficient information in the Technical Notes to build your -own AFM and/or ACFM files if you ever need font metrics in the -Adobe Font Metrics format. - -Note that the properties files in the iTextAsian.jar contain -font metrics, but they are not stored in the AFM or ACFM format. -For reasons of performance, the font metrics were stored as -key-value pairs. Compare the keys in the properties files with -the keys mentioned in Table 5.19 on p456 of the PDF Reference. -This way, the necessary key-value pairs can be imported directly -into a Font Dictionary that is part of a PDF file created by iText. - -These specific metrics files were created by Paulo Soares and -may be used, copied, and distributed for any purpose and without -charge, with or without modification. \ No newline at end of file diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/AbstractCMap.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/AbstractCMap.class deleted file mode 100644 index 67b3468b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/AbstractCMap.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapByteCid.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapByteCid.class deleted file mode 100644 index 46a5868d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapByteCid.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCache.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCache.class deleted file mode 100644 index 3cde179e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCache.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCidByte.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCidByte.class deleted file mode 100644 index 4d810d9b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCidByte.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCidUni.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCidUni.class deleted file mode 100644 index c7a28c6c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapCidUni.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapParserEx.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapParserEx.class deleted file mode 100644 index 16ee690a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapParserEx.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapSequence.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapSequence.class deleted file mode 100644 index c0b0c79b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapSequence.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapToUnicode.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapToUnicode.class deleted file mode 100644 index 7ca467df..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapToUnicode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapUniCid.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapUniCid.class deleted file mode 100644 index 4de7ba1c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CMapUniCid.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidLocation.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidLocation.class deleted file mode 100644 index 9f82e78f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidLocation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidLocationFromByte.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidLocationFromByte.class deleted file mode 100644 index b2aacc1f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidLocationFromByte.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidResource.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidResource.class deleted file mode 100644 index bab27b8d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/CidResource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/IdentityToUnicode.class b/target/classes/com/itextpdf/text/pdf/fonts/cmaps/IdentityToUnicode.class deleted file mode 100644 index bb306b50..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/cmaps/IdentityToUnicode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/glyphlist.txt b/target/classes/com/itextpdf/text/pdf/fonts/glyphlist.txt deleted file mode 100644 index 6a270e9d..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/glyphlist.txt +++ /dev/null @@ -1,5430 +0,0 @@ -# Name: Adobe Glyph List -# Table version: 2.0 -# Date: September 20, 2002 -# -# See http://partners.adobe.com/asn/developer/typeforum/unicodegn.html -# -# Format: Semicolon-delimited fields: -# (1) glyph name -# (2) Unicode scalar value -A;0041 -AE;00C6 -AEacute;01FC -AEmacron;01E2 -AEsmall;F7E6 -Aacute;00C1 -Aacutesmall;F7E1 -Abreve;0102 -Abreveacute;1EAE -Abrevecyrillic;04D0 -Abrevedotbelow;1EB6 -Abrevegrave;1EB0 -Abrevehookabove;1EB2 -Abrevetilde;1EB4 -Acaron;01CD -Acircle;24B6 -Acircumflex;00C2 -Acircumflexacute;1EA4 -Acircumflexdotbelow;1EAC -Acircumflexgrave;1EA6 -Acircumflexhookabove;1EA8 -Acircumflexsmall;F7E2 -Acircumflextilde;1EAA -Acute;F6C9 -Acutesmall;F7B4 -Acyrillic;0410 -Adblgrave;0200 -Adieresis;00C4 -Adieresiscyrillic;04D2 -Adieresismacron;01DE -Adieresissmall;F7E4 -Adotbelow;1EA0 -Adotmacron;01E0 -Agrave;00C0 -Agravesmall;F7E0 -Ahookabove;1EA2 -Aiecyrillic;04D4 -Ainvertedbreve;0202 -Alpha;0391 -Alphatonos;0386 -Amacron;0100 -Amonospace;FF21 -Aogonek;0104 -Aring;00C5 -Aringacute;01FA -Aringbelow;1E00 -Aringsmall;F7E5 -Asmall;F761 -Atilde;00C3 -Atildesmall;F7E3 -Aybarmenian;0531 -B;0042 -Bcircle;24B7 -Bdotaccent;1E02 -Bdotbelow;1E04 -Becyrillic;0411 -Benarmenian;0532 -Beta;0392 -Bhook;0181 -Blinebelow;1E06 -Bmonospace;FF22 -Brevesmall;F6F4 -Bsmall;F762 -Btopbar;0182 -C;0043 -Caarmenian;053E -Cacute;0106 -Caron;F6CA -Caronsmall;F6F5 -Ccaron;010C -Ccedilla;00C7 -Ccedillaacute;1E08 -Ccedillasmall;F7E7 -Ccircle;24B8 -Ccircumflex;0108 -Cdot;010A -Cdotaccent;010A -Cedillasmall;F7B8 -Chaarmenian;0549 -Cheabkhasiancyrillic;04BC -Checyrillic;0427 -Chedescenderabkhasiancyrillic;04BE -Chedescendercyrillic;04B6 -Chedieresiscyrillic;04F4 -Cheharmenian;0543 -Chekhakassiancyrillic;04CB -Cheverticalstrokecyrillic;04B8 -Chi;03A7 -Chook;0187 -Circumflexsmall;F6F6 -Cmonospace;FF23 -Coarmenian;0551 -Csmall;F763 -D;0044 -DZ;01F1 -DZcaron;01C4 -Daarmenian;0534 -Dafrican;0189 -Dcaron;010E -Dcedilla;1E10 -Dcircle;24B9 -Dcircumflexbelow;1E12 -Dcroat;0110 -Ddotaccent;1E0A -Ddotbelow;1E0C -Decyrillic;0414 -Deicoptic;03EE -Delta;2206 -Deltagreek;0394 -Dhook;018A -Dieresis;F6CB -DieresisAcute;F6CC -DieresisGrave;F6CD -Dieresissmall;F7A8 -Digammagreek;03DC -Djecyrillic;0402 -Dlinebelow;1E0E -Dmonospace;FF24 -Dotaccentsmall;F6F7 -Dslash;0110 -Dsmall;F764 -Dtopbar;018B -Dz;01F2 -Dzcaron;01C5 -Dzeabkhasiancyrillic;04E0 -Dzecyrillic;0405 -Dzhecyrillic;040F -E;0045 -Eacute;00C9 -Eacutesmall;F7E9 -Ebreve;0114 -Ecaron;011A -Ecedillabreve;1E1C -Echarmenian;0535 -Ecircle;24BA -Ecircumflex;00CA -Ecircumflexacute;1EBE -Ecircumflexbelow;1E18 -Ecircumflexdotbelow;1EC6 -Ecircumflexgrave;1EC0 -Ecircumflexhookabove;1EC2 -Ecircumflexsmall;F7EA -Ecircumflextilde;1EC4 -Ecyrillic;0404 -Edblgrave;0204 -Edieresis;00CB -Edieresissmall;F7EB -Edot;0116 -Edotaccent;0116 -Edotbelow;1EB8 -Efcyrillic;0424 -Egrave;00C8 -Egravesmall;F7E8 -Eharmenian;0537 -Ehookabove;1EBA -Eightroman;2167 -Einvertedbreve;0206 -Eiotifiedcyrillic;0464 -Elcyrillic;041B -Elevenroman;216A -Emacron;0112 -Emacronacute;1E16 -Emacrongrave;1E14 -Emcyrillic;041C -Emonospace;FF25 -Encyrillic;041D -Endescendercyrillic;04A2 -Eng;014A -Enghecyrillic;04A4 -Enhookcyrillic;04C7 -Eogonek;0118 -Eopen;0190 -Epsilon;0395 -Epsilontonos;0388 -Ercyrillic;0420 -Ereversed;018E -Ereversedcyrillic;042D -Escyrillic;0421 -Esdescendercyrillic;04AA -Esh;01A9 -Esmall;F765 -Eta;0397 -Etarmenian;0538 -Etatonos;0389 -Eth;00D0 -Ethsmall;F7F0 -Etilde;1EBC -Etildebelow;1E1A -Euro;20AC -Ezh;01B7 -Ezhcaron;01EE -Ezhreversed;01B8 -F;0046 -Fcircle;24BB -Fdotaccent;1E1E -Feharmenian;0556 -Feicoptic;03E4 -Fhook;0191 -Fitacyrillic;0472 -Fiveroman;2164 -Fmonospace;FF26 -Fourroman;2163 -Fsmall;F766 -G;0047 -GBsquare;3387 -Gacute;01F4 -Gamma;0393 -Gammaafrican;0194 -Gangiacoptic;03EA -Gbreve;011E -Gcaron;01E6 -Gcedilla;0122 -Gcircle;24BC -Gcircumflex;011C -Gcommaaccent;0122 -Gdot;0120 -Gdotaccent;0120 -Gecyrillic;0413 -Ghadarmenian;0542 -Ghemiddlehookcyrillic;0494 -Ghestrokecyrillic;0492 -Gheupturncyrillic;0490 -Ghook;0193 -Gimarmenian;0533 -Gjecyrillic;0403 -Gmacron;1E20 -Gmonospace;FF27 -Grave;F6CE -Gravesmall;F760 -Gsmall;F767 -Gsmallhook;029B -Gstroke;01E4 -H;0048 -H18533;25CF -H18543;25AA -H18551;25AB -H22073;25A1 -HPsquare;33CB -Haabkhasiancyrillic;04A8 -Hadescendercyrillic;04B2 -Hardsigncyrillic;042A -Hbar;0126 -Hbrevebelow;1E2A -Hcedilla;1E28 -Hcircle;24BD -Hcircumflex;0124 -Hdieresis;1E26 -Hdotaccent;1E22 -Hdotbelow;1E24 -Hmonospace;FF28 -Hoarmenian;0540 -Horicoptic;03E8 -Hsmall;F768 -Hungarumlaut;F6CF -Hungarumlautsmall;F6F8 -Hzsquare;3390 -I;0049 -IAcyrillic;042F -IJ;0132 -IUcyrillic;042E -Iacute;00CD -Iacutesmall;F7ED -Ibreve;012C -Icaron;01CF -Icircle;24BE -Icircumflex;00CE -Icircumflexsmall;F7EE -Icyrillic;0406 -Idblgrave;0208 -Idieresis;00CF -Idieresisacute;1E2E -Idieresiscyrillic;04E4 -Idieresissmall;F7EF -Idot;0130 -Idotaccent;0130 -Idotbelow;1ECA -Iebrevecyrillic;04D6 -Iecyrillic;0415 -Ifraktur;2111 -Igrave;00CC -Igravesmall;F7EC -Ihookabove;1EC8 -Iicyrillic;0418 -Iinvertedbreve;020A -Iishortcyrillic;0419 -Imacron;012A -Imacroncyrillic;04E2 -Imonospace;FF29 -Iniarmenian;053B -Iocyrillic;0401 -Iogonek;012E -Iota;0399 -Iotaafrican;0196 -Iotadieresis;03AA -Iotatonos;038A -Ismall;F769 -Istroke;0197 -Itilde;0128 -Itildebelow;1E2C -Izhitsacyrillic;0474 -Izhitsadblgravecyrillic;0476 -J;004A -Jaarmenian;0541 -Jcircle;24BF -Jcircumflex;0134 -Jecyrillic;0408 -Jheharmenian;054B -Jmonospace;FF2A -Jsmall;F76A -K;004B -KBsquare;3385 -KKsquare;33CD -Kabashkircyrillic;04A0 -Kacute;1E30 -Kacyrillic;041A -Kadescendercyrillic;049A -Kahookcyrillic;04C3 -Kappa;039A -Kastrokecyrillic;049E -Kaverticalstrokecyrillic;049C -Kcaron;01E8 -Kcedilla;0136 -Kcircle;24C0 -Kcommaaccent;0136 -Kdotbelow;1E32 -Keharmenian;0554 -Kenarmenian;053F -Khacyrillic;0425 -Kheicoptic;03E6 -Khook;0198 -Kjecyrillic;040C -Klinebelow;1E34 -Kmonospace;FF2B -Koppacyrillic;0480 -Koppagreek;03DE -Ksicyrillic;046E -Ksmall;F76B -L;004C -LJ;01C7 -LL;F6BF -Lacute;0139 -Lambda;039B -Lcaron;013D -Lcedilla;013B -Lcircle;24C1 -Lcircumflexbelow;1E3C -Lcommaaccent;013B -Ldot;013F -Ldotaccent;013F -Ldotbelow;1E36 -Ldotbelowmacron;1E38 -Liwnarmenian;053C -Lj;01C8 -Ljecyrillic;0409 -Llinebelow;1E3A -Lmonospace;FF2C -Lslash;0141 -Lslashsmall;F6F9 -Lsmall;F76C -M;004D -MBsquare;3386 -Macron;F6D0 -Macronsmall;F7AF -Macute;1E3E -Mcircle;24C2 -Mdotaccent;1E40 -Mdotbelow;1E42 -Menarmenian;0544 -Mmonospace;FF2D -Msmall;F76D -Mturned;019C -Mu;039C -N;004E -NJ;01CA -Nacute;0143 -Ncaron;0147 -Ncedilla;0145 -Ncircle;24C3 -Ncircumflexbelow;1E4A -Ncommaaccent;0145 -Ndotaccent;1E44 -Ndotbelow;1E46 -Nhookleft;019D -Nineroman;2168 -Nj;01CB -Njecyrillic;040A -Nlinebelow;1E48 -Nmonospace;FF2E -Nowarmenian;0546 -Nsmall;F76E -Ntilde;00D1 -Ntildesmall;F7F1 -Nu;039D -O;004F -OE;0152 -OEsmall;F6FA -Oacute;00D3 -Oacutesmall;F7F3 -Obarredcyrillic;04E8 -Obarreddieresiscyrillic;04EA -Obreve;014E -Ocaron;01D1 -Ocenteredtilde;019F -Ocircle;24C4 -Ocircumflex;00D4 -Ocircumflexacute;1ED0 -Ocircumflexdotbelow;1ED8 -Ocircumflexgrave;1ED2 -Ocircumflexhookabove;1ED4 -Ocircumflexsmall;F7F4 -Ocircumflextilde;1ED6 -Ocyrillic;041E -Odblacute;0150 -Odblgrave;020C -Odieresis;00D6 -Odieresiscyrillic;04E6 -Odieresissmall;F7F6 -Odotbelow;1ECC -Ogoneksmall;F6FB -Ograve;00D2 -Ogravesmall;F7F2 -Oharmenian;0555 -Ohm;2126 -Ohookabove;1ECE -Ohorn;01A0 -Ohornacute;1EDA -Ohorndotbelow;1EE2 -Ohorngrave;1EDC -Ohornhookabove;1EDE -Ohorntilde;1EE0 -Ohungarumlaut;0150 -Oi;01A2 -Oinvertedbreve;020E -Omacron;014C -Omacronacute;1E52 -Omacrongrave;1E50 -Omega;2126 -Omegacyrillic;0460 -Omegagreek;03A9 -Omegaroundcyrillic;047A -Omegatitlocyrillic;047C -Omegatonos;038F -Omicron;039F -Omicrontonos;038C -Omonospace;FF2F -Oneroman;2160 -Oogonek;01EA -Oogonekmacron;01EC -Oopen;0186 -Oslash;00D8 -Oslashacute;01FE -Oslashsmall;F7F8 -Osmall;F76F -Ostrokeacute;01FE -Otcyrillic;047E -Otilde;00D5 -Otildeacute;1E4C -Otildedieresis;1E4E -Otildesmall;F7F5 -P;0050 -Pacute;1E54 -Pcircle;24C5 -Pdotaccent;1E56 -Pecyrillic;041F -Peharmenian;054A -Pemiddlehookcyrillic;04A6 -Phi;03A6 -Phook;01A4 -Pi;03A0 -Piwrarmenian;0553 -Pmonospace;FF30 -Psi;03A8 -Psicyrillic;0470 -Psmall;F770 -Q;0051 -Qcircle;24C6 -Qmonospace;FF31 -Qsmall;F771 -R;0052 -Raarmenian;054C -Racute;0154 -Rcaron;0158 -Rcedilla;0156 -Rcircle;24C7 -Rcommaaccent;0156 -Rdblgrave;0210 -Rdotaccent;1E58 -Rdotbelow;1E5A -Rdotbelowmacron;1E5C -Reharmenian;0550 -Rfraktur;211C -Rho;03A1 -Ringsmall;F6FC -Rinvertedbreve;0212 -Rlinebelow;1E5E -Rmonospace;FF32 -Rsmall;F772 -Rsmallinverted;0281 -Rsmallinvertedsuperior;02B6 -S;0053 -SF010000;250C -SF020000;2514 -SF030000;2510 -SF040000;2518 -SF050000;253C -SF060000;252C -SF070000;2534 -SF080000;251C -SF090000;2524 -SF100000;2500 -SF110000;2502 -SF190000;2561 -SF200000;2562 -SF210000;2556 -SF220000;2555 -SF230000;2563 -SF240000;2551 -SF250000;2557 -SF260000;255D -SF270000;255C -SF280000;255B -SF360000;255E -SF370000;255F -SF380000;255A -SF390000;2554 -SF400000;2569 -SF410000;2566 -SF420000;2560 -SF430000;2550 -SF440000;256C -SF450000;2567 -SF460000;2568 -SF470000;2564 -SF480000;2565 -SF490000;2559 -SF500000;2558 -SF510000;2552 -SF520000;2553 -SF530000;256B -SF540000;256A -Sacute;015A -Sacutedotaccent;1E64 -Sampigreek;03E0 -Scaron;0160 -Scarondotaccent;1E66 -Scaronsmall;F6FD -Scedilla;015E -Schwa;018F -Schwacyrillic;04D8 -Schwadieresiscyrillic;04DA -Scircle;24C8 -Scircumflex;015C -Scommaaccent;0218 -Sdotaccent;1E60 -Sdotbelow;1E62 -Sdotbelowdotaccent;1E68 -Seharmenian;054D -Sevenroman;2166 -Shaarmenian;0547 -Shacyrillic;0428 -Shchacyrillic;0429 -Sheicoptic;03E2 -Shhacyrillic;04BA -Shimacoptic;03EC -Sigma;03A3 -Sixroman;2165 -Smonospace;FF33 -Softsigncyrillic;042C -Ssmall;F773 -Stigmagreek;03DA -T;0054 -Tau;03A4 -Tbar;0166 -Tcaron;0164 -Tcedilla;0162 -Tcircle;24C9 -Tcircumflexbelow;1E70 -Tcommaaccent;0162 -Tdotaccent;1E6A -Tdotbelow;1E6C -Tecyrillic;0422 -Tedescendercyrillic;04AC -Tenroman;2169 -Tetsecyrillic;04B4 -Theta;0398 -Thook;01AC -Thorn;00DE -Thornsmall;F7FE -Threeroman;2162 -Tildesmall;F6FE -Tiwnarmenian;054F -Tlinebelow;1E6E -Tmonospace;FF34 -Toarmenian;0539 -Tonefive;01BC -Tonesix;0184 -Tonetwo;01A7 -Tretroflexhook;01AE -Tsecyrillic;0426 -Tshecyrillic;040B -Tsmall;F774 -Twelveroman;216B -Tworoman;2161 -U;0055 -Uacute;00DA -Uacutesmall;F7FA -Ubreve;016C -Ucaron;01D3 -Ucircle;24CA -Ucircumflex;00DB -Ucircumflexbelow;1E76 -Ucircumflexsmall;F7FB -Ucyrillic;0423 -Udblacute;0170 -Udblgrave;0214 -Udieresis;00DC -Udieresisacute;01D7 -Udieresisbelow;1E72 -Udieresiscaron;01D9 -Udieresiscyrillic;04F0 -Udieresisgrave;01DB -Udieresismacron;01D5 -Udieresissmall;F7FC -Udotbelow;1EE4 -Ugrave;00D9 -Ugravesmall;F7F9 -Uhookabove;1EE6 -Uhorn;01AF -Uhornacute;1EE8 -Uhorndotbelow;1EF0 -Uhorngrave;1EEA -Uhornhookabove;1EEC -Uhorntilde;1EEE -Uhungarumlaut;0170 -Uhungarumlautcyrillic;04F2 -Uinvertedbreve;0216 -Ukcyrillic;0478 -Umacron;016A -Umacroncyrillic;04EE -Umacrondieresis;1E7A -Umonospace;FF35 -Uogonek;0172 -Upsilon;03A5 -Upsilon1;03D2 -Upsilonacutehooksymbolgreek;03D3 -Upsilonafrican;01B1 -Upsilondieresis;03AB -Upsilondieresishooksymbolgreek;03D4 -Upsilonhooksymbol;03D2 -Upsilontonos;038E -Uring;016E -Ushortcyrillic;040E -Usmall;F775 -Ustraightcyrillic;04AE -Ustraightstrokecyrillic;04B0 -Utilde;0168 -Utildeacute;1E78 -Utildebelow;1E74 -V;0056 -Vcircle;24CB -Vdotbelow;1E7E -Vecyrillic;0412 -Vewarmenian;054E -Vhook;01B2 -Vmonospace;FF36 -Voarmenian;0548 -Vsmall;F776 -Vtilde;1E7C -W;0057 -Wacute;1E82 -Wcircle;24CC -Wcircumflex;0174 -Wdieresis;1E84 -Wdotaccent;1E86 -Wdotbelow;1E88 -Wgrave;1E80 -Wmonospace;FF37 -Wsmall;F777 -X;0058 -Xcircle;24CD -Xdieresis;1E8C -Xdotaccent;1E8A -Xeharmenian;053D -Xi;039E -Xmonospace;FF38 -Xsmall;F778 -Y;0059 -Yacute;00DD -Yacutesmall;F7FD -Yatcyrillic;0462 -Ycircle;24CE -Ycircumflex;0176 -Ydieresis;0178 -Ydieresissmall;F7FF -Ydotaccent;1E8E -Ydotbelow;1EF4 -Yericyrillic;042B -Yerudieresiscyrillic;04F8 -Ygrave;1EF2 -Yhook;01B3 -Yhookabove;1EF6 -Yiarmenian;0545 -Yicyrillic;0407 -Yiwnarmenian;0552 -Ymonospace;FF39 -Ysmall;F779 -Ytilde;1EF8 -Yusbigcyrillic;046A -Yusbigiotifiedcyrillic;046C -Yuslittlecyrillic;0466 -Yuslittleiotifiedcyrillic;0468 -Z;005A -Zaarmenian;0536 -Zacute;0179 -Zcaron;017D -Zcaronsmall;F6FF -Zcircle;24CF -Zcircumflex;1E90 -Zdot;017B -Zdotaccent;017B -Zdotbelow;1E92 -Zecyrillic;0417 -Zedescendercyrillic;0498 -Zedieresiscyrillic;04DE -Zeta;0396 -Zhearmenian;053A -Zhebrevecyrillic;04C1 -Zhecyrillic;0416 -Zhedescendercyrillic;0496 -Zhedieresiscyrillic;04DC -Zlinebelow;1E94 -Zmonospace;FF3A -Zsmall;F77A -Zstroke;01B5 -a;0061 -aabengali;0986 -aacute;00E1 -aadeva;0906 -aagujarati;0A86 -aagurmukhi;0A06 -aamatragurmukhi;0A3E -aarusquare;3303 -aavowelsignbengali;09BE -aavowelsigndeva;093E -aavowelsigngujarati;0ABE -abbreviationmarkarmenian;055F -abbreviationsigndeva;0970 -abengali;0985 -abopomofo;311A -abreve;0103 -abreveacute;1EAF -abrevecyrillic;04D1 -abrevedotbelow;1EB7 -abrevegrave;1EB1 -abrevehookabove;1EB3 -abrevetilde;1EB5 -acaron;01CE -acircle;24D0 -acircumflex;00E2 -acircumflexacute;1EA5 -acircumflexdotbelow;1EAD -acircumflexgrave;1EA7 -acircumflexhookabove;1EA9 -acircumflextilde;1EAB -acute;00B4 -acutebelowcmb;0317 -acutecmb;0301 -acutecomb;0301 -acutedeva;0954 -acutelowmod;02CF -acutetonecmb;0341 -acyrillic;0430 -adblgrave;0201 -addakgurmukhi;0A71 -adeva;0905 -adieresis;00E4 -adieresiscyrillic;04D3 -adieresismacron;01DF -adotbelow;1EA1 -adotmacron;01E1 -ae;00E6 -aeacute;01FD -aekorean;3150 -aemacron;01E3 -afii00208;2015 -afii08941;20A4 -afii10017;0410 -afii10018;0411 -afii10019;0412 -afii10020;0413 -afii10021;0414 -afii10022;0415 -afii10023;0401 -afii10024;0416 -afii10025;0417 -afii10026;0418 -afii10027;0419 -afii10028;041A -afii10029;041B -afii10030;041C -afii10031;041D -afii10032;041E -afii10033;041F -afii10034;0420 -afii10035;0421 -afii10036;0422 -afii10037;0423 -afii10038;0424 -afii10039;0425 -afii10040;0426 -afii10041;0427 -afii10042;0428 -afii10043;0429 -afii10044;042A -afii10045;042B -afii10046;042C -afii10047;042D -afii10048;042E -afii10049;042F -afii10050;0490 -afii10051;0402 -afii10052;0403 -afii10053;0404 -afii10054;0405 -afii10055;0406 -afii10056;0407 -afii10057;0408 -afii10058;0409 -afii10059;040A -afii10060;040B -afii10061;040C -afii10062;040E -afii10063;F6C4 -afii10064;F6C5 -afii10065;0430 -afii10066;0431 -afii10067;0432 -afii10068;0433 -afii10069;0434 -afii10070;0435 -afii10071;0451 -afii10072;0436 -afii10073;0437 -afii10074;0438 -afii10075;0439 -afii10076;043A -afii10077;043B -afii10078;043C -afii10079;043D -afii10080;043E -afii10081;043F -afii10082;0440 -afii10083;0441 -afii10084;0442 -afii10085;0443 -afii10086;0444 -afii10087;0445 -afii10088;0446 -afii10089;0447 -afii10090;0448 -afii10091;0449 -afii10092;044A -afii10093;044B -afii10094;044C -afii10095;044D -afii10096;044E -afii10097;044F -afii10098;0491 -afii10099;0452 -afii10100;0453 -afii10101;0454 -afii10102;0455 -afii10103;0456 -afii10104;0457 -afii10105;0458 -afii10106;0459 -afii10107;045A -afii10108;045B -afii10109;045C -afii10110;045E -afii10145;040F -afii10146;0462 -afii10147;0472 -afii10148;0474 -afii10192;F6C6 -afii10193;045F -afii10194;0463 -afii10195;0473 -afii10196;0475 -afii10831;F6C7 -afii10832;F6C8 -afii10846;04D9 -afii299;200E -afii300;200F -afii301;200D -afii57381;066A -afii57388;060C -afii57392;0660 -afii57393;0661 -afii57394;0662 -afii57395;0663 -afii57396;0664 -afii57397;0665 -afii57398;0666 -afii57399;0667 -afii57400;0668 -afii57401;0669 -afii57403;061B -afii57407;061F -afii57409;0621 -afii57410;0622 -afii57411;0623 -afii57412;0624 -afii57413;0625 -afii57414;0626 -afii57415;0627 -afii57416;0628 -afii57417;0629 -afii57418;062A -afii57419;062B -afii57420;062C -afii57421;062D -afii57422;062E -afii57423;062F -afii57424;0630 -afii57425;0631 -afii57426;0632 -afii57427;0633 -afii57428;0634 -afii57429;0635 -afii57430;0636 -afii57431;0637 -afii57432;0638 -afii57433;0639 -afii57434;063A -afii57440;0640 -afii57441;0641 -afii57442;0642 -afii57443;0643 -afii57444;0644 -afii57445;0645 -afii57446;0646 -afii57448;0648 -afii57449;0649 -afii57450;064A -afii57451;064B -afii57452;064C -afii57453;064D -afii57454;064E -afii57455;064F -afii57456;0650 -afii57457;0651 -afii57458;0652 -afii57470;0647 -afii57505;06A4 -afii57506;067E -afii57507;0686 -afii57508;0698 -afii57509;06AF -afii57511;0679 -afii57512;0688 -afii57513;0691 -afii57514;06BA -afii57519;06D2 -afii57534;06D5 -afii57636;20AA -afii57645;05BE -afii57658;05C3 -afii57664;05D0 -afii57665;05D1 -afii57666;05D2 -afii57667;05D3 -afii57668;05D4 -afii57669;05D5 -afii57670;05D6 -afii57671;05D7 -afii57672;05D8 -afii57673;05D9 -afii57674;05DA -afii57675;05DB -afii57676;05DC -afii57677;05DD -afii57678;05DE -afii57679;05DF -afii57680;05E0 -afii57681;05E1 -afii57682;05E2 -afii57683;05E3 -afii57684;05E4 -afii57685;05E5 -afii57686;05E6 -afii57687;05E7 -afii57688;05E8 -afii57689;05E9 -afii57690;05EA -afii57694;FB2A -afii57695;FB2B -afii57700;FB4B -afii57705;FB1F -afii57716;05F0 -afii57717;05F1 -afii57718;05F2 -afii57723;FB35 -afii57793;05B4 -afii57794;05B5 -afii57795;05B6 -afii57796;05BB -afii57797;05B8 -afii57798;05B7 -afii57799;05B0 -afii57800;05B2 -afii57801;05B1 -afii57802;05B3 -afii57803;05C2 -afii57804;05C1 -afii57806;05B9 -afii57807;05BC -afii57839;05BD -afii57841;05BF -afii57842;05C0 -afii57929;02BC -afii61248;2105 -afii61289;2113 -afii61352;2116 -afii61573;202C -afii61574;202D -afii61575;202E -afii61664;200C -afii63167;066D -afii64937;02BD -agrave;00E0 -agujarati;0A85 -agurmukhi;0A05 -ahiragana;3042 -ahookabove;1EA3 -aibengali;0990 -aibopomofo;311E -aideva;0910 -aiecyrillic;04D5 -aigujarati;0A90 -aigurmukhi;0A10 -aimatragurmukhi;0A48 -ainarabic;0639 -ainfinalarabic;FECA -aininitialarabic;FECB -ainmedialarabic;FECC -ainvertedbreve;0203 -aivowelsignbengali;09C8 -aivowelsigndeva;0948 -aivowelsigngujarati;0AC8 -akatakana;30A2 -akatakanahalfwidth;FF71 -akorean;314F -alef;05D0 -alefarabic;0627 -alefdageshhebrew;FB30 -aleffinalarabic;FE8E -alefhamzaabovearabic;0623 -alefhamzaabovefinalarabic;FE84 -alefhamzabelowarabic;0625 -alefhamzabelowfinalarabic;FE88 -alefhebrew;05D0 -aleflamedhebrew;FB4F -alefmaddaabovearabic;0622 -alefmaddaabovefinalarabic;FE82 -alefmaksuraarabic;0649 -alefmaksurafinalarabic;FEF0 -alefmaksurainitialarabic;FEF3 -alefmaksuramedialarabic;FEF4 -alefpatahhebrew;FB2E -alefqamatshebrew;FB2F -aleph;2135 -allequal;224C -alpha;03B1 -alphatonos;03AC -amacron;0101 -amonospace;FF41 -ampersand;0026 -ampersandmonospace;FF06 -ampersandsmall;F726 -amsquare;33C2 -anbopomofo;3122 -angbopomofo;3124 -angkhankhuthai;0E5A -angle;2220 -anglebracketleft;3008 -anglebracketleftvertical;FE3F -anglebracketright;3009 -anglebracketrightvertical;FE40 -angleleft;2329 -angleright;232A -angstrom;212B -anoteleia;0387 -anudattadeva;0952 -anusvarabengali;0982 -anusvaradeva;0902 -anusvaragujarati;0A82 -aogonek;0105 -apaatosquare;3300 -aparen;249C -apostrophearmenian;055A -apostrophemod;02BC -apple;F8FF -approaches;2250 -approxequal;2248 -approxequalorimage;2252 -approximatelyequal;2245 -araeaekorean;318E -araeakorean;318D -arc;2312 -arighthalfring;1E9A -aring;00E5 -aringacute;01FB -aringbelow;1E01 -arrowboth;2194 -arrowdashdown;21E3 -arrowdashleft;21E0 -arrowdashright;21E2 -arrowdashup;21E1 -arrowdblboth;21D4 -arrowdbldown;21D3 -arrowdblleft;21D0 -arrowdblright;21D2 -arrowdblup;21D1 -arrowdown;2193 -arrowdownleft;2199 -arrowdownright;2198 -arrowdownwhite;21E9 -arrowheaddownmod;02C5 -arrowheadleftmod;02C2 -arrowheadrightmod;02C3 -arrowheadupmod;02C4 -arrowhorizex;F8E7 -arrowleft;2190 -arrowleftdbl;21D0 -arrowleftdblstroke;21CD -arrowleftoverright;21C6 -arrowleftwhite;21E6 -arrowright;2192 -arrowrightdblstroke;21CF -arrowrightheavy;279E -arrowrightoverleft;21C4 -arrowrightwhite;21E8 -arrowtableft;21E4 -arrowtabright;21E5 -arrowup;2191 -arrowupdn;2195 -arrowupdnbse;21A8 -arrowupdownbase;21A8 -arrowupleft;2196 -arrowupleftofdown;21C5 -arrowupright;2197 -arrowupwhite;21E7 -arrowvertex;F8E6 -asciicircum;005E -asciicircummonospace;FF3E -asciitilde;007E -asciitildemonospace;FF5E -ascript;0251 -ascriptturned;0252 -asmallhiragana;3041 -asmallkatakana;30A1 -asmallkatakanahalfwidth;FF67 -asterisk;002A -asteriskaltonearabic;066D -asteriskarabic;066D -asteriskmath;2217 -asteriskmonospace;FF0A -asterisksmall;FE61 -asterism;2042 -asuperior;F6E9 -asymptoticallyequal;2243 -at;0040 -atilde;00E3 -atmonospace;FF20 -atsmall;FE6B -aturned;0250 -aubengali;0994 -aubopomofo;3120 -audeva;0914 -augujarati;0A94 -augurmukhi;0A14 -aulengthmarkbengali;09D7 -aumatragurmukhi;0A4C -auvowelsignbengali;09CC -auvowelsigndeva;094C -auvowelsigngujarati;0ACC -avagrahadeva;093D -aybarmenian;0561 -ayin;05E2 -ayinaltonehebrew;FB20 -ayinhebrew;05E2 -b;0062 -babengali;09AC -backslash;005C -backslashmonospace;FF3C -badeva;092C -bagujarati;0AAC -bagurmukhi;0A2C -bahiragana;3070 -bahtthai;0E3F -bakatakana;30D0 -bar;007C -barmonospace;FF5C -bbopomofo;3105 -bcircle;24D1 -bdotaccent;1E03 -bdotbelow;1E05 -beamedsixteenthnotes;266C -because;2235 -becyrillic;0431 -beharabic;0628 -behfinalarabic;FE90 -behinitialarabic;FE91 -behiragana;3079 -behmedialarabic;FE92 -behmeeminitialarabic;FC9F -behmeemisolatedarabic;FC08 -behnoonfinalarabic;FC6D -bekatakana;30D9 -benarmenian;0562 -bet;05D1 -beta;03B2 -betasymbolgreek;03D0 -betdagesh;FB31 -betdageshhebrew;FB31 -bethebrew;05D1 -betrafehebrew;FB4C -bhabengali;09AD -bhadeva;092D -bhagujarati;0AAD -bhagurmukhi;0A2D -bhook;0253 -bihiragana;3073 -bikatakana;30D3 -bilabialclick;0298 -bindigurmukhi;0A02 -birusquare;3331 -blackcircle;25CF -blackdiamond;25C6 -blackdownpointingtriangle;25BC -blackleftpointingpointer;25C4 -blackleftpointingtriangle;25C0 -blacklenticularbracketleft;3010 -blacklenticularbracketleftvertical;FE3B -blacklenticularbracketright;3011 -blacklenticularbracketrightvertical;FE3C -blacklowerlefttriangle;25E3 -blacklowerrighttriangle;25E2 -blackrectangle;25AC -blackrightpointingpointer;25BA -blackrightpointingtriangle;25B6 -blacksmallsquare;25AA -blacksmilingface;263B -blacksquare;25A0 -blackstar;2605 -blackupperlefttriangle;25E4 -blackupperrighttriangle;25E5 -blackuppointingsmalltriangle;25B4 -blackuppointingtriangle;25B2 -blank;2423 -blinebelow;1E07 -block;2588 -bmonospace;FF42 -bobaimaithai;0E1A -bohiragana;307C -bokatakana;30DC -bparen;249D -bqsquare;33C3 -braceex;F8F4 -braceleft;007B -braceleftbt;F8F3 -braceleftmid;F8F2 -braceleftmonospace;FF5B -braceleftsmall;FE5B -bracelefttp;F8F1 -braceleftvertical;FE37 -braceright;007D -bracerightbt;F8FE -bracerightmid;F8FD -bracerightmonospace;FF5D -bracerightsmall;FE5C -bracerighttp;F8FC -bracerightvertical;FE38 -bracketleft;005B -bracketleftbt;F8F0 -bracketleftex;F8EF -bracketleftmonospace;FF3B -bracketlefttp;F8EE -bracketright;005D -bracketrightbt;F8FB -bracketrightex;F8FA -bracketrightmonospace;FF3D -bracketrighttp;F8F9 -breve;02D8 -brevebelowcmb;032E -brevecmb;0306 -breveinvertedbelowcmb;032F -breveinvertedcmb;0311 -breveinverteddoublecmb;0361 -bridgebelowcmb;032A -bridgeinvertedbelowcmb;033A -brokenbar;00A6 -bstroke;0180 -bsuperior;F6EA -btopbar;0183 -buhiragana;3076 -bukatakana;30D6 -bullet;2022 -bulletinverse;25D8 -bulletoperator;2219 -bullseye;25CE -c;0063 -caarmenian;056E -cabengali;099A -cacute;0107 -cadeva;091A -cagujarati;0A9A -cagurmukhi;0A1A -calsquare;3388 -candrabindubengali;0981 -candrabinducmb;0310 -candrabindudeva;0901 -candrabindugujarati;0A81 -capslock;21EA -careof;2105 -caron;02C7 -caronbelowcmb;032C -caroncmb;030C -carriagereturn;21B5 -cbopomofo;3118 -ccaron;010D -ccedilla;00E7 -ccedillaacute;1E09 -ccircle;24D2 -ccircumflex;0109 -ccurl;0255 -cdot;010B -cdotaccent;010B -cdsquare;33C5 -cedilla;00B8 -cedillacmb;0327 -cent;00A2 -centigrade;2103 -centinferior;F6DF -centmonospace;FFE0 -centoldstyle;F7A2 -centsuperior;F6E0 -chaarmenian;0579 -chabengali;099B -chadeva;091B -chagujarati;0A9B -chagurmukhi;0A1B -chbopomofo;3114 -cheabkhasiancyrillic;04BD -checkmark;2713 -checyrillic;0447 -chedescenderabkhasiancyrillic;04BF -chedescendercyrillic;04B7 -chedieresiscyrillic;04F5 -cheharmenian;0573 -chekhakassiancyrillic;04CC -cheverticalstrokecyrillic;04B9 -chi;03C7 -chieuchacirclekorean;3277 -chieuchaparenkorean;3217 -chieuchcirclekorean;3269 -chieuchkorean;314A -chieuchparenkorean;3209 -chochangthai;0E0A -chochanthai;0E08 -chochingthai;0E09 -chochoethai;0E0C -chook;0188 -cieucacirclekorean;3276 -cieucaparenkorean;3216 -cieuccirclekorean;3268 -cieuckorean;3148 -cieucparenkorean;3208 -cieucuparenkorean;321C -circle;25CB -circlemultiply;2297 -circleot;2299 -circleplus;2295 -circlepostalmark;3036 -circlewithlefthalfblack;25D0 -circlewithrighthalfblack;25D1 -circumflex;02C6 -circumflexbelowcmb;032D -circumflexcmb;0302 -clear;2327 -clickalveolar;01C2 -clickdental;01C0 -clicklateral;01C1 -clickretroflex;01C3 -club;2663 -clubsuitblack;2663 -clubsuitwhite;2667 -cmcubedsquare;33A4 -cmonospace;FF43 -cmsquaredsquare;33A0 -coarmenian;0581 -colon;003A -colonmonetary;20A1 -colonmonospace;FF1A -colonsign;20A1 -colonsmall;FE55 -colontriangularhalfmod;02D1 -colontriangularmod;02D0 -comma;002C -commaabovecmb;0313 -commaaboverightcmb;0315 -commaaccent;F6C3 -commaarabic;060C -commaarmenian;055D -commainferior;F6E1 -commamonospace;FF0C -commareversedabovecmb;0314 -commareversedmod;02BD -commasmall;FE50 -commasuperior;F6E2 -commaturnedabovecmb;0312 -commaturnedmod;02BB -compass;263C -congruent;2245 -contourintegral;222E -control;2303 -controlACK;0006 -controlBEL;0007 -controlBS;0008 -controlCAN;0018 -controlCR;000D -controlDC1;0011 -controlDC2;0012 -controlDC3;0013 -controlDC4;0014 -controlDEL;007F -controlDLE;0010 -controlEM;0019 -controlENQ;0005 -controlEOT;0004 -controlESC;001B -controlETB;0017 -controlETX;0003 -controlFF;000C -controlFS;001C -controlGS;001D -controlHT;0009 -controlLF;000A -controlNAK;0015 -controlRS;001E -controlSI;000F -controlSO;000E -controlSOT;0002 -controlSTX;0001 -controlSUB;001A -controlSYN;0016 -controlUS;001F -controlVT;000B -copyright;00A9 -copyrightsans;F8E9 -copyrightserif;F6D9 -cornerbracketleft;300C -cornerbracketlefthalfwidth;FF62 -cornerbracketleftvertical;FE41 -cornerbracketright;300D -cornerbracketrighthalfwidth;FF63 -cornerbracketrightvertical;FE42 -corporationsquare;337F -cosquare;33C7 -coverkgsquare;33C6 -cparen;249E -cruzeiro;20A2 -cstretched;0297 -curlyand;22CF -curlyor;22CE -currency;00A4 -cyrBreve;F6D1 -cyrFlex;F6D2 -cyrbreve;F6D4 -cyrflex;F6D5 -d;0064 -daarmenian;0564 -dabengali;09A6 -dadarabic;0636 -dadeva;0926 -dadfinalarabic;FEBE -dadinitialarabic;FEBF -dadmedialarabic;FEC0 -dagesh;05BC -dageshhebrew;05BC -dagger;2020 -daggerdbl;2021 -dagujarati;0AA6 -dagurmukhi;0A26 -dahiragana;3060 -dakatakana;30C0 -dalarabic;062F -dalet;05D3 -daletdagesh;FB33 -daletdageshhebrew;FB33 -dalethatafpatah;05D3 05B2 -dalethatafpatahhebrew;05D3 05B2 -dalethatafsegol;05D3 05B1 -dalethatafsegolhebrew;05D3 05B1 -dalethebrew;05D3 -dalethiriq;05D3 05B4 -dalethiriqhebrew;05D3 05B4 -daletholam;05D3 05B9 -daletholamhebrew;05D3 05B9 -daletpatah;05D3 05B7 -daletpatahhebrew;05D3 05B7 -daletqamats;05D3 05B8 -daletqamatshebrew;05D3 05B8 -daletqubuts;05D3 05BB -daletqubutshebrew;05D3 05BB -daletsegol;05D3 05B6 -daletsegolhebrew;05D3 05B6 -daletsheva;05D3 05B0 -daletshevahebrew;05D3 05B0 -dalettsere;05D3 05B5 -dalettserehebrew;05D3 05B5 -dalfinalarabic;FEAA -dammaarabic;064F -dammalowarabic;064F -dammatanaltonearabic;064C -dammatanarabic;064C -danda;0964 -dargahebrew;05A7 -dargalefthebrew;05A7 -dasiapneumatacyrilliccmb;0485 -dblGrave;F6D3 -dblanglebracketleft;300A -dblanglebracketleftvertical;FE3D -dblanglebracketright;300B -dblanglebracketrightvertical;FE3E -dblarchinvertedbelowcmb;032B -dblarrowleft;21D4 -dblarrowright;21D2 -dbldanda;0965 -dblgrave;F6D6 -dblgravecmb;030F -dblintegral;222C -dbllowline;2017 -dbllowlinecmb;0333 -dbloverlinecmb;033F -dblprimemod;02BA -dblverticalbar;2016 -dblverticallineabovecmb;030E -dbopomofo;3109 -dbsquare;33C8 -dcaron;010F -dcedilla;1E11 -dcircle;24D3 -dcircumflexbelow;1E13 -dcroat;0111 -ddabengali;09A1 -ddadeva;0921 -ddagujarati;0AA1 -ddagurmukhi;0A21 -ddalarabic;0688 -ddalfinalarabic;FB89 -dddhadeva;095C -ddhabengali;09A2 -ddhadeva;0922 -ddhagujarati;0AA2 -ddhagurmukhi;0A22 -ddotaccent;1E0B -ddotbelow;1E0D -decimalseparatorarabic;066B -decimalseparatorpersian;066B -decyrillic;0434 -degree;00B0 -dehihebrew;05AD -dehiragana;3067 -deicoptic;03EF -dekatakana;30C7 -deleteleft;232B -deleteright;2326 -delta;03B4 -deltaturned;018D -denominatorminusonenumeratorbengali;09F8 -dezh;02A4 -dhabengali;09A7 -dhadeva;0927 -dhagujarati;0AA7 -dhagurmukhi;0A27 -dhook;0257 -dialytikatonos;0385 -dialytikatonoscmb;0344 -diamond;2666 -diamondsuitwhite;2662 -dieresis;00A8 -dieresisacute;F6D7 -dieresisbelowcmb;0324 -dieresiscmb;0308 -dieresisgrave;F6D8 -dieresistonos;0385 -dihiragana;3062 -dikatakana;30C2 -dittomark;3003 -divide;00F7 -divides;2223 -divisionslash;2215 -djecyrillic;0452 -dkshade;2593 -dlinebelow;1E0F -dlsquare;3397 -dmacron;0111 -dmonospace;FF44 -dnblock;2584 -dochadathai;0E0E -dodekthai;0E14 -dohiragana;3069 -dokatakana;30C9 -dollar;0024 -dollarinferior;F6E3 -dollarmonospace;FF04 -dollaroldstyle;F724 -dollarsmall;FE69 -dollarsuperior;F6E4 -dong;20AB -dorusquare;3326 -dotaccent;02D9 -dotaccentcmb;0307 -dotbelowcmb;0323 -dotbelowcomb;0323 -dotkatakana;30FB -dotlessi;0131 -dotlessj;F6BE -dotlessjstrokehook;0284 -dotmath;22C5 -dottedcircle;25CC -doubleyodpatah;FB1F -doubleyodpatahhebrew;FB1F -downtackbelowcmb;031E -downtackmod;02D5 -dparen;249F -dsuperior;F6EB -dtail;0256 -dtopbar;018C -duhiragana;3065 -dukatakana;30C5 -dz;01F3 -dzaltone;02A3 -dzcaron;01C6 -dzcurl;02A5 -dzeabkhasiancyrillic;04E1 -dzecyrillic;0455 -dzhecyrillic;045F -e;0065 -eacute;00E9 -earth;2641 -ebengali;098F -ebopomofo;311C -ebreve;0115 -ecandradeva;090D -ecandragujarati;0A8D -ecandravowelsigndeva;0945 -ecandravowelsigngujarati;0AC5 -ecaron;011B -ecedillabreve;1E1D -echarmenian;0565 -echyiwnarmenian;0587 -ecircle;24D4 -ecircumflex;00EA -ecircumflexacute;1EBF -ecircumflexbelow;1E19 -ecircumflexdotbelow;1EC7 -ecircumflexgrave;1EC1 -ecircumflexhookabove;1EC3 -ecircumflextilde;1EC5 -ecyrillic;0454 -edblgrave;0205 -edeva;090F -edieresis;00EB -edot;0117 -edotaccent;0117 -edotbelow;1EB9 -eegurmukhi;0A0F -eematragurmukhi;0A47 -efcyrillic;0444 -egrave;00E8 -egujarati;0A8F -eharmenian;0567 -ehbopomofo;311D -ehiragana;3048 -ehookabove;1EBB -eibopomofo;311F -eight;0038 -eightarabic;0668 -eightbengali;09EE -eightcircle;2467 -eightcircleinversesansserif;2791 -eightdeva;096E -eighteencircle;2471 -eighteenparen;2485 -eighteenperiod;2499 -eightgujarati;0AEE -eightgurmukhi;0A6E -eighthackarabic;0668 -eighthangzhou;3028 -eighthnotebeamed;266B -eightideographicparen;3227 -eightinferior;2088 -eightmonospace;FF18 -eightoldstyle;F738 -eightparen;247B -eightperiod;248F -eightpersian;06F8 -eightroman;2177 -eightsuperior;2078 -eightthai;0E58 -einvertedbreve;0207 -eiotifiedcyrillic;0465 -ekatakana;30A8 -ekatakanahalfwidth;FF74 -ekonkargurmukhi;0A74 -ekorean;3154 -elcyrillic;043B -element;2208 -elevencircle;246A -elevenparen;247E -elevenperiod;2492 -elevenroman;217A -ellipsis;2026 -ellipsisvertical;22EE -emacron;0113 -emacronacute;1E17 -emacrongrave;1E15 -emcyrillic;043C -emdash;2014 -emdashvertical;FE31 -emonospace;FF45 -emphasismarkarmenian;055B -emptyset;2205 -enbopomofo;3123 -encyrillic;043D -endash;2013 -endashvertical;FE32 -endescendercyrillic;04A3 -eng;014B -engbopomofo;3125 -enghecyrillic;04A5 -enhookcyrillic;04C8 -enspace;2002 -eogonek;0119 -eokorean;3153 -eopen;025B -eopenclosed;029A -eopenreversed;025C -eopenreversedclosed;025E -eopenreversedhook;025D -eparen;24A0 -epsilon;03B5 -epsilontonos;03AD -equal;003D -equalmonospace;FF1D -equalsmall;FE66 -equalsuperior;207C -equivalence;2261 -erbopomofo;3126 -ercyrillic;0440 -ereversed;0258 -ereversedcyrillic;044D -escyrillic;0441 -esdescendercyrillic;04AB -esh;0283 -eshcurl;0286 -eshortdeva;090E -eshortvowelsigndeva;0946 -eshreversedloop;01AA -eshsquatreversed;0285 -esmallhiragana;3047 -esmallkatakana;30A7 -esmallkatakanahalfwidth;FF6A -estimated;212E -esuperior;F6EC -eta;03B7 -etarmenian;0568 -etatonos;03AE -eth;00F0 -etilde;1EBD -etildebelow;1E1B -etnahtafoukhhebrew;0591 -etnahtafoukhlefthebrew;0591 -etnahtahebrew;0591 -etnahtalefthebrew;0591 -eturned;01DD -eukorean;3161 -euro;20AC -evowelsignbengali;09C7 -evowelsigndeva;0947 -evowelsigngujarati;0AC7 -exclam;0021 -exclamarmenian;055C -exclamdbl;203C -exclamdown;00A1 -exclamdownsmall;F7A1 -exclammonospace;FF01 -exclamsmall;F721 -existential;2203 -ezh;0292 -ezhcaron;01EF -ezhcurl;0293 -ezhreversed;01B9 -ezhtail;01BA -f;0066 -fadeva;095E -fagurmukhi;0A5E -fahrenheit;2109 -fathaarabic;064E -fathalowarabic;064E -fathatanarabic;064B -fbopomofo;3108 -fcircle;24D5 -fdotaccent;1E1F -feharabic;0641 -feharmenian;0586 -fehfinalarabic;FED2 -fehinitialarabic;FED3 -fehmedialarabic;FED4 -feicoptic;03E5 -female;2640 -ff;FB00 -ffi;FB03 -ffl;FB04 -fi;FB01 -fifteencircle;246E -fifteenparen;2482 -fifteenperiod;2496 -figuredash;2012 -filledbox;25A0 -filledrect;25AC -finalkaf;05DA -finalkafdagesh;FB3A -finalkafdageshhebrew;FB3A -finalkafhebrew;05DA -finalkafqamats;05DA 05B8 -finalkafqamatshebrew;05DA 05B8 -finalkafsheva;05DA 05B0 -finalkafshevahebrew;05DA 05B0 -finalmem;05DD -finalmemhebrew;05DD -finalnun;05DF -finalnunhebrew;05DF -finalpe;05E3 -finalpehebrew;05E3 -finaltsadi;05E5 -finaltsadihebrew;05E5 -firsttonechinese;02C9 -fisheye;25C9 -fitacyrillic;0473 -five;0035 -fivearabic;0665 -fivebengali;09EB -fivecircle;2464 -fivecircleinversesansserif;278E -fivedeva;096B -fiveeighths;215D -fivegujarati;0AEB -fivegurmukhi;0A6B -fivehackarabic;0665 -fivehangzhou;3025 -fiveideographicparen;3224 -fiveinferior;2085 -fivemonospace;FF15 -fiveoldstyle;F735 -fiveparen;2478 -fiveperiod;248C -fivepersian;06F5 -fiveroman;2174 -fivesuperior;2075 -fivethai;0E55 -fl;FB02 -florin;0192 -fmonospace;FF46 -fmsquare;3399 -fofanthai;0E1F -fofathai;0E1D -fongmanthai;0E4F -forall;2200 -four;0034 -fourarabic;0664 -fourbengali;09EA -fourcircle;2463 -fourcircleinversesansserif;278D -fourdeva;096A -fourgujarati;0AEA -fourgurmukhi;0A6A -fourhackarabic;0664 -fourhangzhou;3024 -fourideographicparen;3223 -fourinferior;2084 -fourmonospace;FF14 -fournumeratorbengali;09F7 -fouroldstyle;F734 -fourparen;2477 -fourperiod;248B -fourpersian;06F4 -fourroman;2173 -foursuperior;2074 -fourteencircle;246D -fourteenparen;2481 -fourteenperiod;2495 -fourthai;0E54 -fourthtonechinese;02CB -fparen;24A1 -fraction;2044 -franc;20A3 -g;0067 -gabengali;0997 -gacute;01F5 -gadeva;0917 -gafarabic;06AF -gaffinalarabic;FB93 -gafinitialarabic;FB94 -gafmedialarabic;FB95 -gagujarati;0A97 -gagurmukhi;0A17 -gahiragana;304C -gakatakana;30AC -gamma;03B3 -gammalatinsmall;0263 -gammasuperior;02E0 -gangiacoptic;03EB -gbopomofo;310D -gbreve;011F -gcaron;01E7 -gcedilla;0123 -gcircle;24D6 -gcircumflex;011D -gcommaaccent;0123 -gdot;0121 -gdotaccent;0121 -gecyrillic;0433 -gehiragana;3052 -gekatakana;30B2 -geometricallyequal;2251 -gereshaccenthebrew;059C -gereshhebrew;05F3 -gereshmuqdamhebrew;059D -germandbls;00DF -gershayimaccenthebrew;059E -gershayimhebrew;05F4 -getamark;3013 -ghabengali;0998 -ghadarmenian;0572 -ghadeva;0918 -ghagujarati;0A98 -ghagurmukhi;0A18 -ghainarabic;063A -ghainfinalarabic;FECE -ghaininitialarabic;FECF -ghainmedialarabic;FED0 -ghemiddlehookcyrillic;0495 -ghestrokecyrillic;0493 -gheupturncyrillic;0491 -ghhadeva;095A -ghhagurmukhi;0A5A -ghook;0260 -ghzsquare;3393 -gihiragana;304E -gikatakana;30AE -gimarmenian;0563 -gimel;05D2 -gimeldagesh;FB32 -gimeldageshhebrew;FB32 -gimelhebrew;05D2 -gjecyrillic;0453 -glottalinvertedstroke;01BE -glottalstop;0294 -glottalstopinverted;0296 -glottalstopmod;02C0 -glottalstopreversed;0295 -glottalstopreversedmod;02C1 -glottalstopreversedsuperior;02E4 -glottalstopstroke;02A1 -glottalstopstrokereversed;02A2 -gmacron;1E21 -gmonospace;FF47 -gohiragana;3054 -gokatakana;30B4 -gparen;24A2 -gpasquare;33AC -gradient;2207 -grave;0060 -gravebelowcmb;0316 -gravecmb;0300 -gravecomb;0300 -gravedeva;0953 -gravelowmod;02CE -gravemonospace;FF40 -gravetonecmb;0340 -greater;003E -greaterequal;2265 -greaterequalorless;22DB -greatermonospace;FF1E -greaterorequivalent;2273 -greaterorless;2277 -greateroverequal;2267 -greatersmall;FE65 -gscript;0261 -gstroke;01E5 -guhiragana;3050 -guillemotleft;00AB -guillemotright;00BB -guilsinglleft;2039 -guilsinglright;203A -gukatakana;30B0 -guramusquare;3318 -gysquare;33C9 -h;0068 -haabkhasiancyrillic;04A9 -haaltonearabic;06C1 -habengali;09B9 -hadescendercyrillic;04B3 -hadeva;0939 -hagujarati;0AB9 -hagurmukhi;0A39 -haharabic;062D -hahfinalarabic;FEA2 -hahinitialarabic;FEA3 -hahiragana;306F -hahmedialarabic;FEA4 -haitusquare;332A -hakatakana;30CF -hakatakanahalfwidth;FF8A -halantgurmukhi;0A4D -hamzaarabic;0621 -hamzadammaarabic;0621 064F -hamzadammatanarabic;0621 064C -hamzafathaarabic;0621 064E -hamzafathatanarabic;0621 064B -hamzalowarabic;0621 -hamzalowkasraarabic;0621 0650 -hamzalowkasratanarabic;0621 064D -hamzasukunarabic;0621 0652 -hangulfiller;3164 -hardsigncyrillic;044A -harpoonleftbarbup;21BC -harpoonrightbarbup;21C0 -hasquare;33CA -hatafpatah;05B2 -hatafpatah16;05B2 -hatafpatah23;05B2 -hatafpatah2f;05B2 -hatafpatahhebrew;05B2 -hatafpatahnarrowhebrew;05B2 -hatafpatahquarterhebrew;05B2 -hatafpatahwidehebrew;05B2 -hatafqamats;05B3 -hatafqamats1b;05B3 -hatafqamats28;05B3 -hatafqamats34;05B3 -hatafqamatshebrew;05B3 -hatafqamatsnarrowhebrew;05B3 -hatafqamatsquarterhebrew;05B3 -hatafqamatswidehebrew;05B3 -hatafsegol;05B1 -hatafsegol17;05B1 -hatafsegol24;05B1 -hatafsegol30;05B1 -hatafsegolhebrew;05B1 -hatafsegolnarrowhebrew;05B1 -hatafsegolquarterhebrew;05B1 -hatafsegolwidehebrew;05B1 -hbar;0127 -hbopomofo;310F -hbrevebelow;1E2B -hcedilla;1E29 -hcircle;24D7 -hcircumflex;0125 -hdieresis;1E27 -hdotaccent;1E23 -hdotbelow;1E25 -he;05D4 -heart;2665 -heartsuitblack;2665 -heartsuitwhite;2661 -hedagesh;FB34 -hedageshhebrew;FB34 -hehaltonearabic;06C1 -heharabic;0647 -hehebrew;05D4 -hehfinalaltonearabic;FBA7 -hehfinalalttwoarabic;FEEA -hehfinalarabic;FEEA -hehhamzaabovefinalarabic;FBA5 -hehhamzaaboveisolatedarabic;FBA4 -hehinitialaltonearabic;FBA8 -hehinitialarabic;FEEB -hehiragana;3078 -hehmedialaltonearabic;FBA9 -hehmedialarabic;FEEC -heiseierasquare;337B -hekatakana;30D8 -hekatakanahalfwidth;FF8D -hekutaarusquare;3336 -henghook;0267 -herutusquare;3339 -het;05D7 -hethebrew;05D7 -hhook;0266 -hhooksuperior;02B1 -hieuhacirclekorean;327B -hieuhaparenkorean;321B -hieuhcirclekorean;326D -hieuhkorean;314E -hieuhparenkorean;320D -hihiragana;3072 -hikatakana;30D2 -hikatakanahalfwidth;FF8B -hiriq;05B4 -hiriq14;05B4 -hiriq21;05B4 -hiriq2d;05B4 -hiriqhebrew;05B4 -hiriqnarrowhebrew;05B4 -hiriqquarterhebrew;05B4 -hiriqwidehebrew;05B4 -hlinebelow;1E96 -hmonospace;FF48 -hoarmenian;0570 -hohipthai;0E2B -hohiragana;307B -hokatakana;30DB -hokatakanahalfwidth;FF8E -holam;05B9 -holam19;05B9 -holam26;05B9 -holam32;05B9 -holamhebrew;05B9 -holamnarrowhebrew;05B9 -holamquarterhebrew;05B9 -holamwidehebrew;05B9 -honokhukthai;0E2E -hookabovecomb;0309 -hookcmb;0309 -hookpalatalizedbelowcmb;0321 -hookretroflexbelowcmb;0322 -hoonsquare;3342 -horicoptic;03E9 -horizontalbar;2015 -horncmb;031B -hotsprings;2668 -house;2302 -hparen;24A3 -hsuperior;02B0 -hturned;0265 -huhiragana;3075 -huiitosquare;3333 -hukatakana;30D5 -hukatakanahalfwidth;FF8C -hungarumlaut;02DD -hungarumlautcmb;030B -hv;0195 -hyphen;002D -hypheninferior;F6E5 -hyphenmonospace;FF0D -hyphensmall;FE63 -hyphensuperior;F6E6 -hyphentwo;2010 -i;0069 -iacute;00ED -iacyrillic;044F -ibengali;0987 -ibopomofo;3127 -ibreve;012D -icaron;01D0 -icircle;24D8 -icircumflex;00EE -icyrillic;0456 -idblgrave;0209 -ideographearthcircle;328F -ideographfirecircle;328B -ideographicallianceparen;323F -ideographiccallparen;323A -ideographiccentrecircle;32A5 -ideographicclose;3006 -ideographiccomma;3001 -ideographiccommaleft;FF64 -ideographiccongratulationparen;3237 -ideographiccorrectcircle;32A3 -ideographicearthparen;322F -ideographicenterpriseparen;323D -ideographicexcellentcircle;329D -ideographicfestivalparen;3240 -ideographicfinancialcircle;3296 -ideographicfinancialparen;3236 -ideographicfireparen;322B -ideographichaveparen;3232 -ideographichighcircle;32A4 -ideographiciterationmark;3005 -ideographiclaborcircle;3298 -ideographiclaborparen;3238 -ideographicleftcircle;32A7 -ideographiclowcircle;32A6 -ideographicmedicinecircle;32A9 -ideographicmetalparen;322E -ideographicmoonparen;322A -ideographicnameparen;3234 -ideographicperiod;3002 -ideographicprintcircle;329E -ideographicreachparen;3243 -ideographicrepresentparen;3239 -ideographicresourceparen;323E -ideographicrightcircle;32A8 -ideographicsecretcircle;3299 -ideographicselfparen;3242 -ideographicsocietyparen;3233 -ideographicspace;3000 -ideographicspecialparen;3235 -ideographicstockparen;3231 -ideographicstudyparen;323B -ideographicsunparen;3230 -ideographicsuperviseparen;323C -ideographicwaterparen;322C -ideographicwoodparen;322D -ideographiczero;3007 -ideographmetalcircle;328E -ideographmooncircle;328A -ideographnamecircle;3294 -ideographsuncircle;3290 -ideographwatercircle;328C -ideographwoodcircle;328D -ideva;0907 -idieresis;00EF -idieresisacute;1E2F -idieresiscyrillic;04E5 -idotbelow;1ECB -iebrevecyrillic;04D7 -iecyrillic;0435 -ieungacirclekorean;3275 -ieungaparenkorean;3215 -ieungcirclekorean;3267 -ieungkorean;3147 -ieungparenkorean;3207 -igrave;00EC -igujarati;0A87 -igurmukhi;0A07 -ihiragana;3044 -ihookabove;1EC9 -iibengali;0988 -iicyrillic;0438 -iideva;0908 -iigujarati;0A88 -iigurmukhi;0A08 -iimatragurmukhi;0A40 -iinvertedbreve;020B -iishortcyrillic;0439 -iivowelsignbengali;09C0 -iivowelsigndeva;0940 -iivowelsigngujarati;0AC0 -ij;0133 -ikatakana;30A4 -ikatakanahalfwidth;FF72 -ikorean;3163 -ilde;02DC -iluyhebrew;05AC -imacron;012B -imacroncyrillic;04E3 -imageorapproximatelyequal;2253 -imatragurmukhi;0A3F -imonospace;FF49 -increment;2206 -infinity;221E -iniarmenian;056B -integral;222B -integralbottom;2321 -integralbt;2321 -integralex;F8F5 -integraltop;2320 -integraltp;2320 -intersection;2229 -intisquare;3305 -invbullet;25D8 -invcircle;25D9 -invsmileface;263B -iocyrillic;0451 -iogonek;012F -iota;03B9 -iotadieresis;03CA -iotadieresistonos;0390 -iotalatin;0269 -iotatonos;03AF -iparen;24A4 -irigurmukhi;0A72 -ismallhiragana;3043 -ismallkatakana;30A3 -ismallkatakanahalfwidth;FF68 -issharbengali;09FA -istroke;0268 -isuperior;F6ED -iterationhiragana;309D -iterationkatakana;30FD -itilde;0129 -itildebelow;1E2D -iubopomofo;3129 -iucyrillic;044E -ivowelsignbengali;09BF -ivowelsigndeva;093F -ivowelsigngujarati;0ABF -izhitsacyrillic;0475 -izhitsadblgravecyrillic;0477 -j;006A -jaarmenian;0571 -jabengali;099C -jadeva;091C -jagujarati;0A9C -jagurmukhi;0A1C -jbopomofo;3110 -jcaron;01F0 -jcircle;24D9 -jcircumflex;0135 -jcrossedtail;029D -jdotlessstroke;025F -jecyrillic;0458 -jeemarabic;062C -jeemfinalarabic;FE9E -jeeminitialarabic;FE9F -jeemmedialarabic;FEA0 -jeharabic;0698 -jehfinalarabic;FB8B -jhabengali;099D -jhadeva;091D -jhagujarati;0A9D -jhagurmukhi;0A1D -jheharmenian;057B -jis;3004 -jmonospace;FF4A -jparen;24A5 -jsuperior;02B2 -k;006B -kabashkircyrillic;04A1 -kabengali;0995 -kacute;1E31 -kacyrillic;043A -kadescendercyrillic;049B -kadeva;0915 -kaf;05DB -kafarabic;0643 -kafdagesh;FB3B -kafdageshhebrew;FB3B -kaffinalarabic;FEDA -kafhebrew;05DB -kafinitialarabic;FEDB -kafmedialarabic;FEDC -kafrafehebrew;FB4D -kagujarati;0A95 -kagurmukhi;0A15 -kahiragana;304B -kahookcyrillic;04C4 -kakatakana;30AB -kakatakanahalfwidth;FF76 -kappa;03BA -kappasymbolgreek;03F0 -kapyeounmieumkorean;3171 -kapyeounphieuphkorean;3184 -kapyeounpieupkorean;3178 -kapyeounssangpieupkorean;3179 -karoriisquare;330D -kashidaautoarabic;0640 -kashidaautonosidebearingarabic;0640 -kasmallkatakana;30F5 -kasquare;3384 -kasraarabic;0650 -kasratanarabic;064D -kastrokecyrillic;049F -katahiraprolongmarkhalfwidth;FF70 -kaverticalstrokecyrillic;049D -kbopomofo;310E -kcalsquare;3389 -kcaron;01E9 -kcedilla;0137 -kcircle;24DA -kcommaaccent;0137 -kdotbelow;1E33 -keharmenian;0584 -kehiragana;3051 -kekatakana;30B1 -kekatakanahalfwidth;FF79 -kenarmenian;056F -kesmallkatakana;30F6 -kgreenlandic;0138 -khabengali;0996 -khacyrillic;0445 -khadeva;0916 -khagujarati;0A96 -khagurmukhi;0A16 -khaharabic;062E -khahfinalarabic;FEA6 -khahinitialarabic;FEA7 -khahmedialarabic;FEA8 -kheicoptic;03E7 -khhadeva;0959 -khhagurmukhi;0A59 -khieukhacirclekorean;3278 -khieukhaparenkorean;3218 -khieukhcirclekorean;326A -khieukhkorean;314B -khieukhparenkorean;320A -khokhaithai;0E02 -khokhonthai;0E05 -khokhuatthai;0E03 -khokhwaithai;0E04 -khomutthai;0E5B -khook;0199 -khorakhangthai;0E06 -khzsquare;3391 -kihiragana;304D -kikatakana;30AD -kikatakanahalfwidth;FF77 -kiroguramusquare;3315 -kiromeetorusquare;3316 -kirosquare;3314 -kiyeokacirclekorean;326E -kiyeokaparenkorean;320E -kiyeokcirclekorean;3260 -kiyeokkorean;3131 -kiyeokparenkorean;3200 -kiyeoksioskorean;3133 -kjecyrillic;045C -klinebelow;1E35 -klsquare;3398 -kmcubedsquare;33A6 -kmonospace;FF4B -kmsquaredsquare;33A2 -kohiragana;3053 -kohmsquare;33C0 -kokaithai;0E01 -kokatakana;30B3 -kokatakanahalfwidth;FF7A -kooposquare;331E -koppacyrillic;0481 -koreanstandardsymbol;327F -koroniscmb;0343 -kparen;24A6 -kpasquare;33AA -ksicyrillic;046F -ktsquare;33CF -kturned;029E -kuhiragana;304F -kukatakana;30AF -kukatakanahalfwidth;FF78 -kvsquare;33B8 -kwsquare;33BE -l;006C -labengali;09B2 -lacute;013A -ladeva;0932 -lagujarati;0AB2 -lagurmukhi;0A32 -lakkhangyaothai;0E45 -lamaleffinalarabic;FEFC -lamalefhamzaabovefinalarabic;FEF8 -lamalefhamzaaboveisolatedarabic;FEF7 -lamalefhamzabelowfinalarabic;FEFA -lamalefhamzabelowisolatedarabic;FEF9 -lamalefisolatedarabic;FEFB -lamalefmaddaabovefinalarabic;FEF6 -lamalefmaddaaboveisolatedarabic;FEF5 -lamarabic;0644 -lambda;03BB -lambdastroke;019B -lamed;05DC -lameddagesh;FB3C -lameddageshhebrew;FB3C -lamedhebrew;05DC -lamedholam;05DC 05B9 -lamedholamdagesh;05DC 05B9 05BC -lamedholamdageshhebrew;05DC 05B9 05BC -lamedholamhebrew;05DC 05B9 -lamfinalarabic;FEDE -lamhahinitialarabic;FCCA -laminitialarabic;FEDF -lamjeeminitialarabic;FCC9 -lamkhahinitialarabic;FCCB -lamlamhehisolatedarabic;FDF2 -lammedialarabic;FEE0 -lammeemhahinitialarabic;FD88 -lammeeminitialarabic;FCCC -lammeemjeeminitialarabic;FEDF FEE4 FEA0 -lammeemkhahinitialarabic;FEDF FEE4 FEA8 -largecircle;25EF -lbar;019A -lbelt;026C -lbopomofo;310C -lcaron;013E -lcedilla;013C -lcircle;24DB -lcircumflexbelow;1E3D -lcommaaccent;013C -ldot;0140 -ldotaccent;0140 -ldotbelow;1E37 -ldotbelowmacron;1E39 -leftangleabovecmb;031A -lefttackbelowcmb;0318 -less;003C -lessequal;2264 -lessequalorgreater;22DA -lessmonospace;FF1C -lessorequivalent;2272 -lessorgreater;2276 -lessoverequal;2266 -lesssmall;FE64 -lezh;026E -lfblock;258C -lhookretroflex;026D -lira;20A4 -liwnarmenian;056C -lj;01C9 -ljecyrillic;0459 -ll;F6C0 -lladeva;0933 -llagujarati;0AB3 -llinebelow;1E3B -llladeva;0934 -llvocalicbengali;09E1 -llvocalicdeva;0961 -llvocalicvowelsignbengali;09E3 -llvocalicvowelsigndeva;0963 -lmiddletilde;026B -lmonospace;FF4C -lmsquare;33D0 -lochulathai;0E2C -logicaland;2227 -logicalnot;00AC -logicalnotreversed;2310 -logicalor;2228 -lolingthai;0E25 -longs;017F -lowlinecenterline;FE4E -lowlinecmb;0332 -lowlinedashed;FE4D -lozenge;25CA -lparen;24A7 -lslash;0142 -lsquare;2113 -lsuperior;F6EE -ltshade;2591 -luthai;0E26 -lvocalicbengali;098C -lvocalicdeva;090C -lvocalicvowelsignbengali;09E2 -lvocalicvowelsigndeva;0962 -lxsquare;33D3 -m;006D -mabengali;09AE -macron;00AF -macronbelowcmb;0331 -macroncmb;0304 -macronlowmod;02CD -macronmonospace;FFE3 -macute;1E3F -madeva;092E -magujarati;0AAE -magurmukhi;0A2E -mahapakhhebrew;05A4 -mahapakhlefthebrew;05A4 -mahiragana;307E -maichattawalowleftthai;F895 -maichattawalowrightthai;F894 -maichattawathai;0E4B -maichattawaupperleftthai;F893 -maieklowleftthai;F88C -maieklowrightthai;F88B -maiekthai;0E48 -maiekupperleftthai;F88A -maihanakatleftthai;F884 -maihanakatthai;0E31 -maitaikhuleftthai;F889 -maitaikhuthai;0E47 -maitholowleftthai;F88F -maitholowrightthai;F88E -maithothai;0E49 -maithoupperleftthai;F88D -maitrilowleftthai;F892 -maitrilowrightthai;F891 -maitrithai;0E4A -maitriupperleftthai;F890 -maiyamokthai;0E46 -makatakana;30DE -makatakanahalfwidth;FF8F -male;2642 -mansyonsquare;3347 -maqafhebrew;05BE -mars;2642 -masoracirclehebrew;05AF -masquare;3383 -mbopomofo;3107 -mbsquare;33D4 -mcircle;24DC -mcubedsquare;33A5 -mdotaccent;1E41 -mdotbelow;1E43 -meemarabic;0645 -meemfinalarabic;FEE2 -meeminitialarabic;FEE3 -meemmedialarabic;FEE4 -meemmeeminitialarabic;FCD1 -meemmeemisolatedarabic;FC48 -meetorusquare;334D -mehiragana;3081 -meizierasquare;337E -mekatakana;30E1 -mekatakanahalfwidth;FF92 -mem;05DE -memdagesh;FB3E -memdageshhebrew;FB3E -memhebrew;05DE -menarmenian;0574 -merkhahebrew;05A5 -merkhakefulahebrew;05A6 -merkhakefulalefthebrew;05A6 -merkhalefthebrew;05A5 -mhook;0271 -mhzsquare;3392 -middledotkatakanahalfwidth;FF65 -middot;00B7 -mieumacirclekorean;3272 -mieumaparenkorean;3212 -mieumcirclekorean;3264 -mieumkorean;3141 -mieumpansioskorean;3170 -mieumparenkorean;3204 -mieumpieupkorean;316E -mieumsioskorean;316F -mihiragana;307F -mikatakana;30DF -mikatakanahalfwidth;FF90 -minus;2212 -minusbelowcmb;0320 -minuscircle;2296 -minusmod;02D7 -minusplus;2213 -minute;2032 -miribaarusquare;334A -mirisquare;3349 -mlonglegturned;0270 -mlsquare;3396 -mmcubedsquare;33A3 -mmonospace;FF4D -mmsquaredsquare;339F -mohiragana;3082 -mohmsquare;33C1 -mokatakana;30E2 -mokatakanahalfwidth;FF93 -molsquare;33D6 -momathai;0E21 -moverssquare;33A7 -moverssquaredsquare;33A8 -mparen;24A8 -mpasquare;33AB -mssquare;33B3 -msuperior;F6EF -mturned;026F -mu1;00B5 -mu;00B5 -muasquare;3382 -muchgreater;226B -muchless;226A -mufsquare;338C -mugreek;03BC -mugsquare;338D -muhiragana;3080 -mukatakana;30E0 -mukatakanahalfwidth;FF91 -mulsquare;3395 -multiply;00D7 -mumsquare;339B -munahhebrew;05A3 -munahlefthebrew;05A3 -musicalnote;266A -musicalnotedbl;266B -musicflatsign;266D -musicsharpsign;266F -mussquare;33B2 -muvsquare;33B6 -muwsquare;33BC -mvmegasquare;33B9 -mvsquare;33B7 -mwmegasquare;33BF -mwsquare;33BD -n;006E -nabengali;09A8 -nabla;2207 -nacute;0144 -nadeva;0928 -nagujarati;0AA8 -nagurmukhi;0A28 -nahiragana;306A -nakatakana;30CA -nakatakanahalfwidth;FF85 -napostrophe;0149 -nasquare;3381 -nbopomofo;310B -nbspace;00A0 -ncaron;0148 -ncedilla;0146 -ncircle;24DD -ncircumflexbelow;1E4B -ncommaaccent;0146 -ndotaccent;1E45 -ndotbelow;1E47 -nehiragana;306D -nekatakana;30CD -nekatakanahalfwidth;FF88 -newsheqelsign;20AA -nfsquare;338B -ngabengali;0999 -ngadeva;0919 -ngagujarati;0A99 -ngagurmukhi;0A19 -ngonguthai;0E07 -nhiragana;3093 -nhookleft;0272 -nhookretroflex;0273 -nieunacirclekorean;326F -nieunaparenkorean;320F -nieuncieuckorean;3135 -nieuncirclekorean;3261 -nieunhieuhkorean;3136 -nieunkorean;3134 -nieunpansioskorean;3168 -nieunparenkorean;3201 -nieunsioskorean;3167 -nieuntikeutkorean;3166 -nihiragana;306B -nikatakana;30CB -nikatakanahalfwidth;FF86 -nikhahitleftthai;F899 -nikhahitthai;0E4D -nine;0039 -ninearabic;0669 -ninebengali;09EF -ninecircle;2468 -ninecircleinversesansserif;2792 -ninedeva;096F -ninegujarati;0AEF -ninegurmukhi;0A6F -ninehackarabic;0669 -ninehangzhou;3029 -nineideographicparen;3228 -nineinferior;2089 -ninemonospace;FF19 -nineoldstyle;F739 -nineparen;247C -nineperiod;2490 -ninepersian;06F9 -nineroman;2178 -ninesuperior;2079 -nineteencircle;2472 -nineteenparen;2486 -nineteenperiod;249A -ninethai;0E59 -nj;01CC -njecyrillic;045A -nkatakana;30F3 -nkatakanahalfwidth;FF9D -nlegrightlong;019E -nlinebelow;1E49 -nmonospace;FF4E -nmsquare;339A -nnabengali;09A3 -nnadeva;0923 -nnagujarati;0AA3 -nnagurmukhi;0A23 -nnnadeva;0929 -nohiragana;306E -nokatakana;30CE -nokatakanahalfwidth;FF89 -nonbreakingspace;00A0 -nonenthai;0E13 -nonuthai;0E19 -noonarabic;0646 -noonfinalarabic;FEE6 -noonghunnaarabic;06BA -noonghunnafinalarabic;FB9F -noonhehinitialarabic;FEE7 FEEC -nooninitialarabic;FEE7 -noonjeeminitialarabic;FCD2 -noonjeemisolatedarabic;FC4B -noonmedialarabic;FEE8 -noonmeeminitialarabic;FCD5 -noonmeemisolatedarabic;FC4E -noonnoonfinalarabic;FC8D -notcontains;220C -notelement;2209 -notelementof;2209 -notequal;2260 -notgreater;226F -notgreaternorequal;2271 -notgreaternorless;2279 -notidentical;2262 -notless;226E -notlessnorequal;2270 -notparallel;2226 -notprecedes;2280 -notsubset;2284 -notsucceeds;2281 -notsuperset;2285 -nowarmenian;0576 -nparen;24A9 -nssquare;33B1 -nsuperior;207F -ntilde;00F1 -nu;03BD -nuhiragana;306C -nukatakana;30CC -nukatakanahalfwidth;FF87 -nuktabengali;09BC -nuktadeva;093C -nuktagujarati;0ABC -nuktagurmukhi;0A3C -numbersign;0023 -numbersignmonospace;FF03 -numbersignsmall;FE5F -numeralsigngreek;0374 -numeralsignlowergreek;0375 -numero;2116 -nun;05E0 -nundagesh;FB40 -nundageshhebrew;FB40 -nunhebrew;05E0 -nvsquare;33B5 -nwsquare;33BB -nyabengali;099E -nyadeva;091E -nyagujarati;0A9E -nyagurmukhi;0A1E -o;006F -oacute;00F3 -oangthai;0E2D -obarred;0275 -obarredcyrillic;04E9 -obarreddieresiscyrillic;04EB -obengali;0993 -obopomofo;311B -obreve;014F -ocandradeva;0911 -ocandragujarati;0A91 -ocandravowelsigndeva;0949 -ocandravowelsigngujarati;0AC9 -ocaron;01D2 -ocircle;24DE -ocircumflex;00F4 -ocircumflexacute;1ED1 -ocircumflexdotbelow;1ED9 -ocircumflexgrave;1ED3 -ocircumflexhookabove;1ED5 -ocircumflextilde;1ED7 -ocyrillic;043E -odblacute;0151 -odblgrave;020D -odeva;0913 -odieresis;00F6 -odieresiscyrillic;04E7 -odotbelow;1ECD -oe;0153 -oekorean;315A -ogonek;02DB -ogonekcmb;0328 -ograve;00F2 -ogujarati;0A93 -oharmenian;0585 -ohiragana;304A -ohookabove;1ECF -ohorn;01A1 -ohornacute;1EDB -ohorndotbelow;1EE3 -ohorngrave;1EDD -ohornhookabove;1EDF -ohorntilde;1EE1 -ohungarumlaut;0151 -oi;01A3 -oinvertedbreve;020F -okatakana;30AA -okatakanahalfwidth;FF75 -okorean;3157 -olehebrew;05AB -omacron;014D -omacronacute;1E53 -omacrongrave;1E51 -omdeva;0950 -omega;03C9 -omega1;03D6 -omegacyrillic;0461 -omegalatinclosed;0277 -omegaroundcyrillic;047B -omegatitlocyrillic;047D -omegatonos;03CE -omgujarati;0AD0 -omicron;03BF -omicrontonos;03CC -omonospace;FF4F -one;0031 -onearabic;0661 -onebengali;09E7 -onecircle;2460 -onecircleinversesansserif;278A -onedeva;0967 -onedotenleader;2024 -oneeighth;215B -onefitted;F6DC -onegujarati;0AE7 -onegurmukhi;0A67 -onehackarabic;0661 -onehalf;00BD -onehangzhou;3021 -oneideographicparen;3220 -oneinferior;2081 -onemonospace;FF11 -onenumeratorbengali;09F4 -oneoldstyle;F731 -oneparen;2474 -oneperiod;2488 -onepersian;06F1 -onequarter;00BC -oneroman;2170 -onesuperior;00B9 -onethai;0E51 -onethird;2153 -oogonek;01EB -oogonekmacron;01ED -oogurmukhi;0A13 -oomatragurmukhi;0A4B -oopen;0254 -oparen;24AA -openbullet;25E6 -option;2325 -ordfeminine;00AA -ordmasculine;00BA -orthogonal;221F -oshortdeva;0912 -oshortvowelsigndeva;094A -oslash;00F8 -oslashacute;01FF -osmallhiragana;3049 -osmallkatakana;30A9 -osmallkatakanahalfwidth;FF6B -ostrokeacute;01FF -osuperior;F6F0 -otcyrillic;047F -otilde;00F5 -otildeacute;1E4D -otildedieresis;1E4F -oubopomofo;3121 -overline;203E -overlinecenterline;FE4A -overlinecmb;0305 -overlinedashed;FE49 -overlinedblwavy;FE4C -overlinewavy;FE4B -overscore;00AF -ovowelsignbengali;09CB -ovowelsigndeva;094B -ovowelsigngujarati;0ACB -p;0070 -paampssquare;3380 -paasentosquare;332B -pabengali;09AA -pacute;1E55 -padeva;092A -pagedown;21DF -pageup;21DE -pagujarati;0AAA -pagurmukhi;0A2A -pahiragana;3071 -paiyannoithai;0E2F -pakatakana;30D1 -palatalizationcyrilliccmb;0484 -palochkacyrillic;04C0 -pansioskorean;317F -paragraph;00B6 -parallel;2225 -parenleft;0028 -parenleftaltonearabic;FD3E -parenleftbt;F8ED -parenleftex;F8EC -parenleftinferior;208D -parenleftmonospace;FF08 -parenleftsmall;FE59 -parenleftsuperior;207D -parenlefttp;F8EB -parenleftvertical;FE35 -parenright;0029 -parenrightaltonearabic;FD3F -parenrightbt;F8F8 -parenrightex;F8F7 -parenrightinferior;208E -parenrightmonospace;FF09 -parenrightsmall;FE5A -parenrightsuperior;207E -parenrighttp;F8F6 -parenrightvertical;FE36 -partialdiff;2202 -paseqhebrew;05C0 -pashtahebrew;0599 -pasquare;33A9 -patah;05B7 -patah11;05B7 -patah1d;05B7 -patah2a;05B7 -patahhebrew;05B7 -patahnarrowhebrew;05B7 -patahquarterhebrew;05B7 -patahwidehebrew;05B7 -pazerhebrew;05A1 -pbopomofo;3106 -pcircle;24DF -pdotaccent;1E57 -pe;05E4 -pecyrillic;043F -pedagesh;FB44 -pedageshhebrew;FB44 -peezisquare;333B -pefinaldageshhebrew;FB43 -peharabic;067E -peharmenian;057A -pehebrew;05E4 -pehfinalarabic;FB57 -pehinitialarabic;FB58 -pehiragana;307A -pehmedialarabic;FB59 -pekatakana;30DA -pemiddlehookcyrillic;04A7 -perafehebrew;FB4E -percent;0025 -percentarabic;066A -percentmonospace;FF05 -percentsmall;FE6A -period;002E -periodarmenian;0589 -periodcentered;00B7 -periodhalfwidth;FF61 -periodinferior;F6E7 -periodmonospace;FF0E -periodsmall;FE52 -periodsuperior;F6E8 -perispomenigreekcmb;0342 -perpendicular;22A5 -perthousand;2030 -peseta;20A7 -pfsquare;338A -phabengali;09AB -phadeva;092B -phagujarati;0AAB -phagurmukhi;0A2B -phi;03C6 -phi1;03D5 -phieuphacirclekorean;327A -phieuphaparenkorean;321A -phieuphcirclekorean;326C -phieuphkorean;314D -phieuphparenkorean;320C -philatin;0278 -phinthuthai;0E3A -phisymbolgreek;03D5 -phook;01A5 -phophanthai;0E1E -phophungthai;0E1C -phosamphaothai;0E20 -pi;03C0 -pieupacirclekorean;3273 -pieupaparenkorean;3213 -pieupcieuckorean;3176 -pieupcirclekorean;3265 -pieupkiyeokkorean;3172 -pieupkorean;3142 -pieupparenkorean;3205 -pieupsioskiyeokkorean;3174 -pieupsioskorean;3144 -pieupsiostikeutkorean;3175 -pieupthieuthkorean;3177 -pieuptikeutkorean;3173 -pihiragana;3074 -pikatakana;30D4 -pisymbolgreek;03D6 -piwrarmenian;0583 -plus;002B -plusbelowcmb;031F -pluscircle;2295 -plusminus;00B1 -plusmod;02D6 -plusmonospace;FF0B -plussmall;FE62 -plussuperior;207A -pmonospace;FF50 -pmsquare;33D8 -pohiragana;307D -pointingindexdownwhite;261F -pointingindexleftwhite;261C -pointingindexrightwhite;261E -pointingindexupwhite;261D -pokatakana;30DD -poplathai;0E1B -postalmark;3012 -postalmarkface;3020 -pparen;24AB -precedes;227A -prescription;211E -primemod;02B9 -primereversed;2035 -product;220F -projective;2305 -prolongedkana;30FC -propellor;2318 -propersubset;2282 -propersuperset;2283 -proportion;2237 -proportional;221D -psi;03C8 -psicyrillic;0471 -psilipneumatacyrilliccmb;0486 -pssquare;33B0 -puhiragana;3077 -pukatakana;30D7 -pvsquare;33B4 -pwsquare;33BA -q;0071 -qadeva;0958 -qadmahebrew;05A8 -qafarabic;0642 -qaffinalarabic;FED6 -qafinitialarabic;FED7 -qafmedialarabic;FED8 -qamats;05B8 -qamats10;05B8 -qamats1a;05B8 -qamats1c;05B8 -qamats27;05B8 -qamats29;05B8 -qamats33;05B8 -qamatsde;05B8 -qamatshebrew;05B8 -qamatsnarrowhebrew;05B8 -qamatsqatanhebrew;05B8 -qamatsqatannarrowhebrew;05B8 -qamatsqatanquarterhebrew;05B8 -qamatsqatanwidehebrew;05B8 -qamatsquarterhebrew;05B8 -qamatswidehebrew;05B8 -qarneyparahebrew;059F -qbopomofo;3111 -qcircle;24E0 -qhook;02A0 -qmonospace;FF51 -qof;05E7 -qofdagesh;FB47 -qofdageshhebrew;FB47 -qofhatafpatah;05E7 05B2 -qofhatafpatahhebrew;05E7 05B2 -qofhatafsegol;05E7 05B1 -qofhatafsegolhebrew;05E7 05B1 -qofhebrew;05E7 -qofhiriq;05E7 05B4 -qofhiriqhebrew;05E7 05B4 -qofholam;05E7 05B9 -qofholamhebrew;05E7 05B9 -qofpatah;05E7 05B7 -qofpatahhebrew;05E7 05B7 -qofqamats;05E7 05B8 -qofqamatshebrew;05E7 05B8 -qofqubuts;05E7 05BB -qofqubutshebrew;05E7 05BB -qofsegol;05E7 05B6 -qofsegolhebrew;05E7 05B6 -qofsheva;05E7 05B0 -qofshevahebrew;05E7 05B0 -qoftsere;05E7 05B5 -qoftserehebrew;05E7 05B5 -qparen;24AC -quarternote;2669 -qubuts;05BB -qubuts18;05BB -qubuts25;05BB -qubuts31;05BB -qubutshebrew;05BB -qubutsnarrowhebrew;05BB -qubutsquarterhebrew;05BB -qubutswidehebrew;05BB -question;003F -questionarabic;061F -questionarmenian;055E -questiondown;00BF -questiondownsmall;F7BF -questiongreek;037E -questionmonospace;FF1F -questionsmall;F73F -quotedbl;0022 -quotedblbase;201E -quotedblleft;201C -quotedblmonospace;FF02 -quotedblprime;301E -quotedblprimereversed;301D -quotedblright;201D -quoteleft;2018 -quoteleftreversed;201B -quotereversed;201B -quoteright;2019 -quoterightn;0149 -quotesinglbase;201A -quotesingle;0027 -quotesinglemonospace;FF07 -r;0072 -raarmenian;057C -rabengali;09B0 -racute;0155 -radeva;0930 -radical;221A -radicalex;F8E5 -radoverssquare;33AE -radoverssquaredsquare;33AF -radsquare;33AD -rafe;05BF -rafehebrew;05BF -ragujarati;0AB0 -ragurmukhi;0A30 -rahiragana;3089 -rakatakana;30E9 -rakatakanahalfwidth;FF97 -ralowerdiagonalbengali;09F1 -ramiddlediagonalbengali;09F0 -ramshorn;0264 -ratio;2236 -rbopomofo;3116 -rcaron;0159 -rcedilla;0157 -rcircle;24E1 -rcommaaccent;0157 -rdblgrave;0211 -rdotaccent;1E59 -rdotbelow;1E5B -rdotbelowmacron;1E5D -referencemark;203B -reflexsubset;2286 -reflexsuperset;2287 -registered;00AE -registersans;F8E8 -registerserif;F6DA -reharabic;0631 -reharmenian;0580 -rehfinalarabic;FEAE -rehiragana;308C -rehyehaleflamarabic;0631 FEF3 FE8E 0644 -rekatakana;30EC -rekatakanahalfwidth;FF9A -resh;05E8 -reshdageshhebrew;FB48 -reshhatafpatah;05E8 05B2 -reshhatafpatahhebrew;05E8 05B2 -reshhatafsegol;05E8 05B1 -reshhatafsegolhebrew;05E8 05B1 -reshhebrew;05E8 -reshhiriq;05E8 05B4 -reshhiriqhebrew;05E8 05B4 -reshholam;05E8 05B9 -reshholamhebrew;05E8 05B9 -reshpatah;05E8 05B7 -reshpatahhebrew;05E8 05B7 -reshqamats;05E8 05B8 -reshqamatshebrew;05E8 05B8 -reshqubuts;05E8 05BB -reshqubutshebrew;05E8 05BB -reshsegol;05E8 05B6 -reshsegolhebrew;05E8 05B6 -reshsheva;05E8 05B0 -reshshevahebrew;05E8 05B0 -reshtsere;05E8 05B5 -reshtserehebrew;05E8 05B5 -reversedtilde;223D -reviahebrew;0597 -reviamugrashhebrew;0597 -revlogicalnot;2310 -rfishhook;027E -rfishhookreversed;027F -rhabengali;09DD -rhadeva;095D -rho;03C1 -rhook;027D -rhookturned;027B -rhookturnedsuperior;02B5 -rhosymbolgreek;03F1 -rhotichookmod;02DE -rieulacirclekorean;3271 -rieulaparenkorean;3211 -rieulcirclekorean;3263 -rieulhieuhkorean;3140 -rieulkiyeokkorean;313A -rieulkiyeoksioskorean;3169 -rieulkorean;3139 -rieulmieumkorean;313B -rieulpansioskorean;316C -rieulparenkorean;3203 -rieulphieuphkorean;313F -rieulpieupkorean;313C -rieulpieupsioskorean;316B -rieulsioskorean;313D -rieulthieuthkorean;313E -rieultikeutkorean;316A -rieulyeorinhieuhkorean;316D -rightangle;221F -righttackbelowcmb;0319 -righttriangle;22BF -rihiragana;308A -rikatakana;30EA -rikatakanahalfwidth;FF98 -ring;02DA -ringbelowcmb;0325 -ringcmb;030A -ringhalfleft;02BF -ringhalfleftarmenian;0559 -ringhalfleftbelowcmb;031C -ringhalfleftcentered;02D3 -ringhalfright;02BE -ringhalfrightbelowcmb;0339 -ringhalfrightcentered;02D2 -rinvertedbreve;0213 -rittorusquare;3351 -rlinebelow;1E5F -rlongleg;027C -rlonglegturned;027A -rmonospace;FF52 -rohiragana;308D -rokatakana;30ED -rokatakanahalfwidth;FF9B -roruathai;0E23 -rparen;24AD -rrabengali;09DC -rradeva;0931 -rragurmukhi;0A5C -rreharabic;0691 -rrehfinalarabic;FB8D -rrvocalicbengali;09E0 -rrvocalicdeva;0960 -rrvocalicgujarati;0AE0 -rrvocalicvowelsignbengali;09C4 -rrvocalicvowelsigndeva;0944 -rrvocalicvowelsigngujarati;0AC4 -rsuperior;F6F1 -rtblock;2590 -rturned;0279 -rturnedsuperior;02B4 -ruhiragana;308B -rukatakana;30EB -rukatakanahalfwidth;FF99 -rupeemarkbengali;09F2 -rupeesignbengali;09F3 -rupiah;F6DD -ruthai;0E24 -rvocalicbengali;098B -rvocalicdeva;090B -rvocalicgujarati;0A8B -rvocalicvowelsignbengali;09C3 -rvocalicvowelsigndeva;0943 -rvocalicvowelsigngujarati;0AC3 -s;0073 -sabengali;09B8 -sacute;015B -sacutedotaccent;1E65 -sadarabic;0635 -sadeva;0938 -sadfinalarabic;FEBA -sadinitialarabic;FEBB -sadmedialarabic;FEBC -sagujarati;0AB8 -sagurmukhi;0A38 -sahiragana;3055 -sakatakana;30B5 -sakatakanahalfwidth;FF7B -sallallahoualayhewasallamarabic;FDFA -samekh;05E1 -samekhdagesh;FB41 -samekhdageshhebrew;FB41 -samekhhebrew;05E1 -saraaathai;0E32 -saraaethai;0E41 -saraaimaimalaithai;0E44 -saraaimaimuanthai;0E43 -saraamthai;0E33 -saraathai;0E30 -saraethai;0E40 -saraiileftthai;F886 -saraiithai;0E35 -saraileftthai;F885 -saraithai;0E34 -saraothai;0E42 -saraueeleftthai;F888 -saraueethai;0E37 -saraueleftthai;F887 -sarauethai;0E36 -sarauthai;0E38 -sarauuthai;0E39 -sbopomofo;3119 -scaron;0161 -scarondotaccent;1E67 -scedilla;015F -schwa;0259 -schwacyrillic;04D9 -schwadieresiscyrillic;04DB -schwahook;025A -scircle;24E2 -scircumflex;015D -scommaaccent;0219 -sdotaccent;1E61 -sdotbelow;1E63 -sdotbelowdotaccent;1E69 -seagullbelowcmb;033C -second;2033 -secondtonechinese;02CA -section;00A7 -seenarabic;0633 -seenfinalarabic;FEB2 -seeninitialarabic;FEB3 -seenmedialarabic;FEB4 -segol;05B6 -segol13;05B6 -segol1f;05B6 -segol2c;05B6 -segolhebrew;05B6 -segolnarrowhebrew;05B6 -segolquarterhebrew;05B6 -segoltahebrew;0592 -segolwidehebrew;05B6 -seharmenian;057D -sehiragana;305B -sekatakana;30BB -sekatakanahalfwidth;FF7E -semicolon;003B -semicolonarabic;061B -semicolonmonospace;FF1B -semicolonsmall;FE54 -semivoicedmarkkana;309C -semivoicedmarkkanahalfwidth;FF9F -sentisquare;3322 -sentosquare;3323 -seven;0037 -sevenarabic;0667 -sevenbengali;09ED -sevencircle;2466 -sevencircleinversesansserif;2790 -sevendeva;096D -seveneighths;215E -sevengujarati;0AED -sevengurmukhi;0A6D -sevenhackarabic;0667 -sevenhangzhou;3027 -sevenideographicparen;3226 -seveninferior;2087 -sevenmonospace;FF17 -sevenoldstyle;F737 -sevenparen;247A -sevenperiod;248E -sevenpersian;06F7 -sevenroman;2176 -sevensuperior;2077 -seventeencircle;2470 -seventeenparen;2484 -seventeenperiod;2498 -seventhai;0E57 -sfthyphen;00AD -shaarmenian;0577 -shabengali;09B6 -shacyrillic;0448 -shaddaarabic;0651 -shaddadammaarabic;FC61 -shaddadammatanarabic;FC5E -shaddafathaarabic;FC60 -shaddafathatanarabic;0651 064B -shaddakasraarabic;FC62 -shaddakasratanarabic;FC5F -shade;2592 -shadedark;2593 -shadelight;2591 -shademedium;2592 -shadeva;0936 -shagujarati;0AB6 -shagurmukhi;0A36 -shalshelethebrew;0593 -shbopomofo;3115 -shchacyrillic;0449 -sheenarabic;0634 -sheenfinalarabic;FEB6 -sheeninitialarabic;FEB7 -sheenmedialarabic;FEB8 -sheicoptic;03E3 -sheqel;20AA -sheqelhebrew;20AA -sheva;05B0 -sheva115;05B0 -sheva15;05B0 -sheva22;05B0 -sheva2e;05B0 -shevahebrew;05B0 -shevanarrowhebrew;05B0 -shevaquarterhebrew;05B0 -shevawidehebrew;05B0 -shhacyrillic;04BB -shimacoptic;03ED -shin;05E9 -shindagesh;FB49 -shindageshhebrew;FB49 -shindageshshindot;FB2C -shindageshshindothebrew;FB2C -shindageshsindot;FB2D -shindageshsindothebrew;FB2D -shindothebrew;05C1 -shinhebrew;05E9 -shinshindot;FB2A -shinshindothebrew;FB2A -shinsindot;FB2B -shinsindothebrew;FB2B -shook;0282 -sigma;03C3 -sigma1;03C2 -sigmafinal;03C2 -sigmalunatesymbolgreek;03F2 -sihiragana;3057 -sikatakana;30B7 -sikatakanahalfwidth;FF7C -siluqhebrew;05BD -siluqlefthebrew;05BD -similar;223C -sindothebrew;05C2 -siosacirclekorean;3274 -siosaparenkorean;3214 -sioscieuckorean;317E -sioscirclekorean;3266 -sioskiyeokkorean;317A -sioskorean;3145 -siosnieunkorean;317B -siosparenkorean;3206 -siospieupkorean;317D -siostikeutkorean;317C -six;0036 -sixarabic;0666 -sixbengali;09EC -sixcircle;2465 -sixcircleinversesansserif;278F -sixdeva;096C -sixgujarati;0AEC -sixgurmukhi;0A6C -sixhackarabic;0666 -sixhangzhou;3026 -sixideographicparen;3225 -sixinferior;2086 -sixmonospace;FF16 -sixoldstyle;F736 -sixparen;2479 -sixperiod;248D -sixpersian;06F6 -sixroman;2175 -sixsuperior;2076 -sixteencircle;246F -sixteencurrencydenominatorbengali;09F9 -sixteenparen;2483 -sixteenperiod;2497 -sixthai;0E56 -slash;002F -slashmonospace;FF0F -slong;017F -slongdotaccent;1E9B -smileface;263A -smonospace;FF53 -sofpasuqhebrew;05C3 -softhyphen;00AD -softsigncyrillic;044C -sohiragana;305D -sokatakana;30BD -sokatakanahalfwidth;FF7F -soliduslongoverlaycmb;0338 -solidusshortoverlaycmb;0337 -sorusithai;0E29 -sosalathai;0E28 -sosothai;0E0B -sosuathai;0E2A -space;0020 -spacehackarabic;0020 -spade;2660 -spadesuitblack;2660 -spadesuitwhite;2664 -sparen;24AE -squarebelowcmb;033B -squarecc;33C4 -squarecm;339D -squarediagonalcrosshatchfill;25A9 -squarehorizontalfill;25A4 -squarekg;338F -squarekm;339E -squarekmcapital;33CE -squareln;33D1 -squarelog;33D2 -squaremg;338E -squaremil;33D5 -squaremm;339C -squaremsquared;33A1 -squareorthogonalcrosshatchfill;25A6 -squareupperlefttolowerrightfill;25A7 -squareupperrighttolowerleftfill;25A8 -squareverticalfill;25A5 -squarewhitewithsmallblack;25A3 -srsquare;33DB -ssabengali;09B7 -ssadeva;0937 -ssagujarati;0AB7 -ssangcieuckorean;3149 -ssanghieuhkorean;3185 -ssangieungkorean;3180 -ssangkiyeokkorean;3132 -ssangnieunkorean;3165 -ssangpieupkorean;3143 -ssangsioskorean;3146 -ssangtikeutkorean;3138 -ssuperior;F6F2 -sterling;00A3 -sterlingmonospace;FFE1 -strokelongoverlaycmb;0336 -strokeshortoverlaycmb;0335 -subset;2282 -subsetnotequal;228A -subsetorequal;2286 -succeeds;227B -suchthat;220B -suhiragana;3059 -sukatakana;30B9 -sukatakanahalfwidth;FF7D -sukunarabic;0652 -summation;2211 -sun;263C -superset;2283 -supersetnotequal;228B -supersetorequal;2287 -svsquare;33DC -syouwaerasquare;337C -t;0074 -tabengali;09A4 -tackdown;22A4 -tackleft;22A3 -tadeva;0924 -tagujarati;0AA4 -tagurmukhi;0A24 -taharabic;0637 -tahfinalarabic;FEC2 -tahinitialarabic;FEC3 -tahiragana;305F -tahmedialarabic;FEC4 -taisyouerasquare;337D -takatakana;30BF -takatakanahalfwidth;FF80 -tatweelarabic;0640 -tau;03C4 -tav;05EA -tavdages;FB4A -tavdagesh;FB4A -tavdageshhebrew;FB4A -tavhebrew;05EA -tbar;0167 -tbopomofo;310A -tcaron;0165 -tccurl;02A8 -tcedilla;0163 -tcheharabic;0686 -tchehfinalarabic;FB7B -tchehinitialarabic;FB7C -tchehmedialarabic;FB7D -tchehmeeminitialarabic;FB7C FEE4 -tcircle;24E3 -tcircumflexbelow;1E71 -tcommaaccent;0163 -tdieresis;1E97 -tdotaccent;1E6B -tdotbelow;1E6D -tecyrillic;0442 -tedescendercyrillic;04AD -teharabic;062A -tehfinalarabic;FE96 -tehhahinitialarabic;FCA2 -tehhahisolatedarabic;FC0C -tehinitialarabic;FE97 -tehiragana;3066 -tehjeeminitialarabic;FCA1 -tehjeemisolatedarabic;FC0B -tehmarbutaarabic;0629 -tehmarbutafinalarabic;FE94 -tehmedialarabic;FE98 -tehmeeminitialarabic;FCA4 -tehmeemisolatedarabic;FC0E -tehnoonfinalarabic;FC73 -tekatakana;30C6 -tekatakanahalfwidth;FF83 -telephone;2121 -telephoneblack;260E -telishagedolahebrew;05A0 -telishaqetanahebrew;05A9 -tencircle;2469 -tenideographicparen;3229 -tenparen;247D -tenperiod;2491 -tenroman;2179 -tesh;02A7 -tet;05D8 -tetdagesh;FB38 -tetdageshhebrew;FB38 -tethebrew;05D8 -tetsecyrillic;04B5 -tevirhebrew;059B -tevirlefthebrew;059B -thabengali;09A5 -thadeva;0925 -thagujarati;0AA5 -thagurmukhi;0A25 -thalarabic;0630 -thalfinalarabic;FEAC -thanthakhatlowleftthai;F898 -thanthakhatlowrightthai;F897 -thanthakhatthai;0E4C -thanthakhatupperleftthai;F896 -theharabic;062B -thehfinalarabic;FE9A -thehinitialarabic;FE9B -thehmedialarabic;FE9C -thereexists;2203 -therefore;2234 -theta;03B8 -theta1;03D1 -thetasymbolgreek;03D1 -thieuthacirclekorean;3279 -thieuthaparenkorean;3219 -thieuthcirclekorean;326B -thieuthkorean;314C -thieuthparenkorean;320B -thirteencircle;246C -thirteenparen;2480 -thirteenperiod;2494 -thonangmonthothai;0E11 -thook;01AD -thophuthaothai;0E12 -thorn;00FE -thothahanthai;0E17 -thothanthai;0E10 -thothongthai;0E18 -thothungthai;0E16 -thousandcyrillic;0482 -thousandsseparatorarabic;066C -thousandsseparatorpersian;066C -three;0033 -threearabic;0663 -threebengali;09E9 -threecircle;2462 -threecircleinversesansserif;278C -threedeva;0969 -threeeighths;215C -threegujarati;0AE9 -threegurmukhi;0A69 -threehackarabic;0663 -threehangzhou;3023 -threeideographicparen;3222 -threeinferior;2083 -threemonospace;FF13 -threenumeratorbengali;09F6 -threeoldstyle;F733 -threeparen;2476 -threeperiod;248A -threepersian;06F3 -threequarters;00BE -threequartersemdash;F6DE -threeroman;2172 -threesuperior;00B3 -threethai;0E53 -thzsquare;3394 -tihiragana;3061 -tikatakana;30C1 -tikatakanahalfwidth;FF81 -tikeutacirclekorean;3270 -tikeutaparenkorean;3210 -tikeutcirclekorean;3262 -tikeutkorean;3137 -tikeutparenkorean;3202 -tilde;02DC -tildebelowcmb;0330 -tildecmb;0303 -tildecomb;0303 -tildedoublecmb;0360 -tildeoperator;223C -tildeoverlaycmb;0334 -tildeverticalcmb;033E -timescircle;2297 -tipehahebrew;0596 -tipehalefthebrew;0596 -tippigurmukhi;0A70 -titlocyrilliccmb;0483 -tiwnarmenian;057F -tlinebelow;1E6F -tmonospace;FF54 -toarmenian;0569 -tohiragana;3068 -tokatakana;30C8 -tokatakanahalfwidth;FF84 -tonebarextrahighmod;02E5 -tonebarextralowmod;02E9 -tonebarhighmod;02E6 -tonebarlowmod;02E8 -tonebarmidmod;02E7 -tonefive;01BD -tonesix;0185 -tonetwo;01A8 -tonos;0384 -tonsquare;3327 -topatakthai;0E0F -tortoiseshellbracketleft;3014 -tortoiseshellbracketleftsmall;FE5D -tortoiseshellbracketleftvertical;FE39 -tortoiseshellbracketright;3015 -tortoiseshellbracketrightsmall;FE5E -tortoiseshellbracketrightvertical;FE3A -totaothai;0E15 -tpalatalhook;01AB -tparen;24AF -trademark;2122 -trademarksans;F8EA -trademarkserif;F6DB -tretroflexhook;0288 -triagdn;25BC -triaglf;25C4 -triagrt;25BA -triagup;25B2 -ts;02A6 -tsadi;05E6 -tsadidagesh;FB46 -tsadidageshhebrew;FB46 -tsadihebrew;05E6 -tsecyrillic;0446 -tsere;05B5 -tsere12;05B5 -tsere1e;05B5 -tsere2b;05B5 -tserehebrew;05B5 -tserenarrowhebrew;05B5 -tserequarterhebrew;05B5 -tserewidehebrew;05B5 -tshecyrillic;045B -tsuperior;F6F3 -ttabengali;099F -ttadeva;091F -ttagujarati;0A9F -ttagurmukhi;0A1F -tteharabic;0679 -ttehfinalarabic;FB67 -ttehinitialarabic;FB68 -ttehmedialarabic;FB69 -tthabengali;09A0 -tthadeva;0920 -tthagujarati;0AA0 -tthagurmukhi;0A20 -tturned;0287 -tuhiragana;3064 -tukatakana;30C4 -tukatakanahalfwidth;FF82 -tusmallhiragana;3063 -tusmallkatakana;30C3 -tusmallkatakanahalfwidth;FF6F -twelvecircle;246B -twelveparen;247F -twelveperiod;2493 -twelveroman;217B -twentycircle;2473 -twentyhangzhou;5344 -twentyparen;2487 -twentyperiod;249B -two;0032 -twoarabic;0662 -twobengali;09E8 -twocircle;2461 -twocircleinversesansserif;278B -twodeva;0968 -twodotenleader;2025 -twodotleader;2025 -twodotleadervertical;FE30 -twogujarati;0AE8 -twogurmukhi;0A68 -twohackarabic;0662 -twohangzhou;3022 -twoideographicparen;3221 -twoinferior;2082 -twomonospace;FF12 -twonumeratorbengali;09F5 -twooldstyle;F732 -twoparen;2475 -twoperiod;2489 -twopersian;06F2 -tworoman;2171 -twostroke;01BB -twosuperior;00B2 -twothai;0E52 -twothirds;2154 -u;0075 -uacute;00FA -ubar;0289 -ubengali;0989 -ubopomofo;3128 -ubreve;016D -ucaron;01D4 -ucircle;24E4 -ucircumflex;00FB -ucircumflexbelow;1E77 -ucyrillic;0443 -udattadeva;0951 -udblacute;0171 -udblgrave;0215 -udeva;0909 -udieresis;00FC -udieresisacute;01D8 -udieresisbelow;1E73 -udieresiscaron;01DA -udieresiscyrillic;04F1 -udieresisgrave;01DC -udieresismacron;01D6 -udotbelow;1EE5 -ugrave;00F9 -ugujarati;0A89 -ugurmukhi;0A09 -uhiragana;3046 -uhookabove;1EE7 -uhorn;01B0 -uhornacute;1EE9 -uhorndotbelow;1EF1 -uhorngrave;1EEB -uhornhookabove;1EED -uhorntilde;1EEF -uhungarumlaut;0171 -uhungarumlautcyrillic;04F3 -uinvertedbreve;0217 -ukatakana;30A6 -ukatakanahalfwidth;FF73 -ukcyrillic;0479 -ukorean;315C -umacron;016B -umacroncyrillic;04EF -umacrondieresis;1E7B -umatragurmukhi;0A41 -umonospace;FF55 -underscore;005F -underscoredbl;2017 -underscoremonospace;FF3F -underscorevertical;FE33 -underscorewavy;FE4F -union;222A -universal;2200 -uogonek;0173 -uparen;24B0 -upblock;2580 -upperdothebrew;05C4 -upsilon;03C5 -upsilondieresis;03CB -upsilondieresistonos;03B0 -upsilonlatin;028A -upsilontonos;03CD -uptackbelowcmb;031D -uptackmod;02D4 -uragurmukhi;0A73 -uring;016F -ushortcyrillic;045E -usmallhiragana;3045 -usmallkatakana;30A5 -usmallkatakanahalfwidth;FF69 -ustraightcyrillic;04AF -ustraightstrokecyrillic;04B1 -utilde;0169 -utildeacute;1E79 -utildebelow;1E75 -uubengali;098A -uudeva;090A -uugujarati;0A8A -uugurmukhi;0A0A -uumatragurmukhi;0A42 -uuvowelsignbengali;09C2 -uuvowelsigndeva;0942 -uuvowelsigngujarati;0AC2 -uvowelsignbengali;09C1 -uvowelsigndeva;0941 -uvowelsigngujarati;0AC1 -v;0076 -vadeva;0935 -vagujarati;0AB5 -vagurmukhi;0A35 -vakatakana;30F7 -vav;05D5 -vavdagesh;FB35 -vavdagesh65;FB35 -vavdageshhebrew;FB35 -vavhebrew;05D5 -vavholam;FB4B -vavholamhebrew;FB4B -vavvavhebrew;05F0 -vavyodhebrew;05F1 -vcircle;24E5 -vdotbelow;1E7F -vecyrillic;0432 -veharabic;06A4 -vehfinalarabic;FB6B -vehinitialarabic;FB6C -vehmedialarabic;FB6D -vekatakana;30F9 -venus;2640 -verticalbar;007C -verticallineabovecmb;030D -verticallinebelowcmb;0329 -verticallinelowmod;02CC -verticallinemod;02C8 -vewarmenian;057E -vhook;028B -vikatakana;30F8 -viramabengali;09CD -viramadeva;094D -viramagujarati;0ACD -visargabengali;0983 -visargadeva;0903 -visargagujarati;0A83 -vmonospace;FF56 -voarmenian;0578 -voicediterationhiragana;309E -voicediterationkatakana;30FE -voicedmarkkana;309B -voicedmarkkanahalfwidth;FF9E -vokatakana;30FA -vparen;24B1 -vtilde;1E7D -vturned;028C -vuhiragana;3094 -vukatakana;30F4 -w;0077 -wacute;1E83 -waekorean;3159 -wahiragana;308F -wakatakana;30EF -wakatakanahalfwidth;FF9C -wakorean;3158 -wasmallhiragana;308E -wasmallkatakana;30EE -wattosquare;3357 -wavedash;301C -wavyunderscorevertical;FE34 -wawarabic;0648 -wawfinalarabic;FEEE -wawhamzaabovearabic;0624 -wawhamzaabovefinalarabic;FE86 -wbsquare;33DD -wcircle;24E6 -wcircumflex;0175 -wdieresis;1E85 -wdotaccent;1E87 -wdotbelow;1E89 -wehiragana;3091 -weierstrass;2118 -wekatakana;30F1 -wekorean;315E -weokorean;315D -wgrave;1E81 -whitebullet;25E6 -whitecircle;25CB -whitecircleinverse;25D9 -whitecornerbracketleft;300E -whitecornerbracketleftvertical;FE43 -whitecornerbracketright;300F -whitecornerbracketrightvertical;FE44 -whitediamond;25C7 -whitediamondcontainingblacksmalldiamond;25C8 -whitedownpointingsmalltriangle;25BF -whitedownpointingtriangle;25BD -whiteleftpointingsmalltriangle;25C3 -whiteleftpointingtriangle;25C1 -whitelenticularbracketleft;3016 -whitelenticularbracketright;3017 -whiterightpointingsmalltriangle;25B9 -whiterightpointingtriangle;25B7 -whitesmallsquare;25AB -whitesmilingface;263A -whitesquare;25A1 -whitestar;2606 -whitetelephone;260F -whitetortoiseshellbracketleft;3018 -whitetortoiseshellbracketright;3019 -whiteuppointingsmalltriangle;25B5 -whiteuppointingtriangle;25B3 -wihiragana;3090 -wikatakana;30F0 -wikorean;315F -wmonospace;FF57 -wohiragana;3092 -wokatakana;30F2 -wokatakanahalfwidth;FF66 -won;20A9 -wonmonospace;FFE6 -wowaenthai;0E27 -wparen;24B2 -wring;1E98 -wsuperior;02B7 -wturned;028D -wynn;01BF -x;0078 -xabovecmb;033D -xbopomofo;3112 -xcircle;24E7 -xdieresis;1E8D -xdotaccent;1E8B -xeharmenian;056D -xi;03BE -xmonospace;FF58 -xparen;24B3 -xsuperior;02E3 -y;0079 -yaadosquare;334E -yabengali;09AF -yacute;00FD -yadeva;092F -yaekorean;3152 -yagujarati;0AAF -yagurmukhi;0A2F -yahiragana;3084 -yakatakana;30E4 -yakatakanahalfwidth;FF94 -yakorean;3151 -yamakkanthai;0E4E -yasmallhiragana;3083 -yasmallkatakana;30E3 -yasmallkatakanahalfwidth;FF6C -yatcyrillic;0463 -ycircle;24E8 -ycircumflex;0177 -ydieresis;00FF -ydotaccent;1E8F -ydotbelow;1EF5 -yeharabic;064A -yehbarreearabic;06D2 -yehbarreefinalarabic;FBAF -yehfinalarabic;FEF2 -yehhamzaabovearabic;0626 -yehhamzaabovefinalarabic;FE8A -yehhamzaaboveinitialarabic;FE8B -yehhamzaabovemedialarabic;FE8C -yehinitialarabic;FEF3 -yehmedialarabic;FEF4 -yehmeeminitialarabic;FCDD -yehmeemisolatedarabic;FC58 -yehnoonfinalarabic;FC94 -yehthreedotsbelowarabic;06D1 -yekorean;3156 -yen;00A5 -yenmonospace;FFE5 -yeokorean;3155 -yeorinhieuhkorean;3186 -yerahbenyomohebrew;05AA -yerahbenyomolefthebrew;05AA -yericyrillic;044B -yerudieresiscyrillic;04F9 -yesieungkorean;3181 -yesieungpansioskorean;3183 -yesieungsioskorean;3182 -yetivhebrew;059A -ygrave;1EF3 -yhook;01B4 -yhookabove;1EF7 -yiarmenian;0575 -yicyrillic;0457 -yikorean;3162 -yinyang;262F -yiwnarmenian;0582 -ymonospace;FF59 -yod;05D9 -yoddagesh;FB39 -yoddageshhebrew;FB39 -yodhebrew;05D9 -yodyodhebrew;05F2 -yodyodpatahhebrew;FB1F -yohiragana;3088 -yoikorean;3189 -yokatakana;30E8 -yokatakanahalfwidth;FF96 -yokorean;315B -yosmallhiragana;3087 -yosmallkatakana;30E7 -yosmallkatakanahalfwidth;FF6E -yotgreek;03F3 -yoyaekorean;3188 -yoyakorean;3187 -yoyakthai;0E22 -yoyingthai;0E0D -yparen;24B4 -ypogegrammeni;037A -ypogegrammenigreekcmb;0345 -yr;01A6 -yring;1E99 -ysuperior;02B8 -ytilde;1EF9 -yturned;028E -yuhiragana;3086 -yuikorean;318C -yukatakana;30E6 -yukatakanahalfwidth;FF95 -yukorean;3160 -yusbigcyrillic;046B -yusbigiotifiedcyrillic;046D -yuslittlecyrillic;0467 -yuslittleiotifiedcyrillic;0469 -yusmallhiragana;3085 -yusmallkatakana;30E5 -yusmallkatakanahalfwidth;FF6D -yuyekorean;318B -yuyeokorean;318A -yyabengali;09DF -yyadeva;095F -z;007A -zaarmenian;0566 -zacute;017A -zadeva;095B -zagurmukhi;0A5B -zaharabic;0638 -zahfinalarabic;FEC6 -zahinitialarabic;FEC7 -zahiragana;3056 -zahmedialarabic;FEC8 -zainarabic;0632 -zainfinalarabic;FEB0 -zakatakana;30B6 -zaqefgadolhebrew;0595 -zaqefqatanhebrew;0594 -zarqahebrew;0598 -zayin;05D6 -zayindagesh;FB36 -zayindageshhebrew;FB36 -zayinhebrew;05D6 -zbopomofo;3117 -zcaron;017E -zcircle;24E9 -zcircumflex;1E91 -zcurl;0291 -zdot;017C -zdotaccent;017C -zdotbelow;1E93 -zecyrillic;0437 -zedescendercyrillic;0499 -zedieresiscyrillic;04DF -zehiragana;305C -zekatakana;30BC -zero;0030 -zeroarabic;0660 -zerobengali;09E6 -zerodeva;0966 -zerogujarati;0AE6 -zerogurmukhi;0A66 -zerohackarabic;0660 -zeroinferior;2080 -zeromonospace;FF10 -zerooldstyle;F730 -zeropersian;06F0 -zerosuperior;2070 -zerothai;0E50 -zerowidthjoiner;FEFF -zerowidthnonjoiner;200C -zerowidthspace;200B -zeta;03B6 -zhbopomofo;3113 -zhearmenian;056A -zhebrevecyrillic;04C2 -zhecyrillic;0436 -zhedescendercyrillic;0497 -zhedieresiscyrillic;04DD -zihiragana;3058 -zikatakana;30B8 -zinorhebrew;05AE -zlinebelow;1E95 -zmonospace;FF5A -zohiragana;305E -zokatakana;30BE -zparen;24B5 -zretroflexhook;0290 -zstroke;01B6 -zuhiragana;305A -zukatakana;30BA -#--end -# -# Name: Adobe Glyph List -# Table version: 1.2 -# Date: 22 Oct 1998 -# -# Description: -# -# The Adobe Glyph List (AGL) list relates Unicode values (UVs) to glyph -# names, and should be used only as described in the document "Unicode and -# Glyph Names," at -# http://partners.adobe.com/asn/developer/typeforum/unicodegn.html . -# -# The glyph name to UV relation is one to many. 12 glyph names are mapped to -# two UVs each; each UV has a separate entry. All other glyph names are -# mapped to one UV each. -# -# The Unicode Standard version 2.1 is used for all UVs outside of the Private -# Use area, except for 4 entries (see Revision History for 1.2 below). -# -# There are 1051 entries in this list, 171 of which are in the Corporate Use -# subarea (CUS). Refer to the document "Unicode Corporate Use Subarea as used -# by Adobe Systems," at -# http://partners.adobe.com/asn/developer/typeforum/corporateuse.txt -# for compatibility decompositions for these characters, and to the document -# "Unicode and Glyph Names" for more information the CUS. -# -# Format: Semicolon-delimited fields: -# -# (1) Standard UV or CUS UV. (4 uppercase hexadecimal digits) -# -# (2) Glyph name. (upper- and lowercase letters, digits) -# -# (3) Character names: Unicode character names for standard UVs, and -# descriptive names for CUS UVs. (uppercase letters, hyphen, space) -# -# (4) [optional] Comment. A comment of "Duplicate" indicates one of two -# UVs of a double-mapping. It is the UV that may be given a uni -# override, or the UV that is in the CUS, as described in the document -# "Unicode and Glyph Names." -# -# The entries are sorted by glyph name in increasing ASCII order; entries -# with the same glyph name are sorted in decreasing priority order. -# -# Lines starting with "#" are comments; blank lines should be ignored. -# -# Revision History: -# -# 1.2 [22 Oct 1998] -# -# Some Central European glyph names were remapped and the glyph "dotlessj" -# was added. Some entries in the table below have not changed but are -# included to provide a complete context for other glyphs that have been -# remapped or double-mapped. "-" means that the entry for that UV does not -# exist in the AGL. -# -# -------- ---------------------- ---------------- -------------- -# UV Character name AGL 1.1 AGL 1.2 -# (shortened) glyph name glyph name -# -------- ---------------------- ---------------- -------------- -# 015E/F S/s with cedilla S/scommaaccent S/scedilla -# 0162/3 T/t with cedilla T/tcommaaccent T/tcommaaccent -# 0218/9 S/s with comma below - S/scommaaccent -# 021A/B T/t with comma below - T/tcommaaccent -# 1E9E/F S/s with comma below S/scedilla - -# F6C1/2 S/s with cedilla S/scedilla S/scedilla -# F6BE dotless j - dotlessj -# -------- ---------------------- ---------------- -------------- -# -# The characters at U+1E9E/F in AGL 1.1, LATIN CAPITAL/SMALL LETTER S WITH -# COMMA BELOW, which are proposed new characters (see (b) in the notes for -# AGL 1.1 below), have since been reassigned by the Unicode Standard to new -# proposed values of U+0218/9. These characters, as well as U+021A/B, LATIN -# CAPITAL/SMALL LETTER T WITH COMMA BELOW, are not in the Unicode Standard -# 2.1. -# -# Entries with the same glyph name are now sorted in decreasing priority -# order instead of in increasing UV order. -# -# 1.1 [24 Nov 1997] -# -# a. The "Euro" glyph's UV assignment is changed from U+20A0 (EURO-CURRENCY -# SIGN) to U+20AC (EURO SIGN). While U+20AC is not defined in the -# Unicode Standard 2.0, it has been accepted by the Unicode Technical -# Committee for the next version of the Standard; it has not yet passed -# the ISO approval process as of 7 November '97. -# -# b. Glyphs "Scedilla" and "scedilla", which were assigned in the Corporate -# Use Subarea in AGL 1.0, are now additionally mapped to U+1E9E and -# U+1E9F respectively. These two UVs share the same Unicode approval -# status as the Euro glyph (see a. above). -# -# c. The "fraction" glyph is now additionally mapped to U+2215, to match -# Windows Glyph List 4. -# -# d. The descriptive name for glyph "onefitted", in the Corporate Use -# subarea, is changed from "TABULAR DIGIT ONE" to "PROPORTIONAL DIGIT -# ONE". -# -# 1.0 [17 Jul 1997] Original version -# -A;0041 -AE;00C6 -AEacute;01FC -AEsmall;F7E6 -Aacute;00C1 -Aacutesmall;F7E1 -Abreve;0102 -Acircumflex;00C2 -Acircumflexsmall;F7E2 -Acute;F6C9 -Acutesmall;F7B4 -Adieresis;00C4 -Adieresissmall;F7E4 -Agrave;00C0 -Agravesmall;F7E0 -Alpha;0391 -Alphatonos;0386 -Amacron;0100 -Aogonek;0104 -Aring;00C5 -Aringacute;01FA -Aringsmall;F7E5 -Asmall;F761 -Atilde;00C3 -Atildesmall;F7E3 -B;0042 -Beta;0392 -Brevesmall;F6F4 -Bsmall;F762 -C;0043 -Cacute;0106 -Caron;F6CA -Caronsmall;F6F5 -Ccaron;010C -Ccedilla;00C7 -Ccedillasmall;F7E7 -Ccircumflex;0108 -Cdotaccent;010A -Cedillasmall;F7B8 -Chi;03A7 -Circumflexsmall;F6F6 -Csmall;F763 -D;0044 -Dcaron;010E -Dcroat;0110 -Delta;0394 -Dieresis;F6CB -DieresisAcute;F6CC -DieresisGrave;F6CD -Dieresissmall;F7A8 -Dotaccentsmall;F6F7 -Dsmall;F764 -E;0045 -Eacute;00C9 -Eacutesmall;F7E9 -Ebreve;0114 -Ecaron;011A -Ecircumflex;00CA -Ecircumflexsmall;F7EA -Edieresis;00CB -Edieresissmall;F7EB -Edotaccent;0116 -Egrave;00C8 -Egravesmall;F7E8 -Emacron;0112 -Eng;014A -Eogonek;0118 -Epsilon;0395 -Epsilontonos;0388 -Esmall;F765 -Eta;0397 -Etatonos;0389 -Eth;00D0 -Ethsmall;F7F0 -Euro;20AC -F;0046 -Fsmall;F766 -G;0047 -Gamma;0393 -Gbreve;011E -Gcaron;01E6 -Gcircumflex;011C -Gcommaaccent;0122 -Gdotaccent;0120 -Grave;F6CE -Gravesmall;F760 -Gsmall;F767 -H;0048 -H18533;25CF -H18543;25AA -H18551;25AB -H22073;25A1 -Hbar;0126 -Hcircumflex;0124 -Hsmall;F768 -Hungarumlaut;F6CF -Hungarumlautsmall;F6F8 -I;0049 -IJ;0132 -Iacute;00CD -Iacutesmall;F7ED -Ibreve;012C -Icircumflex;00CE -Icircumflexsmall;F7EE -Idieresis;00CF -Idieresissmall;F7EF -Idotaccent;0130 -Ifraktur;2111 -Igrave;00CC -Igravesmall;F7EC -Imacron;012A -Iogonek;012E -Iota;0399 -Iotadieresis;03AA -Iotatonos;038A -Ismall;F769 -Itilde;0128 -J;004A -Jcircumflex;0134 -Jsmall;F76A -K;004B -Kappa;039A -Kcommaaccent;0136 -Ksmall;F76B -L;004C -LL;F6BF -Lacute;0139 -Lambda;039B -Lcaron;013D -Lcommaaccent;013B -Ldot;013F -Lslash;0141 -Lslashsmall;F6F9 -Lsmall;F76C -M;004D -Macron;F6D0 -Macronsmall;F7AF -Msmall;F76D -Mu;039C -N;004E -Nacute;0143 -Ncaron;0147 -Ncommaaccent;0145 -Nsmall;F76E -Ntilde;00D1 -Ntildesmall;F7F1 -Nu;039D -O;004F -OE;0152 -OEsmall;F6FA -Oacute;00D3 -Oacutesmall;F7F3 -Obreve;014E -Ocircumflex;00D4 -Ocircumflexsmall;F7F4 -Odieresis;00D6 -Odieresissmall;F7F6 -Ogoneksmall;F6FB -Ograve;00D2 -Ogravesmall;F7F2 -Ohorn;01A0 -Ohungarumlaut;0150 -Omacron;014C -Omega;03A9 -Omegatonos;038F -Omicron;039F -Omicrontonos;038C -Oslash;00D8 -Oslashacute;01FE -Oslashsmall;F7F8 -Osmall;F76F -Otilde;00D5 -Otildesmall;F7F5 -P;0050 -Phi;03A6 -Pi;03A0 -Psi;03A8 -Psmall;F770 -Q;0051 -Qsmall;F771 -R;0052 -Racute;0154 -Rcaron;0158 -Rcommaaccent;0156 -Rfraktur;211C -Rho;03A1 -Ringsmall;F6FC -Rsmall;F772 -S;0053 -SF010000;250C -SF020000;2514 -SF030000;2510 -SF040000;2518 -SF050000;253C -SF060000;252C -SF070000;2534 -SF080000;251C -SF090000;2524 -SF100000;2500 -SF110000;2502 -SF190000;2561 -SF200000;2562 -SF210000;2556 -SF220000;2555 -SF230000;2563 -SF240000;2551 -SF250000;2557 -SF260000;255D -SF270000;255C -SF280000;255B -SF360000;255E -SF370000;255F -SF380000;255A -SF390000;2554 -SF400000;2569 -SF410000;2566 -SF420000;2560 -SF430000;2550 -SF440000;256C -SF450000;2567 -SF460000;2568 -SF470000;2564 -SF480000;2565 -SF490000;2559 -SF500000;2558 -SF510000;2552 -SF520000;2553 -SF530000;256B -SF540000;256A -Sacute;015A -Scaron;0160 -Scaronsmall;F6FD -Scedilla;015E -Scircumflex;015C -Scommaaccent;0218 -Sigma;03A3 -Ssmall;F773 -T;0054 -Tau;03A4 -Tbar;0166 -Tcaron;0164 -Tcommaaccent;0162 -Theta;0398 -Thorn;00DE -Thornsmall;F7FE -Tildesmall;F6FE -Tsmall;F774 -U;0055 -Uacute;00DA -Uacutesmall;F7FA -Ubreve;016C -Ucircumflex;00DB -Ucircumflexsmall;F7FB -Udieresis;00DC -Udieresissmall;F7FC -Ugrave;00D9 -Ugravesmall;F7F9 -Uhorn;01AF -Uhungarumlaut;0170 -Umacron;016A -Uogonek;0172 -Upsilon;03A5 -Upsilon1;03D2 -Upsilondieresis;03AB -Upsilontonos;038E -Uring;016E -Usmall;F775 -Utilde;0168 -V;0056 -Vsmall;F776 -W;0057 -Wacute;1E82 -Wcircumflex;0174 -Wdieresis;1E84 -Wgrave;1E80 -Wsmall;F777 -X;0058 -Xi;039E -Xsmall;F778 -Y;0059 -Yacute;00DD -Yacutesmall;F7FD -Ycircumflex;0176 -Ydieresis;0178 -Ydieresissmall;F7FF -Ygrave;1EF2 -Ysmall;F779 -Z;005A -Zacute;0179 -Zcaron;017D -Zcaronsmall;F6FF -Zdotaccent;017B -Zeta;0396 -Zsmall;F77A -a;0061 -aacute;00E1 -abreve;0103 -acircumflex;00E2 -acute;00B4 -acutecomb;0301 -adieresis;00E4 -ae;00E6 -aeacute;01FD -afii00208;2015 -afii10017;0410 -afii10018;0411 -afii10019;0412 -afii10020;0413 -afii10021;0414 -afii10022;0415 -afii10023;0401 -afii10024;0416 -afii10025;0417 -afii10026;0418 -afii10027;0419 -afii10028;041A -afii10029;041B -afii10030;041C -afii10031;041D -afii10032;041E -afii10033;041F -afii10034;0420 -afii10035;0421 -afii10036;0422 -afii10037;0423 -afii10038;0424 -afii10039;0425 -afii10040;0426 -afii10041;0427 -afii10042;0428 -afii10043;0429 -afii10044;042A -afii10045;042B -afii10046;042C -afii10047;042D -afii10048;042E -afii10049;042F -afii10050;0490 -afii10051;0402 -afii10052;0403 -afii10053;0404 -afii10054;0405 -afii10055;0406 -afii10056;0407 -afii10057;0408 -afii10058;0409 -afii10059;040A -afii10060;040B -afii10061;040C -afii10062;040E -afii10063;F6C4 -afii10064;F6C5 -afii10065;0430 -afii10066;0431 -afii10067;0432 -afii10068;0433 -afii10069;0434 -afii10070;0435 -afii10071;0451 -afii10072;0436 -afii10073;0437 -afii10074;0438 -afii10075;0439 -afii10076;043A -afii10077;043B -afii10078;043C -afii10079;043D -afii10080;043E -afii10081;043F -afii10082;0440 -afii10083;0441 -afii10084;0442 -afii10085;0443 -afii10086;0444 -afii10087;0445 -afii10088;0446 -afii10089;0447 -afii10090;0448 -afii10091;0449 -afii10092;044A -afii10093;044B -afii10094;044C -afii10095;044D -afii10096;044E -afii10097;044F -afii10098;0491 -afii10099;0452 -afii10100;0453 -afii10101;0454 -afii10102;0455 -afii10103;0456 -afii10104;0457 -afii10105;0458 -afii10106;0459 -afii10107;045A -afii10108;045B -afii10109;045C -afii10110;045E -afii10145;040F -afii10146;0462 -afii10147;0472 -afii10148;0474 -afii10192;F6C6 -afii10193;045F -afii10194;0463 -afii10195;0473 -afii10196;0475 -afii10831;F6C7 -afii10832;F6C8 -afii10846;04D9 -afii299;200E -afii300;200F -afii301;200D -afii57381;066A -afii57388;060C -afii57392;0660 -afii57393;0661 -afii57394;0662 -afii57395;0663 -afii57396;0664 -afii57397;0665 -afii57398;0666 -afii57399;0667 -afii57400;0668 -afii57401;0669 -afii57403;061B -afii57407;061F -afii57409;0621 -afii57410;0622 -afii57411;0623 -afii57412;0624 -afii57413;0625 -afii57414;0626 -afii57415;0627 -afii57416;0628 -afii57417;0629 -afii57418;062A -afii57419;062B -afii57420;062C -afii57421;062D -afii57422;062E -afii57423;062F -afii57424;0630 -afii57425;0631 -afii57426;0632 -afii57427;0633 -afii57428;0634 -afii57429;0635 -afii57430;0636 -afii57431;0637 -afii57432;0638 -afii57433;0639 -afii57434;063A -afii57440;0640 -afii57441;0641 -afii57442;0642 -afii57443;0643 -afii57444;0644 -afii57445;0645 -afii57446;0646 -afii57448;0648 -afii57449;0649 -afii57450;064A -afii57451;064B -afii57452;064C -afii57453;064D -afii57454;064E -afii57455;064F -afii57456;0650 -afii57457;0651 -afii57458;0652 -afii57470;0647 -afii57505;06A4 -afii57506;067E -afii57507;0686 -afii57508;0698 -afii57509;06AF -afii57511;0679 -afii57512;0688 -afii57513;0691 -afii57514;06BA -afii57519;06D2 -afii57534;06D5 -afii57636;20AA -afii57645;05BE -afii57658;05C3 -afii57664;05D0 -afii57665;05D1 -afii57666;05D2 -afii57667;05D3 -afii57668;05D4 -afii57669;05D5 -afii57670;05D6 -afii57671;05D7 -afii57672;05D8 -afii57673;05D9 -afii57674;05DA -afii57675;05DB -afii57676;05DC -afii57677;05DD -afii57678;05DE -afii57679;05DF -afii57680;05E0 -afii57681;05E1 -afii57682;05E2 -afii57683;05E3 -afii57684;05E4 -afii57685;05E5 -afii57686;05E6 -afii57687;05E7 -afii57688;05E8 -afii57689;05E9 -afii57690;05EA -afii57694;FB2A -afii57695;FB2B -afii57700;FB4B -afii57705;FB1F -afii57716;05F0 -afii57717;05F1 -afii57718;05F2 -afii57723;FB35 -afii57793;05B4 -afii57794;05B5 -afii57795;05B6 -afii57796;05BB -afii57797;05B8 -afii57798;05B7 -afii57799;05B0 -afii57800;05B2 -afii57801;05B1 -afii57802;05B3 -afii57803;05C2 -afii57804;05C1 -afii57806;05B9 -afii57807;05BC -afii57839;05BD -afii57841;05BF -afii57842;05C0 -afii57929;02BC -afii61248;2105 -afii61289;2113 -afii61352;2116 -afii61573;202C -afii61574;202D -afii61575;202E -afii61664;200C -afii63167;066D -afii64937;02BD -agrave;00E0 -aleph;2135 -alpha;03B1 -alphatonos;03AC -amacron;0101 -ampersand;0026 -ampersandsmall;F726 -angle;2220 -angleleft;2329 -angleright;232A -anoteleia;0387 -aogonek;0105 -approxequal;2248 -aring;00E5 -aringacute;01FB -arrowboth;2194 -arrowdblboth;21D4 -arrowdbldown;21D3 -arrowdblleft;21D0 -arrowdblright;21D2 -arrowdblup;21D1 -arrowdown;2193 -arrowhorizex;F8E7 -arrowleft;2190 -arrowright;2192 -arrowup;2191 -arrowupdn;2195 -arrowupdnbse;21A8 -arrowvertex;F8E6 -asciicircum;005E -asciitilde;007E -asterisk;002A -asteriskmath;2217 -asuperior;F6E9 -at;0040 -atilde;00E3 -b;0062 -backslash;005C -bar;007C -beta;03B2 -block;2588 -braceex;F8F4 -braceleft;007B -braceleftbt;F8F3 -braceleftmid;F8F2 -bracelefttp;F8F1 -braceright;007D -bracerightbt;F8FE -bracerightmid;F8FD -bracerighttp;F8FC -bracketleft;005B -bracketleftbt;F8F0 -bracketleftex;F8EF -bracketlefttp;F8EE -bracketright;005D -bracketrightbt;F8FB -bracketrightex;F8FA -bracketrighttp;F8F9 -breve;02D8 -brokenbar;00A6 -bsuperior;F6EA -bullet;2022 -c;0063 -cacute;0107 -caron;02C7 -carriagereturn;21B5 -ccaron;010D -ccedilla;00E7 -ccircumflex;0109 -cdotaccent;010B -cedilla;00B8 -cent;00A2 -centinferior;F6DF -centoldstyle;F7A2 -centsuperior;F6E0 -chi;03C7 -circle;25CB -circlemultiply;2297 -circleplus;2295 -circumflex;02C6 -club;2663 -colon;003A -colonmonetary;20A1 -comma;002C -commaaccent;F6C3 -commainferior;F6E1 -commasuperior;F6E2 -congruent;2245 -copyright;00A9 -copyrightsans;F8E9 -copyrightserif;F6D9 -currency;00A4 -cyrBreve;F6D1 -cyrFlex;F6D2 -cyrbreve;F6D4 -cyrflex;F6D5 -d;0064 -dagger;2020 -daggerdbl;2021 -dblGrave;F6D3 -dblgrave;F6D6 -dcaron;010F -dcroat;0111 -degree;00B0 -delta;03B4 -diamond;2666 -dieresis;00A8 -dieresisacute;F6D7 -dieresisgrave;F6D8 -dieresistonos;0385 -divide;00F7 -dkshade;2593 -dnblock;2584 -dollar;0024 -dollarinferior;F6E3 -dollaroldstyle;F724 -dollarsuperior;F6E4 -dong;20AB -dotaccent;02D9 -dotbelowcomb;0323 -dotlessi;0131 -dotlessj;F6BE -dotmath;22C5 -dsuperior;F6EB -e;0065 -eacute;00E9 -ebreve;0115 -ecaron;011B -ecircumflex;00EA -edieresis;00EB -edotaccent;0117 -egrave;00E8 -eight;0038 -eightinferior;2088 -eightoldstyle;F738 -eightsuperior;2078 -element;2208 -ellipsis;2026 -emacron;0113 -emdash;2014 -emptyset;2205 -endash;2013 -eng;014B -eogonek;0119 -epsilon;03B5 -epsilontonos;03AD -equal;003D -equivalence;2261 -estimated;212E -esuperior;F6EC -eta;03B7 -etatonos;03AE -eth;00F0 -exclam;0021 -exclamdbl;203C -exclamdown;00A1 -exclamdownsmall;F7A1 -exclamsmall;F721 -existential;2203 -f;0066 -female;2640 -ff;FB00 -ffi;FB03 -ffl;FB04 -fi;FB01 -figuredash;2012 -filledbox;25A0 -filledrect;25AC -five;0035 -fiveeighths;215D -fiveinferior;2085 -fiveoldstyle;F735 -fivesuperior;2075 -fl;FB02 -florin;0192 -four;0034 -fourinferior;2084 -fouroldstyle;F734 -foursuperior;2074 -fraction;2044 -franc;20A3 -g;0067 -gamma;03B3 -gbreve;011F -gcaron;01E7 -gcircumflex;011D -gcommaaccent;0123 -gdotaccent;0121 -germandbls;00DF -gradient;2207 -grave;0060 -gravecomb;0300 -greater;003E -greaterequal;2265 -guillemotleft;00AB -guillemotright;00BB -guilsinglleft;2039 -guilsinglright;203A -h;0068 -hbar;0127 -hcircumflex;0125 -heart;2665 -hookabovecomb;0309 -house;2302 -hungarumlaut;02DD -hyphen;002D -hypheninferior;F6E5 -hyphensuperior;F6E6 -i;0069 -iacute;00ED -ibreve;012D -icircumflex;00EE -idieresis;00EF -igrave;00EC -ij;0133 -imacron;012B -infinity;221E -integral;222B -integralbt;2321 -integralex;F8F5 -integraltp;2320 -intersection;2229 -invbullet;25D8 -invcircle;25D9 -invsmileface;263B -iogonek;012F -iota;03B9 -iotadieresis;03CA -iotadieresistonos;0390 -iotatonos;03AF -isuperior;F6ED -itilde;0129 -j;006A -jcircumflex;0135 -k;006B -kappa;03BA -kcommaaccent;0137 -kgreenlandic;0138 -l;006C -lacute;013A -lambda;03BB -lcaron;013E -lcommaaccent;013C -ldot;0140 -less;003C -lessequal;2264 -lfblock;258C -lira;20A4 -ll;F6C0 -logicaland;2227 -logicalnot;00AC -logicalor;2228 -longs;017F -lozenge;25CA -lslash;0142 -lsuperior;F6EE -ltshade;2591 -m;006D -macron;00AF -male;2642 -minus;2212 -minute;2032 -msuperior;F6EF -mu;03BC -multiply;00D7 -musicalnote;266A -musicalnotedbl;266B -n;006E -nacute;0144 -napostrophe;0149 -ncaron;0148 -ncommaaccent;0146 -nine;0039 -nineinferior;2089 -nineoldstyle;F739 -ninesuperior;2079 -notelement;2209 -notequal;2260 -notsubset;2284 -nsuperior;207F -ntilde;00F1 -nu;03BD -numbersign;0023 -o;006F -oacute;00F3 -obreve;014F -ocircumflex;00F4 -odieresis;00F6 -oe;0153 -ogonek;02DB -ograve;00F2 -ohorn;01A1 -ohungarumlaut;0151 -omacron;014D -omega;03C9 -omega1;03D6 -omegatonos;03CE -omicron;03BF -omicrontonos;03CC -one;0031 -onedotenleader;2024 -oneeighth;215B -onefitted;F6DC -onehalf;00BD -oneinferior;2081 -oneoldstyle;F731 -onequarter;00BC -onesuperior;00B9 -onethird;2153 -openbullet;25E6 -ordfeminine;00AA -ordmasculine;00BA -orthogonal;221F -oslash;00F8 -oslashacute;01FF -osuperior;F6F0 -otilde;00F5 -p;0070 -paragraph;00B6 -parenleft;0028 -parenleftbt;F8ED -parenleftex;F8EC -parenleftinferior;208D -parenleftsuperior;207D -parenlefttp;F8EB -parenright;0029 -parenrightbt;F8F8 -parenrightex;F8F7 -parenrightinferior;208E -parenrightsuperior;207E -parenrighttp;F8F6 -partialdiff;2202 -percent;0025 -period;002E -periodcentered;00B7 -periodinferior;F6E7 -periodsuperior;F6E8 -perpendicular;22A5 -perthousand;2030 -peseta;20A7 -phi;03C6 -phi1;03D5 -pi;03C0 -plus;002B -plusminus;00B1 -prescription;211E -product;220F -propersubset;2282 -propersuperset;2283 -proportional;221D -psi;03C8 -q;0071 -question;003F -questiondown;00BF -questiondownsmall;F7BF -questionsmall;F73F -quotedbl;0022 -quotedblbase;201E -quotedblleft;201C -quotedblright;201D -quoteleft;2018 -quotereversed;201B -quoteright;2019 -quotesinglbase;201A -quotesingle;0027 -r;0072 -racute;0155 -radical;221A -radicalex;F8E5 -rcaron;0159 -rcommaaccent;0157 -reflexsubset;2286 -reflexsuperset;2287 -registered;00AE -registersans;F8E8 -registerserif;F6DA -revlogicalnot;2310 -rho;03C1 -ring;02DA -rsuperior;F6F1 -rtblock;2590 -rupiah;F6DD -s;0073 -sacute;015B -scaron;0161 -scedilla;015F -scircumflex;015D -scommaaccent;0219 -second;2033 -section;00A7 -semicolon;003B -seven;0037 -seveneighths;215E -seveninferior;2087 -sevenoldstyle;F737 -sevensuperior;2077 -shade;2592 -sigma;03C3 -sigma1;03C2 -similar;223C -six;0036 -sixinferior;2086 -sixoldstyle;F736 -sixsuperior;2076 -slash;002F -smileface;263A -space;0020 -spade;2660 -ssuperior;F6F2 -sterling;00A3 -suchthat;220B -summation;2211 -sun;263C -t;0074 -tau;03C4 -tbar;0167 -tcaron;0165 -tcommaaccent;0163 -therefore;2234 -theta;03B8 -theta1;03D1 -thorn;00FE -three;0033 -threeeighths;215C -threeinferior;2083 -threeoldstyle;F733 -threequarters;00BE -threequartersemdash;F6DE -threesuperior;00B3 -tilde;02DC -tildecomb;0303 -tonos;0384 -trademark;2122 -trademarksans;F8EA -trademarkserif;F6DB -triagdn;25BC -triaglf;25C4 -triagrt;25BA -triagup;25B2 -tsuperior;F6F3 -two;0032 -twodotenleader;2025 -twoinferior;2082 -twooldstyle;F732 -twosuperior;00B2 -twothirds;2154 -u;0075 -uacute;00FA -ubreve;016D -ucircumflex;00FB -udieresis;00FC -ugrave;00F9 -uhorn;01B0 -uhungarumlaut;0171 -umacron;016B -underscore;005F -underscoredbl;2017 -union;222A -universal;2200 -uogonek;0173 -upblock;2580 -upsilon;03C5 -upsilondieresis;03CB -upsilondieresistonos;03B0 -upsilontonos;03CD -uring;016F -utilde;0169 -v;0076 -w;0077 -wacute;1E83 -wcircumflex;0175 -wdieresis;1E85 -weierstrass;2118 -wgrave;1E81 -x;0078 -xi;03BE -y;0079 -yacute;00FD -ycircumflex;0177 -ydieresis;00FF -yen;00A5 -ygrave;1EF3 -z;007A -zacute;017A -zcaron;017E -zdotaccent;017C -zero;0030 -zeroinferior;2080 -zerooldstyle;F730 -zerosuperior;2070 -zeta;03B6 diff --git a/target/classes/com/itextpdf/text/pdf/fonts/mustRead.html b/target/classes/com/itextpdf/text/pdf/fonts/mustRead.html deleted file mode 100644 index 29d73d7b..00000000 --- a/target/classes/com/itextpdf/text/pdf/fonts/mustRead.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - Core 14 AFM Files - ReadMe - - - or - - - - - -
This file and the 14 PostScript(R) AFM files it accompanies may be used, copied, and distributed for any purpose and without charge, with or without modification, provided that all copyright notices are retained; that the AFM files are not distributed without this file; that all modifications to this file or any of the AFM files are prominently noted in the modified file(s); and that this paragraph is not modified. Adobe Systems has no responsibility or obligation to support the use of the AFM files. Col
- - \ No newline at end of file diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/FontReadingException.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/FontReadingException.class deleted file mode 100644 index c0f46dae..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/FontReadingException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader$MarkRecord.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader$MarkRecord.class deleted file mode 100644 index b81e3431..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader$MarkRecord.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader$PosLookupRecord.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader$PosLookupRecord.class deleted file mode 100644 index b823149a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader$PosLookupRecord.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader.class deleted file mode 100644 index 806e2c85..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphPositioningTableReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphSubstitutionTableReader.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphSubstitutionTableReader.class deleted file mode 100644 index c62a5ff5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/GlyphSubstitutionTableReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/Language.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/Language.class deleted file mode 100644 index 0fb9e06e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/Language.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/OpenTypeFontTableReader.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/OpenTypeFontTableReader.class deleted file mode 100644 index b9b7a00b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/OpenTypeFontTableReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/fonts/otf/TableHeader.class b/target/classes/com/itextpdf/text/pdf/fonts/otf/TableHeader.class deleted file mode 100644 index f679b9c8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/fonts/otf/TableHeader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/ByteVector.class b/target/classes/com/itextpdf/text/pdf/hyphenation/ByteVector.class deleted file mode 100644 index dcdb0bf4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/ByteVector.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/CharVector.class b/target/classes/com/itextpdf/text/pdf/hyphenation/CharVector.class deleted file mode 100644 index 8bb40f00..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/CharVector.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphen.class b/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphen.class deleted file mode 100644 index f456a64c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphen.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphenation.class b/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphenation.class deleted file mode 100644 index 2a5bfd2f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphenation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/HyphenationException.class b/target/classes/com/itextpdf/text/pdf/hyphenation/HyphenationException.class deleted file mode 100644 index 43ff6090..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/HyphenationException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/HyphenationTree.class b/target/classes/com/itextpdf/text/pdf/hyphenation/HyphenationTree.class deleted file mode 100644 index 3f4ff70a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/HyphenationTree.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphenator.class b/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphenator.class deleted file mode 100644 index ea053429..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/Hyphenator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/PatternConsumer.class b/target/classes/com/itextpdf/text/pdf/hyphenation/PatternConsumer.class deleted file mode 100644 index f92f284e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/PatternConsumer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/SimplePatternParser.class b/target/classes/com/itextpdf/text/pdf/hyphenation/SimplePatternParser.class deleted file mode 100644 index eef91561..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/SimplePatternParser.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree$Iterator$Item.class b/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree$Iterator$Item.class deleted file mode 100644 index be00169b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree$Iterator$Item.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree$Iterator.class b/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree$Iterator.class deleted file mode 100644 index f535ef35..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree$Iterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree.class b/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree.class deleted file mode 100644 index 80e48076..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/hyphenation/TernaryTree.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/IAccessibleElement.class b/target/classes/com/itextpdf/text/pdf/interfaces/IAccessibleElement.class deleted file mode 100644 index 8e0e7a2a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/IAccessibleElement.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/IAlternateDescription.class b/target/classes/com/itextpdf/text/pdf/interfaces/IAlternateDescription.class deleted file mode 100644 index bf633934..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/IAlternateDescription.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/IPdfStructureElement.class b/target/classes/com/itextpdf/text/pdf/interfaces/IPdfStructureElement.class deleted file mode 100644 index 1cea5ed8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/IPdfStructureElement.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfAnnotations.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfAnnotations.class deleted file mode 100644 index aba604db..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfAnnotations.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfDocumentActions.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfDocumentActions.class deleted file mode 100644 index e9b75777..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfDocumentActions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfEncryptionSettings.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfEncryptionSettings.class deleted file mode 100644 index cefa6c40..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfEncryptionSettings.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfIsoConformance.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfIsoConformance.class deleted file mode 100644 index 1904f39a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfIsoConformance.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfPageActions.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfPageActions.class deleted file mode 100644 index 339740ef..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfPageActions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfRunDirection.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfRunDirection.class deleted file mode 100644 index f97ce8ec..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfRunDirection.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfVersion.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfVersion.class deleted file mode 100644 index b71c4098..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfVersion.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfViewerPreferences.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfViewerPreferences.class deleted file mode 100644 index 1e77bd10..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfViewerPreferences.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/interfaces/PdfXConformance.class b/target/classes/com/itextpdf/text/pdf/interfaces/PdfXConformance.class deleted file mode 100644 index c3adb441..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/interfaces/PdfXConformance.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/internal/PdfAnnotationsImp.class b/target/classes/com/itextpdf/text/pdf/internal/PdfAnnotationsImp.class deleted file mode 100644 index 3f4ddaa9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/internal/PdfAnnotationsImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/internal/PdfIsoKeys.class b/target/classes/com/itextpdf/text/pdf/internal/PdfIsoKeys.class deleted file mode 100644 index b6b3dc40..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/internal/PdfIsoKeys.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/internal/PdfVersionImp.class b/target/classes/com/itextpdf/text/pdf/internal/PdfVersionImp.class deleted file mode 100644 index 48662534..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/internal/PdfVersionImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/internal/PdfViewerPreferencesImp.class b/target/classes/com/itextpdf/text/pdf/internal/PdfViewerPreferencesImp.class deleted file mode 100644 index 0e244890..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/internal/PdfViewerPreferencesImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/internal/PdfXConformanceImp.class b/target/classes/com/itextpdf/text/pdf/internal/PdfXConformanceImp.class deleted file mode 100644 index 17d0516d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/internal/PdfXConformanceImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/ArabicLigaturizer$charstruct.class b/target/classes/com/itextpdf/text/pdf/languages/ArabicLigaturizer$charstruct.class deleted file mode 100644 index f4ce9f1c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/ArabicLigaturizer$charstruct.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/ArabicLigaturizer.class b/target/classes/com/itextpdf/text/pdf/languages/ArabicLigaturizer.class deleted file mode 100644 index 335b9f5d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/ArabicLigaturizer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/BanglaGlyphRepositioner.class b/target/classes/com/itextpdf/text/pdf/languages/BanglaGlyphRepositioner.class deleted file mode 100644 index e36a4767..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/BanglaGlyphRepositioner.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/DevanagariLigaturizer.class b/target/classes/com/itextpdf/text/pdf/languages/DevanagariLigaturizer.class deleted file mode 100644 index e6c5c9ce..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/DevanagariLigaturizer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/GlyphRepositioner.class b/target/classes/com/itextpdf/text/pdf/languages/GlyphRepositioner.class deleted file mode 100644 index 82fa8f8b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/GlyphRepositioner.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/GujaratiLigaturizer.class b/target/classes/com/itextpdf/text/pdf/languages/GujaratiLigaturizer.class deleted file mode 100644 index edca7332..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/GujaratiLigaturizer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/HebrewProcessor.class b/target/classes/com/itextpdf/text/pdf/languages/HebrewProcessor.class deleted file mode 100644 index 4d98a843..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/HebrewProcessor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/IndicCompositeCharacterComparator.class b/target/classes/com/itextpdf/text/pdf/languages/IndicCompositeCharacterComparator.class deleted file mode 100644 index 0fd57d8b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/IndicCompositeCharacterComparator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/IndicGlyphRepositioner.class b/target/classes/com/itextpdf/text/pdf/languages/IndicGlyphRepositioner.class deleted file mode 100644 index 9810e809..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/IndicGlyphRepositioner.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/IndicLigaturizer.class b/target/classes/com/itextpdf/text/pdf/languages/IndicLigaturizer.class deleted file mode 100644 index 6cd71b21..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/IndicLigaturizer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/languages/LanguageProcessor.class b/target/classes/com/itextpdf/text/pdf/languages/LanguageProcessor.class deleted file mode 100644 index 70680243..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/languages/LanguageProcessor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/BezierCurve.class b/target/classes/com/itextpdf/text/pdf/parser/BezierCurve.class deleted file mode 100644 index 50a69a97..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/BezierCurve.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/ContentByteUtils.class b/target/classes/com/itextpdf/text/pdf/parser/ContentByteUtils.class deleted file mode 100644 index 1924a1ca..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/ContentByteUtils.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/ContentOperator.class b/target/classes/com/itextpdf/text/pdf/parser/ContentOperator.class deleted file mode 100644 index d1ad6d4d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/ContentOperator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/ExtRenderListener.class b/target/classes/com/itextpdf/text/pdf/parser/ExtRenderListener.class deleted file mode 100644 index f69d4e57..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/ExtRenderListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/FilteredRenderListener.class b/target/classes/com/itextpdf/text/pdf/parser/FilteredRenderListener.class deleted file mode 100644 index d271d6e3..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/FilteredRenderListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/FilteredTextRenderListener.class b/target/classes/com/itextpdf/text/pdf/parser/FilteredTextRenderListener.class deleted file mode 100644 index 57893fa0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/FilteredTextRenderListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/GlyphRenderListener.class b/target/classes/com/itextpdf/text/pdf/parser/GlyphRenderListener.class deleted file mode 100644 index 6f0f2dcc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/GlyphRenderListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/GlyphTextRenderListener.class b/target/classes/com/itextpdf/text/pdf/parser/GlyphTextRenderListener.class deleted file mode 100644 index 93d2d73b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/GlyphTextRenderListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/GraphicsState.class b/target/classes/com/itextpdf/text/pdf/parser/GraphicsState.class deleted file mode 100644 index bef87622..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/GraphicsState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/ImageRenderInfo.class b/target/classes/com/itextpdf/text/pdf/parser/ImageRenderInfo.class deleted file mode 100644 index 5620edfd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/ImageRenderInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/InlineImageInfo.class b/target/classes/com/itextpdf/text/pdf/parser/InlineImageInfo.class deleted file mode 100644 index 681d9d1c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/InlineImageInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/InlineImageUtils$InlineImageParseException.class b/target/classes/com/itextpdf/text/pdf/parser/InlineImageUtils$InlineImageParseException.class deleted file mode 100644 index 553ea5ef..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/InlineImageUtils$InlineImageParseException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/InlineImageUtils.class b/target/classes/com/itextpdf/text/pdf/parser/InlineImageUtils.class deleted file mode 100644 index 716364b5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/InlineImageUtils.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/Line.class b/target/classes/com/itextpdf/text/pdf/parser/Line.class deleted file mode 100644 index 36fcab1c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/Line.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LineDashPattern$DashArrayElem.class b/target/classes/com/itextpdf/text/pdf/parser/LineDashPattern$DashArrayElem.class deleted file mode 100644 index c1a06386..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LineDashPattern$DashArrayElem.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LineDashPattern.class b/target/classes/com/itextpdf/text/pdf/parser/LineDashPattern.class deleted file mode 100644 index d46285bc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LineDashPattern.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LineSegment.class b/target/classes/com/itextpdf/text/pdf/parser/LineSegment.class deleted file mode 100644 index 061aacb0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LineSegment.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$1.class b/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$1.class deleted file mode 100644 index a9803279..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunk.class b/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunk.class deleted file mode 100644 index 5e3b1c5e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunk.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkFilter.class b/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkFilter.class deleted file mode 100644 index b3d7f01c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocation.class b/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocation.class deleted file mode 100644 index 0de7c86c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocationDefaultImp.class b/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocationDefaultImp.class deleted file mode 100644 index 53a0fb4d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocationDefaultImp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocationStrategy.class b/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocationStrategy.class deleted file mode 100644 index 6666b004..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy$TextChunkLocationStrategy.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy.class b/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy.class deleted file mode 100644 index 89c75e40..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/LocationTextExtractionStrategy.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/MarkedContentInfo.class b/target/classes/com/itextpdf/text/pdf/parser/MarkedContentInfo.class deleted file mode 100644 index 36b7c32c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/MarkedContentInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/MarkedContentRenderFilter.class b/target/classes/com/itextpdf/text/pdf/parser/MarkedContentRenderFilter.class deleted file mode 100644 index e6f038dd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/MarkedContentRenderFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/Matrix.class b/target/classes/com/itextpdf/text/pdf/parser/Matrix.class deleted file mode 100644 index 21571323..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/Matrix.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/MultiFilteredRenderListener.class b/target/classes/com/itextpdf/text/pdf/parser/MultiFilteredRenderListener.class deleted file mode 100644 index a8914496..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/MultiFilteredRenderListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/Path.class b/target/classes/com/itextpdf/text/pdf/parser/Path.class deleted file mode 100644 index 2b65e08a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/Path.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PathConstructionRenderInfo.class b/target/classes/com/itextpdf/text/pdf/parser/PathConstructionRenderInfo.class deleted file mode 100644 index f5e9bf1e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PathConstructionRenderInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PathPaintingRenderInfo.class b/target/classes/com/itextpdf/text/pdf/parser/PathPaintingRenderInfo.class deleted file mode 100644 index 0e4d2cbe..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PathPaintingRenderInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentReaderTool.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentReaderTool.class deleted file mode 100644 index ad0affc7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentReaderTool.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$1.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$1.class deleted file mode 100644 index af4dbed0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginMarkedContent.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginMarkedContent.class deleted file mode 100644 index a075f831..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginMarkedContent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginMarkedContentDictionary.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginMarkedContentDictionary.class deleted file mode 100644 index 6861c0fc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginMarkedContentDictionary.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginText.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginText.class deleted file mode 100644 index 8c91463f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$BeginText.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ClipPath.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ClipPath.class deleted file mode 100644 index 74248665..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ClipPath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CloseSubpath.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CloseSubpath.class deleted file mode 100644 index a4965cec..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CloseSubpath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Curve.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Curve.class deleted file mode 100644 index d9504453..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Curve.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CurveFirstPointDuplicated.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CurveFirstPointDuplicated.class deleted file mode 100644 index 9ac56adb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CurveFirstPointDuplicated.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CurveFourhPointDuplicated.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CurveFourhPointDuplicated.class deleted file mode 100644 index bae19033..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$CurveFourhPointDuplicated.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Do.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Do.class deleted file mode 100644 index 1a91dfa2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Do.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndMarkedContent.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndMarkedContent.class deleted file mode 100644 index fdd55802..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndMarkedContent.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndPath.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndPath.class deleted file mode 100644 index 093b18aa..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndPath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndText.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndText.class deleted file mode 100644 index 0f66ee96..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$EndText.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$FormXObjectDoHandler.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$FormXObjectDoHandler.class deleted file mode 100644 index b791e0af..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$FormXObjectDoHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$IgnoreOperatorContentOperator.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$IgnoreOperatorContentOperator.class deleted file mode 100644 index f389d1fc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$IgnoreOperatorContentOperator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$IgnoreXObjectDoHandler.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$IgnoreXObjectDoHandler.class deleted file mode 100644 index ed0434cf..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$IgnoreXObjectDoHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ImageXObjectDoHandler.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ImageXObjectDoHandler.class deleted file mode 100644 index d9bb053d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ImageXObjectDoHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$LineTo.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$LineTo.class deleted file mode 100644 index f2702599..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$LineTo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ModifyCurrentTransformationMatrix.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ModifyCurrentTransformationMatrix.class deleted file mode 100644 index a2fa431c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ModifyCurrentTransformationMatrix.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveNextLineAndShowText.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveNextLineAndShowText.class deleted file mode 100644 index 37f2f821..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveNextLineAndShowText.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveNextLineAndShowTextWithSpacing.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveNextLineAndShowTextWithSpacing.class deleted file mode 100644 index d51f5b3c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveNextLineAndShowTextWithSpacing.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveTo.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveTo.class deleted file mode 100644 index 7ac9a5c6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$MoveTo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PaintPath.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PaintPath.class deleted file mode 100644 index 270d74eb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PaintPath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PopGraphicsState.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PopGraphicsState.class deleted file mode 100644 index 2c30b55a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PopGraphicsState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ProcessGraphicsStateResource.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ProcessGraphicsStateResource.class deleted file mode 100644 index c2a93a26..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ProcessGraphicsStateResource.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PushGraphicsState.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PushGraphicsState.class deleted file mode 100644 index 24ba300a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$PushGraphicsState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Rectangle.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Rectangle.class deleted file mode 100644 index 5c2d3231..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$Rectangle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ResourceDictionary.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ResourceDictionary.class deleted file mode 100644 index 2a1e1a07..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ResourceDictionary.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetCMYKFill.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetCMYKFill.class deleted file mode 100644 index e221e9ff..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetCMYKFill.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetCMYKStroke.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetCMYKStroke.class deleted file mode 100644 index 6fb91b3b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetCMYKStroke.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorFill.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorFill.class deleted file mode 100644 index 466b2b25..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorFill.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorSpaceFill.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorSpaceFill.class deleted file mode 100644 index 49ac61d2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorSpaceFill.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorSpaceStroke.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorSpaceStroke.class deleted file mode 100644 index 345a5200..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorSpaceStroke.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorStroke.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorStroke.class deleted file mode 100644 index 21db71e9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetColorStroke.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetGrayFill.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetGrayFill.class deleted file mode 100644 index 83ab50d3..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetGrayFill.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetGrayStroke.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetGrayStroke.class deleted file mode 100644 index 8f842c54..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetGrayStroke.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineCap.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineCap.class deleted file mode 100644 index df48828a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineCap.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineDashPattern.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineDashPattern.class deleted file mode 100644 index b9a36be9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineDashPattern.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineJoin.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineJoin.class deleted file mode 100644 index ceafe6c0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineJoin.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineWidth.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineWidth.class deleted file mode 100644 index 609d92d2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetLineWidth.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetMiterLimit.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetMiterLimit.class deleted file mode 100644 index 4f346474..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetMiterLimit.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetRGBFill.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetRGBFill.class deleted file mode 100644 index 769b4cf5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetRGBFill.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetRGBStroke.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetRGBStroke.class deleted file mode 100644 index aa9a6d0b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetRGBStroke.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextCharacterSpacing.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextCharacterSpacing.class deleted file mode 100644 index ad1314c1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextCharacterSpacing.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextFont.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextFont.class deleted file mode 100644 index bebb7bac..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextFont.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextHorizontalScaling.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextHorizontalScaling.class deleted file mode 100644 index bbd8d5bd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextHorizontalScaling.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextLeading.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextLeading.class deleted file mode 100644 index 9fc72424..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextLeading.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextRenderMode.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextRenderMode.class deleted file mode 100644 index c90e9362..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextRenderMode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextRise.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextRise.class deleted file mode 100644 index a3a6b7a1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextRise.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextWordSpacing.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextWordSpacing.class deleted file mode 100644 index 0f93fc33..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$SetTextWordSpacing.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ShowText.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ShowText.class deleted file mode 100644 index ef0ead86..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ShowText.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ShowTextArray.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ShowTextArray.class deleted file mode 100644 index 370ee40d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$ShowTextArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveNextLine.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveNextLine.class deleted file mode 100644 index c048671c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveNextLine.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveStartNextLine.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveStartNextLine.class deleted file mode 100644 index b86b024e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveStartNextLine.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveStartNextLineWithLeading.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveStartNextLineWithLeading.class deleted file mode 100644 index a62b8837..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextMoveStartNextLineWithLeading.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextSetTextMatrix.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextSetTextMatrix.class deleted file mode 100644 index 86c91d6c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor$TextSetTextMatrix.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor.class b/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor.class deleted file mode 100644 index ea29cd46..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfContentStreamProcessor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$1.class b/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$1.class deleted file mode 100644 index 7b0b710a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$ImageBytesType.class b/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$ImageBytesType.class deleted file mode 100644 index 07e2b49c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$ImageBytesType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$TrackingFilter.class b/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$TrackingFilter.class deleted file mode 100644 index 09b6976b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject$TrackingFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject.class b/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject.class deleted file mode 100644 index 05ae5c38..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfImageObject.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfReaderContentParser.class b/target/classes/com/itextpdf/text/pdf/parser/PdfReaderContentParser.class deleted file mode 100644 index 5dd6d054..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfReaderContentParser.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/PdfTextExtractor.class b/target/classes/com/itextpdf/text/pdf/parser/PdfTextExtractor.class deleted file mode 100644 index 1c5ee08b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/PdfTextExtractor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/RegionTextRenderFilter.class b/target/classes/com/itextpdf/text/pdf/parser/RegionTextRenderFilter.class deleted file mode 100644 index 96ec21cd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/RegionTextRenderFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/RenderFilter.class b/target/classes/com/itextpdf/text/pdf/parser/RenderFilter.class deleted file mode 100644 index f1735571..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/RenderFilter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/RenderListener.class b/target/classes/com/itextpdf/text/pdf/parser/RenderListener.class deleted file mode 100644 index bc9c7ebb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/RenderListener.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/Shape.class b/target/classes/com/itextpdf/text/pdf/parser/Shape.class deleted file mode 100644 index 8647fceb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/Shape.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/SimpleTextExtractionStrategy.class b/target/classes/com/itextpdf/text/pdf/parser/SimpleTextExtractionStrategy.class deleted file mode 100644 index d72e06ec..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/SimpleTextExtractionStrategy.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/Subpath.class b/target/classes/com/itextpdf/text/pdf/parser/Subpath.class deleted file mode 100644 index 95ec3b98..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/Subpath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/TaggedPdfReaderTool.class b/target/classes/com/itextpdf/text/pdf/parser/TaggedPdfReaderTool.class deleted file mode 100644 index a2515fc8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/TaggedPdfReaderTool.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/TextExtractionStrategy.class b/target/classes/com/itextpdf/text/pdf/parser/TextExtractionStrategy.class deleted file mode 100644 index 960add5d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/TextExtractionStrategy.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/TextMarginFinder.class b/target/classes/com/itextpdf/text/pdf/parser/TextMarginFinder.class deleted file mode 100644 index 40503ae5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/TextMarginFinder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/TextRenderInfo.class b/target/classes/com/itextpdf/text/pdf/parser/TextRenderInfo.class deleted file mode 100644 index d48a6863..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/TextRenderInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/Vector.class b/target/classes/com/itextpdf/text/pdf/parser/Vector.class deleted file mode 100644 index cd72884b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/Vector.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/XObjectDoHandler.class b/target/classes/com/itextpdf/text/pdf/parser/XObjectDoHandler.class deleted file mode 100644 index 66ff91b6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/XObjectDoHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$ClipType.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$ClipType.class deleted file mode 100644 index e7e378f0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$ClipType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$Direction.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$Direction.class deleted file mode 100644 index 711e3ddd..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$Direction.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$EndType.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$EndType.class deleted file mode 100644 index 8e5ae0a7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$EndType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$JoinType.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$JoinType.class deleted file mode 100644 index 46801a14..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$JoinType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$PolyFillType.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$PolyFillType.class deleted file mode 100644 index 18090c46..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$PolyFillType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$PolyType.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$PolyType.class deleted file mode 100644 index f51f99f5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$PolyType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$ZFillCallback.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$ZFillCallback.class deleted file mode 100644 index b9f1fad0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper$ZFillCallback.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper.class deleted file mode 100644 index b49d8ad4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Clipper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase$LocalMinima.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase$LocalMinima.class deleted file mode 100644 index 2b959794..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase$LocalMinima.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase$Scanbeam.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase$Scanbeam.class deleted file mode 100644 index e6b7f8dc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase$Scanbeam.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase.class deleted file mode 100644 index 6848015d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperBase.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperOffset$1.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperOffset$1.class deleted file mode 100644 index 81946aef..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperOffset$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperOffset.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperOffset.class deleted file mode 100644 index 10e9d620..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/ClipperOffset.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$1.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$1.class deleted file mode 100644 index f093dc2f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$2.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$2.class deleted file mode 100644 index e7fad8e7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$2.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$IntersectNode.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$IntersectNode.class deleted file mode 100644 index 7789f672..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper$IntersectNode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper.class deleted file mode 100644 index 48b4d146..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/DefaultClipper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge$1.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge$1.class deleted file mode 100644 index 69e9ec75..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge$Side.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge$Side.class deleted file mode 100644 index 3ce776b2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge$Side.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge.class deleted file mode 100644 index ce6b9b19..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Edge.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/LongRect.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/LongRect.class deleted file mode 100644 index 2140bfbb..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/LongRect.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$Join.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$Join.class deleted file mode 100644 index d6826f75..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$Join.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$Maxima.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$Maxima.class deleted file mode 100644 index a4d86ac2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$Maxima.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$OutPt.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$OutPt.class deleted file mode 100644 index cd840628..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$OutPt.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$OutRec.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$OutRec.class deleted file mode 100644 index 6de12eb9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path$OutRec.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Path.class deleted file mode 100644 index 04babbf6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Path.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Paths$1.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Paths$1.class deleted file mode 100644 index a35b5053..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Paths$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Paths.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Paths.class deleted file mode 100644 index 91669374..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Paths.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$1.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$1.class deleted file mode 100644 index e1758d10..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$DoublePoint.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$DoublePoint.class deleted file mode 100644 index 60c1323f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$DoublePoint.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$LongPoint.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$LongPoint.class deleted file mode 100644 index c14373f9..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$LongPoint.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$NumberComparator.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$NumberComparator.class deleted file mode 100644 index 7654db4c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point$NumberComparator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/Point.class deleted file mode 100644 index c9b5685c..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/Point.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyNode$NodeType.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyNode$NodeType.class deleted file mode 100644 index 899c29d5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyNode$NodeType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyNode.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyNode.class deleted file mode 100644 index 9eaf8f33..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyNode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyTree.class b/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyTree.class deleted file mode 100644 index 0030fce8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/parser/clipper/PolyTree.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/BitArray.class b/target/classes/com/itextpdf/text/pdf/qrcode/BitArray.class deleted file mode 100644 index 79f6e9e3..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/BitArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/BitMatrix.class b/target/classes/com/itextpdf/text/pdf/qrcode/BitMatrix.class deleted file mode 100644 index 5aba9c1f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/BitMatrix.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/BitVector.class b/target/classes/com/itextpdf/text/pdf/qrcode/BitVector.class deleted file mode 100644 index 174d6ae3..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/BitVector.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/BlockPair.class b/target/classes/com/itextpdf/text/pdf/qrcode/BlockPair.class deleted file mode 100644 index fafeb3b2..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/BlockPair.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/ByteArray.class b/target/classes/com/itextpdf/text/pdf/qrcode/ByteArray.class deleted file mode 100644 index fdf1d1d0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/ByteArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/ByteMatrix.class b/target/classes/com/itextpdf/text/pdf/qrcode/ByteMatrix.class deleted file mode 100644 index 2b262ca6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/ByteMatrix.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/CharacterSetECI.class b/target/classes/com/itextpdf/text/pdf/qrcode/CharacterSetECI.class deleted file mode 100644 index efef1406..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/CharacterSetECI.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/EncodeHintType.class b/target/classes/com/itextpdf/text/pdf/qrcode/EncodeHintType.class deleted file mode 100644 index be9d8b6d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/EncodeHintType.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/Encoder.class b/target/classes/com/itextpdf/text/pdf/qrcode/Encoder.class deleted file mode 100644 index 602a8173..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/Encoder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/ErrorCorrectionLevel.class b/target/classes/com/itextpdf/text/pdf/qrcode/ErrorCorrectionLevel.class deleted file mode 100644 index 4078a6b4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/ErrorCorrectionLevel.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/FormatInformation.class b/target/classes/com/itextpdf/text/pdf/qrcode/FormatInformation.class deleted file mode 100644 index ef66cf1d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/FormatInformation.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/GF256.class b/target/classes/com/itextpdf/text/pdf/qrcode/GF256.class deleted file mode 100644 index 0e44fd73..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/GF256.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/GF256Poly.class b/target/classes/com/itextpdf/text/pdf/qrcode/GF256Poly.class deleted file mode 100644 index 041fd4ba..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/GF256Poly.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/MaskUtil.class b/target/classes/com/itextpdf/text/pdf/qrcode/MaskUtil.class deleted file mode 100644 index 506f9335..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/MaskUtil.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/MatrixUtil.class b/target/classes/com/itextpdf/text/pdf/qrcode/MatrixUtil.class deleted file mode 100644 index 938cb1a8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/MatrixUtil.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/Mode.class b/target/classes/com/itextpdf/text/pdf/qrcode/Mode.class deleted file mode 100644 index 56b1ed7b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/Mode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/QRCode.class b/target/classes/com/itextpdf/text/pdf/qrcode/QRCode.class deleted file mode 100644 index 741c4894..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/QRCode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/QRCodeWriter.class b/target/classes/com/itextpdf/text/pdf/qrcode/QRCodeWriter.class deleted file mode 100644 index 01e98ba1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/QRCodeWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/ReedSolomonEncoder.class b/target/classes/com/itextpdf/text/pdf/qrcode/ReedSolomonEncoder.class deleted file mode 100644 index f867a473..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/ReedSolomonEncoder.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/ReedSolomonException.class b/target/classes/com/itextpdf/text/pdf/qrcode/ReedSolomonException.class deleted file mode 100644 index 38923320..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/ReedSolomonException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/Version$ECB.class b/target/classes/com/itextpdf/text/pdf/qrcode/Version$ECB.class deleted file mode 100644 index ac05ebef..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/Version$ECB.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/Version$ECBlocks.class b/target/classes/com/itextpdf/text/pdf/qrcode/Version$ECBlocks.class deleted file mode 100644 index e5c7f577..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/Version$ECBlocks.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/Version.class b/target/classes/com/itextpdf/text/pdf/qrcode/Version.class deleted file mode 100644 index f527e4f8..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/Version.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/qrcode/WriterException.class b/target/classes/com/itextpdf/text/pdf/qrcode/WriterException.class deleted file mode 100644 index 6f92f90d..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/qrcode/WriterException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/BouncyCastleDigest.class b/target/classes/com/itextpdf/text/pdf/security/BouncyCastleDigest.class deleted file mode 100644 index af792f4a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/BouncyCastleDigest.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CRLVerifier.class b/target/classes/com/itextpdf/text/pdf/security/CRLVerifier.class deleted file mode 100644 index 54274ce0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CRLVerifier.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CertificateInfo$X500Name.class b/target/classes/com/itextpdf/text/pdf/security/CertificateInfo$X500Name.class deleted file mode 100644 index dd6962ba..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CertificateInfo$X500Name.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CertificateInfo$X509NameTokenizer.class b/target/classes/com/itextpdf/text/pdf/security/CertificateInfo$X509NameTokenizer.class deleted file mode 100644 index c955889b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CertificateInfo$X509NameTokenizer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CertificateInfo.class b/target/classes/com/itextpdf/text/pdf/security/CertificateInfo.class deleted file mode 100644 index 1d3ec5f4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CertificateInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CertificateUtil.class b/target/classes/com/itextpdf/text/pdf/security/CertificateUtil.class deleted file mode 100644 index 8b72afa3..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CertificateUtil.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CertificateVerification.class b/target/classes/com/itextpdf/text/pdf/security/CertificateVerification.class deleted file mode 100644 index 0df4e5ae..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CertificateVerification.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CertificateVerifier.class b/target/classes/com/itextpdf/text/pdf/security/CertificateVerifier.class deleted file mode 100644 index 318ec33a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CertificateVerifier.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CrlClient.class b/target/classes/com/itextpdf/text/pdf/security/CrlClient.class deleted file mode 100644 index 9f963808..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CrlClient.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CrlClientOffline.class b/target/classes/com/itextpdf/text/pdf/security/CrlClientOffline.class deleted file mode 100644 index b3e0c2fe..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CrlClientOffline.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/CrlClientOnline.class b/target/classes/com/itextpdf/text/pdf/security/CrlClientOnline.class deleted file mode 100644 index a28da0be..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/CrlClientOnline.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/DigestAlgorithms.class b/target/classes/com/itextpdf/text/pdf/security/DigestAlgorithms.class deleted file mode 100644 index 25e15046..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/DigestAlgorithms.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/EncryptionAlgorithms.class b/target/classes/com/itextpdf/text/pdf/security/EncryptionAlgorithms.class deleted file mode 100644 index 42acc45f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/EncryptionAlgorithms.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/ExternalBlankSignatureContainer.class b/target/classes/com/itextpdf/text/pdf/security/ExternalBlankSignatureContainer.class deleted file mode 100644 index 976c09ec..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/ExternalBlankSignatureContainer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/ExternalDecryptionProcess.class b/target/classes/com/itextpdf/text/pdf/security/ExternalDecryptionProcess.class deleted file mode 100644 index 0b23a71e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/ExternalDecryptionProcess.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/ExternalDigest.class b/target/classes/com/itextpdf/text/pdf/security/ExternalDigest.class deleted file mode 100644 index 0b441cdc..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/ExternalDigest.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/ExternalSignature.class b/target/classes/com/itextpdf/text/pdf/security/ExternalSignature.class deleted file mode 100644 index 6f05cda6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/ExternalSignature.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/ExternalSignatureContainer.class b/target/classes/com/itextpdf/text/pdf/security/ExternalSignatureContainer.class deleted file mode 100644 index 1f62c964..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/ExternalSignatureContainer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/KeyStoreUtil.class b/target/classes/com/itextpdf/text/pdf/security/KeyStoreUtil.class deleted file mode 100644 index c55ffaa7..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/KeyStoreUtil.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvTimestamp.class b/target/classes/com/itextpdf/text/pdf/security/LtvTimestamp.class deleted file mode 100644 index 958ea58f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvTimestamp.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$1.class b/target/classes/com/itextpdf/text/pdf/security/LtvVerification$1.class deleted file mode 100644 index 24453752..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$CertificateInclusion.class b/target/classes/com/itextpdf/text/pdf/security/LtvVerification$CertificateInclusion.class deleted file mode 100644 index 37a1a5d5..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$CertificateInclusion.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$CertificateOption.class b/target/classes/com/itextpdf/text/pdf/security/LtvVerification$CertificateOption.class deleted file mode 100644 index a90d0bb0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$CertificateOption.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$Level.class b/target/classes/com/itextpdf/text/pdf/security/LtvVerification$Level.class deleted file mode 100644 index 8a552299..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$Level.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$ValidationData.class b/target/classes/com/itextpdf/text/pdf/security/LtvVerification$ValidationData.class deleted file mode 100644 index 3222474f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvVerification$ValidationData.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvVerification.class b/target/classes/com/itextpdf/text/pdf/security/LtvVerification.class deleted file mode 100644 index b4542a3f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvVerification.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/LtvVerifier.class b/target/classes/com/itextpdf/text/pdf/security/LtvVerifier.class deleted file mode 100644 index c8952e18..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/LtvVerifier.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/MakeSignature$CryptoStandard.class b/target/classes/com/itextpdf/text/pdf/security/MakeSignature$CryptoStandard.class deleted file mode 100644 index 0b922518..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/MakeSignature$CryptoStandard.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/MakeSignature.class b/target/classes/com/itextpdf/text/pdf/security/MakeSignature.class deleted file mode 100644 index 6d1b748f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/MakeSignature.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/MakeXmlSignature$EmptyKey.class b/target/classes/com/itextpdf/text/pdf/security/MakeXmlSignature$EmptyKey.class deleted file mode 100644 index d5f09aa4..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/MakeXmlSignature$EmptyKey.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/MakeXmlSignature.class b/target/classes/com/itextpdf/text/pdf/security/MakeXmlSignature.class deleted file mode 100644 index 7cda3e95..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/MakeXmlSignature.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/OCSPVerifier.class b/target/classes/com/itextpdf/text/pdf/security/OCSPVerifier.class deleted file mode 100644 index 792ee5a6..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/OCSPVerifier.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/OcspClient.class b/target/classes/com/itextpdf/text/pdf/security/OcspClient.class deleted file mode 100644 index aa58d428..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/OcspClient.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/OcspClientBouncyCastle.class b/target/classes/com/itextpdf/text/pdf/security/OcspClientBouncyCastle.class deleted file mode 100644 index 19ced898..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/OcspClientBouncyCastle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/PdfPKCS7.class b/target/classes/com/itextpdf/text/pdf/security/PdfPKCS7.class deleted file mode 100644 index 328e1c45..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/PdfPKCS7.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/PdfSignatureAppDictionary.class b/target/classes/com/itextpdf/text/pdf/security/PdfSignatureAppDictionary.class deleted file mode 100644 index 2f939ab1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/PdfSignatureAppDictionary.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/PdfSignatureBuildProperties.class b/target/classes/com/itextpdf/text/pdf/security/PdfSignatureBuildProperties.class deleted file mode 100644 index e8f2ef63..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/PdfSignatureBuildProperties.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/PrivateKeySignature.class b/target/classes/com/itextpdf/text/pdf/security/PrivateKeySignature.class deleted file mode 100644 index 904e2dad..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/PrivateKeySignature.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/ProviderDigest.class b/target/classes/com/itextpdf/text/pdf/security/ProviderDigest.class deleted file mode 100644 index 7e71f332..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/ProviderDigest.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/RootStoreVerifier.class b/target/classes/com/itextpdf/text/pdf/security/RootStoreVerifier.class deleted file mode 100644 index e7f26d0e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/RootStoreVerifier.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/SecurityConstants.class b/target/classes/com/itextpdf/text/pdf/security/SecurityConstants.class deleted file mode 100644 index a3f7776f..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/SecurityConstants.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/SecurityIDs.class b/target/classes/com/itextpdf/text/pdf/security/SecurityIDs.class deleted file mode 100644 index 48a0c15e..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/SecurityIDs.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/SignaturePermissions$FieldLock.class b/target/classes/com/itextpdf/text/pdf/security/SignaturePermissions$FieldLock.class deleted file mode 100644 index f74ba96a..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/SignaturePermissions$FieldLock.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/SignaturePermissions.class b/target/classes/com/itextpdf/text/pdf/security/SignaturePermissions.class deleted file mode 100644 index 73c88c00..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/SignaturePermissions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/SignaturePolicyInfo.class b/target/classes/com/itextpdf/text/pdf/security/SignaturePolicyInfo.class deleted file mode 100644 index 9125c1af..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/SignaturePolicyInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/TSAClient.class b/target/classes/com/itextpdf/text/pdf/security/TSAClient.class deleted file mode 100644 index 8985e855..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/TSAClient.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/TSAClientBouncyCastle.class b/target/classes/com/itextpdf/text/pdf/security/TSAClientBouncyCastle.class deleted file mode 100644 index 205cfb7b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/TSAClientBouncyCastle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/TSAInfoBouncyCastle.class b/target/classes/com/itextpdf/text/pdf/security/TSAInfoBouncyCastle.class deleted file mode 100644 index 4819a113..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/TSAInfoBouncyCastle.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/VerificationException.class b/target/classes/com/itextpdf/text/pdf/security/VerificationException.class deleted file mode 100644 index e4d021f0..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/VerificationException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/VerificationOK.class b/target/classes/com/itextpdf/text/pdf/security/VerificationOK.class deleted file mode 100644 index 4e7636c1..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/VerificationOK.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/XmlLocator.class b/target/classes/com/itextpdf/text/pdf/security/XmlLocator.class deleted file mode 100644 index 115a639b..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/XmlLocator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/pdf/security/XpathConstructor.class b/target/classes/com/itextpdf/text/pdf/security/XpathConstructor.class deleted file mode 100644 index 80a19a46..00000000 Binary files a/target/classes/com/itextpdf/text/pdf/security/XpathConstructor.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/XMLUtil.class b/target/classes/com/itextpdf/text/xml/XMLUtil.class deleted file mode 100644 index cfe0a9c1..00000000 Binary files a/target/classes/com/itextpdf/text/xml/XMLUtil.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/XmlDomWriter.class b/target/classes/com/itextpdf/text/xml/XmlDomWriter.class deleted file mode 100644 index 531dd375..00000000 Binary files a/target/classes/com/itextpdf/text/xml/XmlDomWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/XmlToTxt.class b/target/classes/com/itextpdf/text/xml/XmlToTxt.class deleted file mode 100644 index 4f281ba5..00000000 Binary files a/target/classes/com/itextpdf/text/xml/XmlToTxt.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/EntitiesToSymbol.class b/target/classes/com/itextpdf/text/xml/simpleparser/EntitiesToSymbol.class deleted file mode 100644 index cf433bb4..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/EntitiesToSymbol.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/EntitiesToUnicode.class b/target/classes/com/itextpdf/text/xml/simpleparser/EntitiesToUnicode.class deleted file mode 100644 index bd984113..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/EntitiesToUnicode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/IanaEncodings.class b/target/classes/com/itextpdf/text/xml/simpleparser/IanaEncodings.class deleted file mode 100644 index 522c45aa..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/IanaEncodings.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/NewLineHandler.class b/target/classes/com/itextpdf/text/xml/simpleparser/NewLineHandler.class deleted file mode 100644 index 37c87763..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/NewLineHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLDocHandler.class b/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLDocHandler.class deleted file mode 100644 index f572b44c..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLDocHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLDocHandlerComment.class b/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLDocHandlerComment.class deleted file mode 100644 index e61b2936..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLDocHandlerComment.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLParser.class b/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLParser.class deleted file mode 100644 index a02f91d6..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/SimpleXMLParser.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/handler/HTMLNewLineHandler.class b/target/classes/com/itextpdf/text/xml/simpleparser/handler/HTMLNewLineHandler.class deleted file mode 100644 index cda7f448..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/handler/HTMLNewLineHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/simpleparser/handler/NeverNewLineHandler.class b/target/classes/com/itextpdf/text/xml/simpleparser/handler/NeverNewLineHandler.class deleted file mode 100644 index 661cbef0..00000000 Binary files a/target/classes/com/itextpdf/text/xml/simpleparser/handler/NeverNewLineHandler.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/DublinCoreProperties.class b/target/classes/com/itextpdf/text/xml/xmp/DublinCoreProperties.class deleted file mode 100644 index 69dc7040..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/DublinCoreProperties.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/DublinCoreSchema.class b/target/classes/com/itextpdf/text/xml/xmp/DublinCoreSchema.class deleted file mode 100644 index 19e9d4f5..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/DublinCoreSchema.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/LangAlt.class b/target/classes/com/itextpdf/text/xml/xmp/LangAlt.class deleted file mode 100644 index f9987689..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/LangAlt.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/PdfProperties.class b/target/classes/com/itextpdf/text/xml/xmp/PdfProperties.class deleted file mode 100644 index ab9e4399..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/PdfProperties.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/PdfSchema.class b/target/classes/com/itextpdf/text/xml/xmp/PdfSchema.class deleted file mode 100644 index 61825007..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/PdfSchema.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpArray.class b/target/classes/com/itextpdf/text/xml/xmp/XmpArray.class deleted file mode 100644 index 2ae766f5..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpArray.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpBasicProperties.class b/target/classes/com/itextpdf/text/xml/xmp/XmpBasicProperties.class deleted file mode 100644 index af2686fd..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpBasicProperties.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpBasicSchema.class b/target/classes/com/itextpdf/text/xml/xmp/XmpBasicSchema.class deleted file mode 100644 index 37d9e2c2..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpBasicSchema.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpMMProperties.class b/target/classes/com/itextpdf/text/xml/xmp/XmpMMProperties.class deleted file mode 100644 index 79b8f4db..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpMMProperties.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpMMSchema.class b/target/classes/com/itextpdf/text/xml/xmp/XmpMMSchema.class deleted file mode 100644 index 5cb18fa8..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpMMSchema.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpReader.class b/target/classes/com/itextpdf/text/xml/xmp/XmpReader.class deleted file mode 100644 index a53e764f..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpSchema.class b/target/classes/com/itextpdf/text/xml/xmp/XmpSchema.class deleted file mode 100644 index ca380fa4..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpSchema.class and /dev/null differ diff --git a/target/classes/com/itextpdf/text/xml/xmp/XmpWriter.class b/target/classes/com/itextpdf/text/xml/xmp/XmpWriter.class deleted file mode 100644 index 7881da50..00000000 Binary files a/target/classes/com/itextpdf/text/xml/xmp/XmpWriter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPConst.class b/target/classes/com/itextpdf/xmp/XMPConst.class deleted file mode 100644 index 00859bc9..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPConst.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPDateTime.class b/target/classes/com/itextpdf/xmp/XMPDateTime.class deleted file mode 100644 index fdf1ce12..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPDateTime.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPDateTimeFactory.class b/target/classes/com/itextpdf/xmp/XMPDateTimeFactory.class deleted file mode 100644 index 058bc7d8..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPDateTimeFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPError.class b/target/classes/com/itextpdf/xmp/XMPError.class deleted file mode 100644 index 2570f9db..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPError.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPException.class b/target/classes/com/itextpdf/xmp/XMPException.class deleted file mode 100644 index cd5ed4b0..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPException.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPIterator.class b/target/classes/com/itextpdf/xmp/XMPIterator.class deleted file mode 100644 index 4854c706..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPIterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPMeta.class b/target/classes/com/itextpdf/xmp/XMPMeta.class deleted file mode 100644 index adfb9557..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPMeta.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPMetaFactory$1.class b/target/classes/com/itextpdf/xmp/XMPMetaFactory$1.class deleted file mode 100644 index 3a285a43..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPMetaFactory$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPMetaFactory.class b/target/classes/com/itextpdf/xmp/XMPMetaFactory.class deleted file mode 100644 index cd5318b2..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPMetaFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPPathFactory.class b/target/classes/com/itextpdf/xmp/XMPPathFactory.class deleted file mode 100644 index 09ffaa0d..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPPathFactory.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPSchemaRegistry.class b/target/classes/com/itextpdf/xmp/XMPSchemaRegistry.class deleted file mode 100644 index f05106c6..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPSchemaRegistry.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPUtils.class b/target/classes/com/itextpdf/xmp/XMPUtils.class deleted file mode 100644 index b1d59dba..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPUtils.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/XMPVersionInfo.class b/target/classes/com/itextpdf/xmp/XMPVersionInfo.class deleted file mode 100644 index 015b9e47..00000000 Binary files a/target/classes/com/itextpdf/xmp/XMPVersionInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/Base64.class b/target/classes/com/itextpdf/xmp/impl/Base64.class deleted file mode 100644 index 3b17ef64..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/Base64.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/ByteBuffer.class b/target/classes/com/itextpdf/xmp/impl/ByteBuffer.class deleted file mode 100644 index 7bfed3e7..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/ByteBuffer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/CountOutputStream.class b/target/classes/com/itextpdf/xmp/impl/CountOutputStream.class deleted file mode 100644 index a68fb6be..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/CountOutputStream.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/FixASCIIControlsReader.class b/target/classes/com/itextpdf/xmp/impl/FixASCIIControlsReader.class deleted file mode 100644 index 3c5b4a06..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/FixASCIIControlsReader.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/ISO8601Converter.class b/target/classes/com/itextpdf/xmp/impl/ISO8601Converter.class deleted file mode 100644 index 8dbc4833..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/ISO8601Converter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/Latin1Converter.class b/target/classes/com/itextpdf/xmp/impl/Latin1Converter.class deleted file mode 100644 index 48bee232..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/Latin1Converter.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/ParameterAsserts.class b/target/classes/com/itextpdf/xmp/impl/ParameterAsserts.class deleted file mode 100644 index 41b358f9..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/ParameterAsserts.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/ParseRDF.class b/target/classes/com/itextpdf/xmp/impl/ParseRDF.class deleted file mode 100644 index 99ec7eff..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/ParseRDF.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/ParseState.class b/target/classes/com/itextpdf/xmp/impl/ParseState.class deleted file mode 100644 index 1f30d520..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/ParseState.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/QName.class b/target/classes/com/itextpdf/xmp/impl/QName.class deleted file mode 100644 index 8869b9e1..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/QName.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/Utils.class b/target/classes/com/itextpdf/xmp/impl/Utils.class deleted file mode 100644 index 9693e4d7..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/Utils.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPDateTimeImpl.class b/target/classes/com/itextpdf/xmp/impl/XMPDateTimeImpl.class deleted file mode 100644 index 72e84b47..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPDateTimeImpl.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIterator$1.class b/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIterator$1.class deleted file mode 100644 index 19868259..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIterator$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIterator.class b/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIterator.class deleted file mode 100644 index 49d57b88..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIterator.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIteratorChildren.class b/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIteratorChildren.class deleted file mode 100644 index e346ca70..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl$NodeIteratorChildren.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl.class b/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl.class deleted file mode 100644 index 0c966dbe..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPIteratorImpl.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl$1.class b/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl$1.class deleted file mode 100644 index 526feaaa..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl$2.class b/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl$2.class deleted file mode 100644 index 523f1478..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl$2.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl.class b/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl.class deleted file mode 100644 index 186dea2b..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPMetaImpl.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPMetaParser.class b/target/classes/com/itextpdf/xmp/impl/XMPMetaParser.class deleted file mode 100644 index 36289c7f..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPMetaParser.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPNode$1.class b/target/classes/com/itextpdf/xmp/impl/XMPNode$1.class deleted file mode 100644 index 09a573b4..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPNode$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPNode.class b/target/classes/com/itextpdf/xmp/impl/XMPNode.class deleted file mode 100644 index 8b796447..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPNode.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPNodeUtils.class b/target/classes/com/itextpdf/xmp/impl/XMPNodeUtils.class deleted file mode 100644 index 7156cced..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPNodeUtils.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPNormalizer.class b/target/classes/com/itextpdf/xmp/impl/XMPNormalizer.class deleted file mode 100644 index 9c6f05ac..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPNormalizer.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPSchemaRegistryImpl$1.class b/target/classes/com/itextpdf/xmp/impl/XMPSchemaRegistryImpl$1.class deleted file mode 100644 index 164ab86d..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPSchemaRegistryImpl$1.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPSchemaRegistryImpl.class b/target/classes/com/itextpdf/xmp/impl/XMPSchemaRegistryImpl.class deleted file mode 100644 index ac4931ca..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPSchemaRegistryImpl.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPSerializerHelper.class b/target/classes/com/itextpdf/xmp/impl/XMPSerializerHelper.class deleted file mode 100644 index 9ae03f77..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPSerializerHelper.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPSerializerRDF.class b/target/classes/com/itextpdf/xmp/impl/XMPSerializerRDF.class deleted file mode 100644 index d66c9761..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPSerializerRDF.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/XMPUtilsImpl.class b/target/classes/com/itextpdf/xmp/impl/XMPUtilsImpl.class deleted file mode 100644 index 077af945..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/XMPUtilsImpl.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/xpath/PathPosition.class b/target/classes/com/itextpdf/xmp/impl/xpath/PathPosition.class deleted file mode 100644 index eaf15707..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/xpath/PathPosition.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/xpath/XMPPath.class b/target/classes/com/itextpdf/xmp/impl/xpath/XMPPath.class deleted file mode 100644 index e237eb91..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/xpath/XMPPath.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/xpath/XMPPathParser.class b/target/classes/com/itextpdf/xmp/impl/xpath/XMPPathParser.class deleted file mode 100644 index 30ead73d..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/xpath/XMPPathParser.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/impl/xpath/XMPPathSegment.class b/target/classes/com/itextpdf/xmp/impl/xpath/XMPPathSegment.class deleted file mode 100644 index 3effca2b..00000000 Binary files a/target/classes/com/itextpdf/xmp/impl/xpath/XMPPathSegment.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/options/AliasOptions.class b/target/classes/com/itextpdf/xmp/options/AliasOptions.class deleted file mode 100644 index f5165166..00000000 Binary files a/target/classes/com/itextpdf/xmp/options/AliasOptions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/options/IteratorOptions.class b/target/classes/com/itextpdf/xmp/options/IteratorOptions.class deleted file mode 100644 index e74f1f65..00000000 Binary files a/target/classes/com/itextpdf/xmp/options/IteratorOptions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/options/Options.class b/target/classes/com/itextpdf/xmp/options/Options.class deleted file mode 100644 index 2b572c17..00000000 Binary files a/target/classes/com/itextpdf/xmp/options/Options.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/options/ParseOptions.class b/target/classes/com/itextpdf/xmp/options/ParseOptions.class deleted file mode 100644 index 8827de84..00000000 Binary files a/target/classes/com/itextpdf/xmp/options/ParseOptions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/options/PropertyOptions.class b/target/classes/com/itextpdf/xmp/options/PropertyOptions.class deleted file mode 100644 index 9f501428..00000000 Binary files a/target/classes/com/itextpdf/xmp/options/PropertyOptions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/options/SerializeOptions.class b/target/classes/com/itextpdf/xmp/options/SerializeOptions.class deleted file mode 100644 index bd74b5a7..00000000 Binary files a/target/classes/com/itextpdf/xmp/options/SerializeOptions.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/properties/XMPAliasInfo.class b/target/classes/com/itextpdf/xmp/properties/XMPAliasInfo.class deleted file mode 100644 index 1f27cf24..00000000 Binary files a/target/classes/com/itextpdf/xmp/properties/XMPAliasInfo.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/properties/XMPProperty.class b/target/classes/com/itextpdf/xmp/properties/XMPProperty.class deleted file mode 100644 index ed72a42e..00000000 Binary files a/target/classes/com/itextpdf/xmp/properties/XMPProperty.class and /dev/null differ diff --git a/target/classes/com/itextpdf/xmp/properties/XMPPropertyInfo.class b/target/classes/com/itextpdf/xmp/properties/XMPPropertyInfo.class deleted file mode 100644 index fa900ad7..00000000 Binary files a/target/classes/com/itextpdf/xmp/properties/XMPPropertyInfo.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/FabricCommunicationException.class b/target/classes/com/mysql/fabric/FabricCommunicationException.class deleted file mode 100644 index 5d0db641..00000000 Binary files a/target/classes/com/mysql/fabric/FabricCommunicationException.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/FabricConnection.class b/target/classes/com/mysql/fabric/FabricConnection.class deleted file mode 100644 index 971f1d3a..00000000 Binary files a/target/classes/com/mysql/fabric/FabricConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/FabricStateResponse.class b/target/classes/com/mysql/fabric/FabricStateResponse.class deleted file mode 100644 index 44ff4abd..00000000 Binary files a/target/classes/com/mysql/fabric/FabricStateResponse.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/HashShardMapping$ReverseShardIndexSorter.class b/target/classes/com/mysql/fabric/HashShardMapping$ReverseShardIndexSorter.class deleted file mode 100644 index 9c33719d..00000000 Binary files a/target/classes/com/mysql/fabric/HashShardMapping$ReverseShardIndexSorter.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/HashShardMapping.class b/target/classes/com/mysql/fabric/HashShardMapping.class deleted file mode 100644 index 4f24fc38..00000000 Binary files a/target/classes/com/mysql/fabric/HashShardMapping.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/RangeShardMapping$RangeShardIndexSorter.class b/target/classes/com/mysql/fabric/RangeShardMapping$RangeShardIndexSorter.class deleted file mode 100644 index fbe71b8f..00000000 Binary files a/target/classes/com/mysql/fabric/RangeShardMapping$RangeShardIndexSorter.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/RangeShardMapping.class b/target/classes/com/mysql/fabric/RangeShardMapping.class deleted file mode 100644 index 3d62fd60..00000000 Binary files a/target/classes/com/mysql/fabric/RangeShardMapping.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/Response.class b/target/classes/com/mysql/fabric/Response.class deleted file mode 100644 index b76cf315..00000000 Binary files a/target/classes/com/mysql/fabric/Response.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/Server.class b/target/classes/com/mysql/fabric/Server.class deleted file mode 100644 index 2631b3c5..00000000 Binary files a/target/classes/com/mysql/fabric/Server.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ServerGroup.class b/target/classes/com/mysql/fabric/ServerGroup.class deleted file mode 100644 index ff315294..00000000 Binary files a/target/classes/com/mysql/fabric/ServerGroup.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ServerMode.class b/target/classes/com/mysql/fabric/ServerMode.class deleted file mode 100644 index 303b424d..00000000 Binary files a/target/classes/com/mysql/fabric/ServerMode.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ServerRole.class b/target/classes/com/mysql/fabric/ServerRole.class deleted file mode 100644 index 5e2b655e..00000000 Binary files a/target/classes/com/mysql/fabric/ServerRole.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ShardIndex.class b/target/classes/com/mysql/fabric/ShardIndex.class deleted file mode 100644 index d790eef7..00000000 Binary files a/target/classes/com/mysql/fabric/ShardIndex.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ShardMapping.class b/target/classes/com/mysql/fabric/ShardMapping.class deleted file mode 100644 index 097dd11b..00000000 Binary files a/target/classes/com/mysql/fabric/ShardMapping.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ShardMappingFactory$1.class b/target/classes/com/mysql/fabric/ShardMappingFactory$1.class deleted file mode 100644 index 377dd7d7..00000000 Binary files a/target/classes/com/mysql/fabric/ShardMappingFactory$1.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ShardMappingFactory.class b/target/classes/com/mysql/fabric/ShardMappingFactory.class deleted file mode 100644 index 5f05afb7..00000000 Binary files a/target/classes/com/mysql/fabric/ShardMappingFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ShardTable.class b/target/classes/com/mysql/fabric/ShardTable.class deleted file mode 100644 index 5a03b45b..00000000 Binary files a/target/classes/com/mysql/fabric/ShardTable.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/ShardingType.class b/target/classes/com/mysql/fabric/ShardingType.class deleted file mode 100644 index 2c9afa01..00000000 Binary files a/target/classes/com/mysql/fabric/ShardingType.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/hibernate/FabricMultiTenantConnectionProvider.class b/target/classes/com/mysql/fabric/hibernate/FabricMultiTenantConnectionProvider.class deleted file mode 100644 index 44f52472..00000000 Binary files a/target/classes/com/mysql/fabric/hibernate/FabricMultiTenantConnectionProvider.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/ErrorReportingExceptionInterceptor.class b/target/classes/com/mysql/fabric/jdbc/ErrorReportingExceptionInterceptor.class deleted file mode 100644 index 49895481..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/ErrorReportingExceptionInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnection.class b/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnection.class deleted file mode 100644 index b7bc89ba..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnectionProperties.class b/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnectionProperties.class deleted file mode 100644 index 5e8b55ac..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnectionProperties.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnectionProxy.class b/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnectionProxy.class deleted file mode 100644 index cd71168b..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/FabricMySQLConnectionProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/FabricMySQLDataSource.class b/target/classes/com/mysql/fabric/jdbc/FabricMySQLDataSource.class deleted file mode 100644 index a2ade22b..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/FabricMySQLDataSource.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/FabricMySQLDriver.class b/target/classes/com/mysql/fabric/jdbc/FabricMySQLDriver.class deleted file mode 100644 index c8bbe6d1..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/FabricMySQLDriver.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/JDBC4FabricMySQLConnection.class b/target/classes/com/mysql/fabric/jdbc/JDBC4FabricMySQLConnection.class deleted file mode 100644 index b8938337..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/JDBC4FabricMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/jdbc/JDBC4FabricMySQLConnectionProxy.class b/target/classes/com/mysql/fabric/jdbc/JDBC4FabricMySQLConnectionProxy.class deleted file mode 100644 index 99f7ab2c..00000000 Binary files a/target/classes/com/mysql/fabric/jdbc/JDBC4FabricMySQLConnectionProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/proto/xmlrpc/AuthenticatedXmlRpcMethodCaller.class b/target/classes/com/mysql/fabric/proto/xmlrpc/AuthenticatedXmlRpcMethodCaller.class deleted file mode 100644 index 5f1c95df..00000000 Binary files a/target/classes/com/mysql/fabric/proto/xmlrpc/AuthenticatedXmlRpcMethodCaller.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/proto/xmlrpc/DigestAuthentication.class b/target/classes/com/mysql/fabric/proto/xmlrpc/DigestAuthentication.class deleted file mode 100644 index 1c2ca491..00000000 Binary files a/target/classes/com/mysql/fabric/proto/xmlrpc/DigestAuthentication.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/proto/xmlrpc/InternalXmlRpcMethodCaller.class b/target/classes/com/mysql/fabric/proto/xmlrpc/InternalXmlRpcMethodCaller.class deleted file mode 100644 index 927a17db..00000000 Binary files a/target/classes/com/mysql/fabric/proto/xmlrpc/InternalXmlRpcMethodCaller.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/proto/xmlrpc/ResultSetParser.class b/target/classes/com/mysql/fabric/proto/xmlrpc/ResultSetParser.class deleted file mode 100644 index 5de10b24..00000000 Binary files a/target/classes/com/mysql/fabric/proto/xmlrpc/ResultSetParser.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/proto/xmlrpc/XmlRpcClient.class b/target/classes/com/mysql/fabric/proto/xmlrpc/XmlRpcClient.class deleted file mode 100644 index afbd47e2..00000000 Binary files a/target/classes/com/mysql/fabric/proto/xmlrpc/XmlRpcClient.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/proto/xmlrpc/XmlRpcMethodCaller.class b/target/classes/com/mysql/fabric/proto/xmlrpc/XmlRpcMethodCaller.class deleted file mode 100644 index a129d656..00000000 Binary files a/target/classes/com/mysql/fabric/proto/xmlrpc/XmlRpcMethodCaller.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/Client.class b/target/classes/com/mysql/fabric/xmlrpc/Client.class deleted file mode 100644 index ea8bf9fb..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/Client.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Array.class b/target/classes/com/mysql/fabric/xmlrpc/base/Array.class deleted file mode 100644 index 0316d3de..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Array.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Data.class b/target/classes/com/mysql/fabric/xmlrpc/base/Data.class deleted file mode 100644 index b0667e09..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Data.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Fault.class b/target/classes/com/mysql/fabric/xmlrpc/base/Fault.class deleted file mode 100644 index 488da8a4..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Fault.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Member.class b/target/classes/com/mysql/fabric/xmlrpc/base/Member.class deleted file mode 100644 index e712b4e8..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Member.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/MethodCall.class b/target/classes/com/mysql/fabric/xmlrpc/base/MethodCall.class deleted file mode 100644 index fe0f048f..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/MethodCall.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/MethodResponse.class b/target/classes/com/mysql/fabric/xmlrpc/base/MethodResponse.class deleted file mode 100644 index 444cef0b..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/MethodResponse.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Param.class b/target/classes/com/mysql/fabric/xmlrpc/base/Param.class deleted file mode 100644 index 1293ddc9..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Param.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Params.class b/target/classes/com/mysql/fabric/xmlrpc/base/Params.class deleted file mode 100644 index 0b24f4a4..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Params.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/ResponseParser.class b/target/classes/com/mysql/fabric/xmlrpc/base/ResponseParser.class deleted file mode 100644 index f5a55c5c..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/ResponseParser.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Struct.class b/target/classes/com/mysql/fabric/xmlrpc/base/Struct.class deleted file mode 100644 index d4d097b2..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Struct.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/base/Value.class b/target/classes/com/mysql/fabric/xmlrpc/base/Value.class deleted file mode 100644 index f74bde12..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/base/Value.class and /dev/null differ diff --git a/target/classes/com/mysql/fabric/xmlrpc/exceptions/MySQLFabricException.class b/target/classes/com/mysql/fabric/xmlrpc/exceptions/MySQLFabricException.class deleted file mode 100644 index d4359bff..00000000 Binary files a/target/classes/com/mysql/fabric/xmlrpc/exceptions/MySQLFabricException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/AbandonedConnectionCleanupThread.class b/target/classes/com/mysql/jdbc/AbandonedConnectionCleanupThread.class deleted file mode 100644 index 87fb6936..00000000 Binary files a/target/classes/com/mysql/jdbc/AbandonedConnectionCleanupThread.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/AssertionFailedException.class b/target/classes/com/mysql/jdbc/AssertionFailedException.class deleted file mode 100644 index 0adf34a9..00000000 Binary files a/target/classes/com/mysql/jdbc/AssertionFailedException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/AuthenticationPlugin.class b/target/classes/com/mysql/jdbc/AuthenticationPlugin.class deleted file mode 100644 index 72619b99..00000000 Binary files a/target/classes/com/mysql/jdbc/AuthenticationPlugin.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/BalanceStrategy.class b/target/classes/com/mysql/jdbc/BalanceStrategy.class deleted file mode 100644 index d38b0f5a..00000000 Binary files a/target/classes/com/mysql/jdbc/BalanceStrategy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/BestResponseTimeBalanceStrategy.class b/target/classes/com/mysql/jdbc/BestResponseTimeBalanceStrategy.class deleted file mode 100644 index 25e55ef1..00000000 Binary files a/target/classes/com/mysql/jdbc/BestResponseTimeBalanceStrategy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Blob.class b/target/classes/com/mysql/jdbc/Blob.class deleted file mode 100644 index 8ffbd72e..00000000 Binary files a/target/classes/com/mysql/jdbc/Blob.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/BlobFromLocator$LocatorInputStream.class b/target/classes/com/mysql/jdbc/BlobFromLocator$LocatorInputStream.class deleted file mode 100644 index 62f21f6b..00000000 Binary files a/target/classes/com/mysql/jdbc/BlobFromLocator$LocatorInputStream.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/BlobFromLocator.class b/target/classes/com/mysql/jdbc/BlobFromLocator.class deleted file mode 100644 index 26ff7407..00000000 Binary files a/target/classes/com/mysql/jdbc/BlobFromLocator.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Buffer.class b/target/classes/com/mysql/jdbc/Buffer.class deleted file mode 100644 index 1ad00448..00000000 Binary files a/target/classes/com/mysql/jdbc/Buffer.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/BufferRow.class b/target/classes/com/mysql/jdbc/BufferRow.class deleted file mode 100644 index b613821a..00000000 Binary files a/target/classes/com/mysql/jdbc/BufferRow.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ByteArrayRow.class b/target/classes/com/mysql/jdbc/ByteArrayRow.class deleted file mode 100644 index eb51b99e..00000000 Binary files a/target/classes/com/mysql/jdbc/ByteArrayRow.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CacheAdapter.class b/target/classes/com/mysql/jdbc/CacheAdapter.class deleted file mode 100644 index be466e27..00000000 Binary files a/target/classes/com/mysql/jdbc/CacheAdapter.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CacheAdapterFactory.class b/target/classes/com/mysql/jdbc/CacheAdapterFactory.class deleted file mode 100644 index 39c29e96..00000000 Binary files a/target/classes/com/mysql/jdbc/CacheAdapterFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CachedResultSetMetaData.class b/target/classes/com/mysql/jdbc/CachedResultSetMetaData.class deleted file mode 100644 index 7fd05566..00000000 Binary files a/target/classes/com/mysql/jdbc/CachedResultSetMetaData.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CallableStatement$CallableStatementParam.class b/target/classes/com/mysql/jdbc/CallableStatement$CallableStatementParam.class deleted file mode 100644 index 30676fa9..00000000 Binary files a/target/classes/com/mysql/jdbc/CallableStatement$CallableStatementParam.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CallableStatement$CallableStatementParamInfo.class b/target/classes/com/mysql/jdbc/CallableStatement$CallableStatementParamInfo.class deleted file mode 100644 index 6eb05fc1..00000000 Binary files a/target/classes/com/mysql/jdbc/CallableStatement$CallableStatementParamInfo.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CallableStatement.class b/target/classes/com/mysql/jdbc/CallableStatement.class deleted file mode 100644 index 1a4b918f..00000000 Binary files a/target/classes/com/mysql/jdbc/CallableStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CharsetMapping.class b/target/classes/com/mysql/jdbc/CharsetMapping.class deleted file mode 100644 index 43a88f7a..00000000 Binary files a/target/classes/com/mysql/jdbc/CharsetMapping.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Charsets.properties b/target/classes/com/mysql/jdbc/Charsets.properties deleted file mode 100644 index ee83a930..00000000 --- a/target/classes/com/mysql/jdbc/Charsets.properties +++ /dev/null @@ -1,102 +0,0 @@ -# -# Charset Mappings -# -# Java Encoding MySQL Name (and version, '*' -# denotes preferred value) -# - -javaToMysqlMappings=\ - US-ASCII = usa7,\ - US-ASCII = ascii,\ - Big5 = big5,\ - GBK = gbk,\ - SJIS = sjis,\ - EUC_CN = gb2312,\ - EUC_JP = ujis,\ - EUC_JP_Solaris = >5.0.3 eucjpms,\ - EUC_KR = euc_kr,\ - EUC_KR = >4.1.0 euckr,\ - ISO8859_1 = *latin1,\ - ISO8859_1 = latin1_de,\ - ISO8859_1 = german1,\ - ISO8859_1 = danish,\ - ISO8859_2 = latin2,\ - ISO8859_2 = czech,\ - ISO8859_2 = hungarian,\ - ISO8859_2 = croat,\ - ISO8859_7 = greek,\ - ISO8859_7 = latin7,\ - ISO8859_8 = hebrew,\ - ISO8859_9 = latin5,\ - ISO8859_13 = latvian,\ - ISO8859_13 = latvian1,\ - ISO8859_13 = estonia,\ - Cp437 = *>4.1.0 cp850,\ - Cp437 = dos,\ - Cp850 = Cp850,\ - Cp852 = Cp852,\ - Cp866 = cp866,\ - KOI8_R = koi8_ru,\ - KOI8_R = >4.1.0 koi8r,\ - TIS620 = tis620,\ - Cp1250 = cp1250,\ - Cp1250 = win1250,\ - Cp1251 = *>4.1.0 cp1251,\ - Cp1251 = win1251,\ - Cp1251 = cp1251cias,\ - Cp1251 = cp1251csas,\ - Cp1256 = cp1256,\ - Cp1251 = win1251ukr,\ - Cp1257 = cp1257,\ - MacRoman = macroman,\ - MacCentralEurope = macce,\ - UTF-8 = utf8,\ - UnicodeBig = ucs2,\ - US-ASCII = binary,\ - Cp943 = sjis,\ - MS932 = sjis,\ - MS932 = >4.1.11 cp932,\ - WINDOWS-31J = sjis,\ - WINDOWS-31J = >4.1.11 cp932,\ - CP932 = sjis,\ - CP932 = *>4.1.11 cp932,\ - SHIFT_JIS = sjis,\ - ASCII = ascii,\ - LATIN5 = latin5,\ - LATIN7 = latin7,\ - HEBREW = hebrew,\ - GREEK = greek,\ - EUCKR = euckr,\ - GB2312 = gb2312,\ - LATIN2 = latin2 - -# -# List of multibyte character sets that can not -# use efficient charset conversion or escaping -# -# This map is made case-insensitive inside CharsetMapping -# -# Java Name MySQL Name (not currently used) - -multibyteCharsets=\ - Big5 = big5,\ - GBK = gbk,\ - SJIS = sjis,\ - EUC_CN = gb2312,\ - EUC_JP = ujis,\ - EUC_JP_Solaris = eucjpms,\ - EUC_KR = euc_kr,\ - EUC_KR = >4.1.0 euckr,\ - Cp943 = sjis,\ - Cp943 = cp943,\ - WINDOWS-31J = sjis,\ - WINDOWS-31J = cp932,\ - CP932 = cp932,\ - MS932 = sjis,\ - MS932 = cp932,\ - SHIFT_JIS = sjis,\ - EUCKR = euckr,\ - GB2312 = gb2312,\ - UTF-8 = utf8,\ - utf8 = utf8,\ - UnicodeBig = ucs2 \ No newline at end of file diff --git a/target/classes/com/mysql/jdbc/Clob.class b/target/classes/com/mysql/jdbc/Clob.class deleted file mode 100644 index 60f7b15e..00000000 Binary files a/target/classes/com/mysql/jdbc/Clob.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Collation.class b/target/classes/com/mysql/jdbc/Collation.class deleted file mode 100644 index d58bc2b1..00000000 Binary files a/target/classes/com/mysql/jdbc/Collation.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CommunicationsException.class b/target/classes/com/mysql/jdbc/CommunicationsException.class deleted file mode 100644 index 957e69a2..00000000 Binary files a/target/classes/com/mysql/jdbc/CommunicationsException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/CompressedInputStream.class b/target/classes/com/mysql/jdbc/CompressedInputStream.class deleted file mode 100644 index bc8be4ec..00000000 Binary files a/target/classes/com/mysql/jdbc/CompressedInputStream.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Connection.class b/target/classes/com/mysql/jdbc/Connection.class deleted file mode 100644 index 2666fb44..00000000 Binary files a/target/classes/com/mysql/jdbc/Connection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionFeatureNotAvailableException.class b/target/classes/com/mysql/jdbc/ConnectionFeatureNotAvailableException.class deleted file mode 100644 index c70b9fd2..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionFeatureNotAvailableException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionGroup.class b/target/classes/com/mysql/jdbc/ConnectionGroup.class deleted file mode 100644 index 6960bb61..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionGroup.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionGroupManager.class b/target/classes/com/mysql/jdbc/ConnectionGroupManager.class deleted file mode 100644 index ce44e8d1..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionGroupManager.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$1.class b/target/classes/com/mysql/jdbc/ConnectionImpl$1.class deleted file mode 100644 index 9b865ff6..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$10.class b/target/classes/com/mysql/jdbc/ConnectionImpl$10.class deleted file mode 100644 index 39eec67c..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$10.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$11.class b/target/classes/com/mysql/jdbc/ConnectionImpl$11.class deleted file mode 100644 index 1271902b..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$11.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$12.class b/target/classes/com/mysql/jdbc/ConnectionImpl$12.class deleted file mode 100644 index 4813ad9c..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$12.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$2.class b/target/classes/com/mysql/jdbc/ConnectionImpl$2.class deleted file mode 100644 index 3c455643..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$2.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$3.class b/target/classes/com/mysql/jdbc/ConnectionImpl$3.class deleted file mode 100644 index 82c635f0..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$3.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$4.class b/target/classes/com/mysql/jdbc/ConnectionImpl$4.class deleted file mode 100644 index 611786d4..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$4.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$5.class b/target/classes/com/mysql/jdbc/ConnectionImpl$5.class deleted file mode 100644 index b407b821..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$5.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$6.class b/target/classes/com/mysql/jdbc/ConnectionImpl$6.class deleted file mode 100644 index 226d716d..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$6.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$7.class b/target/classes/com/mysql/jdbc/ConnectionImpl$7.class deleted file mode 100644 index 36ef6f8e..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$7.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$8.class b/target/classes/com/mysql/jdbc/ConnectionImpl$8.class deleted file mode 100644 index 39fa8141..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$8.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$9.class b/target/classes/com/mysql/jdbc/ConnectionImpl$9.class deleted file mode 100644 index 8323ea1d..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$9.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$CompoundCacheKey.class b/target/classes/com/mysql/jdbc/ConnectionImpl$CompoundCacheKey.class deleted file mode 100644 index 4cb86ba9..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$CompoundCacheKey.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl$ExceptionInterceptorChain.class b/target/classes/com/mysql/jdbc/ConnectionImpl$ExceptionInterceptorChain.class deleted file mode 100644 index dc1e43fb..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl$ExceptionInterceptorChain.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionImpl.class b/target/classes/com/mysql/jdbc/ConnectionImpl.class deleted file mode 100644 index 4eeb7535..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionImpl.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionLifecycleInterceptor.class b/target/classes/com/mysql/jdbc/ConnectionLifecycleInterceptor.class deleted file mode 100644 index a588ffc9..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionLifecycleInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionProperties.class b/target/classes/com/mysql/jdbc/ConnectionProperties.class deleted file mode 100644 index 04c7e999..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionProperties.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$1.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$1.class deleted file mode 100644 index acd81fa5..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$BooleanConnectionProperty.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$BooleanConnectionProperty.class deleted file mode 100644 index adcf2495..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$BooleanConnectionProperty.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$ConnectionProperty.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$ConnectionProperty.class deleted file mode 100644 index fc9eb9b6..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$ConnectionProperty.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$IntegerConnectionProperty.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$IntegerConnectionProperty.class deleted file mode 100644 index 0a40a2d0..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$IntegerConnectionProperty.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$LongConnectionProperty.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$LongConnectionProperty.class deleted file mode 100644 index 60c16892..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$LongConnectionProperty.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$MemorySizeConnectionProperty.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$MemorySizeConnectionProperty.class deleted file mode 100644 index a2a0b8c1..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$MemorySizeConnectionProperty.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$StringConnectionProperty.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$StringConnectionProperty.class deleted file mode 100644 index 9bb8656e..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$StringConnectionProperty.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$XmlMap.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$XmlMap.class deleted file mode 100644 index 1c1f2519..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl$XmlMap.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl.class deleted file mode 100644 index 67aa9e61..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesImpl.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ConnectionPropertiesTransform.class b/target/classes/com/mysql/jdbc/ConnectionPropertiesTransform.class deleted file mode 100644 index 0380ccf1..00000000 Binary files a/target/classes/com/mysql/jdbc/ConnectionPropertiesTransform.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Constants.class b/target/classes/com/mysql/jdbc/Constants.class deleted file mode 100644 index a87e187b..00000000 Binary files a/target/classes/com/mysql/jdbc/Constants.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$1.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$1.class deleted file mode 100644 index 0df50d85..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$10.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$10.class deleted file mode 100644 index 4ef8c992..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$10.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$11.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$11.class deleted file mode 100644 index 507de1a9..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$11.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$2.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$2.class deleted file mode 100644 index d33d8a85..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$2.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$3.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$3.class deleted file mode 100644 index d34f18b3..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$3.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$4.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$4.class deleted file mode 100644 index 95183fdb..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$4.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$5.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$5.class deleted file mode 100644 index 83fc3d6b..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$5.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$6.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$6.class deleted file mode 100644 index ac6d5e2c..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$6.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$7.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$7.class deleted file mode 100644 index d2f586c6..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$7.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$8.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$8.class deleted file mode 100644 index 6ecca85b..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$8.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$9.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$9.class deleted file mode 100644 index 96a21bd1..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$9.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$ComparableWrapper.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$ComparableWrapper.class deleted file mode 100644 index 311b57a8..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$ComparableWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$IndexMetaDataKey.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$IndexMetaDataKey.class deleted file mode 100644 index deda2ff4..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$IndexMetaDataKey.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$IteratorWithCleanup.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$IteratorWithCleanup.class deleted file mode 100644 index 2e92ac0d..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$IteratorWithCleanup.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$LocalAndReferencedColumns.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$LocalAndReferencedColumns.class deleted file mode 100644 index e6b62799..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$LocalAndReferencedColumns.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$ProcedureType.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$ProcedureType.class deleted file mode 100644 index c791e461..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$ProcedureType.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$ResultSetIterator.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$ResultSetIterator.class deleted file mode 100644 index b58e5dee..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$ResultSetIterator.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$SingleStringIterator.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$SingleStringIterator.class deleted file mode 100644 index 7429081e..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$SingleStringIterator.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$TableMetaDataKey.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$TableMetaDataKey.class deleted file mode 100644 index 0f4783dc..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$TableMetaDataKey.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$TableType.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$TableType.class deleted file mode 100644 index 21180524..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$TableType.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData$TypeDescriptor.class b/target/classes/com/mysql/jdbc/DatabaseMetaData$TypeDescriptor.class deleted file mode 100644 index ee3f1188..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData$TypeDescriptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaData.class b/target/classes/com/mysql/jdbc/DatabaseMetaData.class deleted file mode 100644 index 9c4da0b5..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaData.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaDataUsingInfoSchema$JDBC4FunctionConstant.class b/target/classes/com/mysql/jdbc/DatabaseMetaDataUsingInfoSchema$JDBC4FunctionConstant.class deleted file mode 100644 index bb12e8ab..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaDataUsingInfoSchema$JDBC4FunctionConstant.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DatabaseMetaDataUsingInfoSchema.class b/target/classes/com/mysql/jdbc/DatabaseMetaDataUsingInfoSchema.class deleted file mode 100644 index cff1ac61..00000000 Binary files a/target/classes/com/mysql/jdbc/DatabaseMetaDataUsingInfoSchema.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/DocsConnectionPropsHelper.class b/target/classes/com/mysql/jdbc/DocsConnectionPropsHelper.class deleted file mode 100644 index 6cbc6784..00000000 Binary files a/target/classes/com/mysql/jdbc/DocsConnectionPropsHelper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Driver.class b/target/classes/com/mysql/jdbc/Driver.class deleted file mode 100644 index 666b6b5d..00000000 Binary files a/target/classes/com/mysql/jdbc/Driver.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/EscapeProcessor.class b/target/classes/com/mysql/jdbc/EscapeProcessor.class deleted file mode 100644 index a5e83b6d..00000000 Binary files a/target/classes/com/mysql/jdbc/EscapeProcessor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/EscapeProcessorResult.class b/target/classes/com/mysql/jdbc/EscapeProcessorResult.class deleted file mode 100644 index 9a3839b3..00000000 Binary files a/target/classes/com/mysql/jdbc/EscapeProcessorResult.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/EscapeTokenizer.class b/target/classes/com/mysql/jdbc/EscapeTokenizer.class deleted file mode 100644 index 9c1a0b71..00000000 Binary files a/target/classes/com/mysql/jdbc/EscapeTokenizer.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ExceptionInterceptor.class b/target/classes/com/mysql/jdbc/ExceptionInterceptor.class deleted file mode 100644 index def2b226..00000000 Binary files a/target/classes/com/mysql/jdbc/ExceptionInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ExportControlled$1.class b/target/classes/com/mysql/jdbc/ExportControlled$1.class deleted file mode 100644 index ed91287c..00000000 Binary files a/target/classes/com/mysql/jdbc/ExportControlled$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ExportControlled$StandardSSLSocketFactory.class b/target/classes/com/mysql/jdbc/ExportControlled$StandardSSLSocketFactory.class deleted file mode 100644 index d2e47954..00000000 Binary files a/target/classes/com/mysql/jdbc/ExportControlled$StandardSSLSocketFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ExportControlled.class b/target/classes/com/mysql/jdbc/ExportControlled.class deleted file mode 100644 index 4075741f..00000000 Binary files a/target/classes/com/mysql/jdbc/ExportControlled.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Extension.class b/target/classes/com/mysql/jdbc/Extension.class deleted file mode 100644 index 199eafc6..00000000 Binary files a/target/classes/com/mysql/jdbc/Extension.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/FailoverConnectionProxy$FailoverJdbcInterfaceProxy.class b/target/classes/com/mysql/jdbc/FailoverConnectionProxy$FailoverJdbcInterfaceProxy.class deleted file mode 100644 index 2313a491..00000000 Binary files a/target/classes/com/mysql/jdbc/FailoverConnectionProxy$FailoverJdbcInterfaceProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/FailoverConnectionProxy.class b/target/classes/com/mysql/jdbc/FailoverConnectionProxy.class deleted file mode 100644 index ae042f6c..00000000 Binary files a/target/classes/com/mysql/jdbc/FailoverConnectionProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Field.class b/target/classes/com/mysql/jdbc/Field.class deleted file mode 100644 index 9b87a3cb..00000000 Binary files a/target/classes/com/mysql/jdbc/Field.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/IterateBlock.class b/target/classes/com/mysql/jdbc/IterateBlock.class deleted file mode 100644 index 303a6cb4..00000000 Binary files a/target/classes/com/mysql/jdbc/IterateBlock.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC42CallableStatement.class b/target/classes/com/mysql/jdbc/JDBC42CallableStatement.class deleted file mode 100644 index 867a4ae8..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC42CallableStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC42Helper.class b/target/classes/com/mysql/jdbc/JDBC42Helper.class deleted file mode 100644 index 3e717fd8..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC42Helper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC42PreparedStatement.class b/target/classes/com/mysql/jdbc/JDBC42PreparedStatement.class deleted file mode 100644 index 2743adf0..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC42PreparedStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC42ResultSet.class b/target/classes/com/mysql/jdbc/JDBC42ResultSet.class deleted file mode 100644 index 15858384..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC42ResultSet.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC42ServerPreparedStatement.class b/target/classes/com/mysql/jdbc/JDBC42ServerPreparedStatement.class deleted file mode 100644 index 2fefe1a9..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC42ServerPreparedStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC42UpdatableResultSet.class b/target/classes/com/mysql/jdbc/JDBC42UpdatableResultSet.class deleted file mode 100644 index 7afe9d9d..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC42UpdatableResultSet.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4CallableStatement.class b/target/classes/com/mysql/jdbc/JDBC4CallableStatement.class deleted file mode 100644 index 86c1502b..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4CallableStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4ClientInfoProvider.class b/target/classes/com/mysql/jdbc/JDBC4ClientInfoProvider.class deleted file mode 100644 index e4369774..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4ClientInfoProvider.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4ClientInfoProviderSP.class b/target/classes/com/mysql/jdbc/JDBC4ClientInfoProviderSP.class deleted file mode 100644 index b278ff78..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4ClientInfoProviderSP.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4CommentClientInfoProvider.class b/target/classes/com/mysql/jdbc/JDBC4CommentClientInfoProvider.class deleted file mode 100644 index a7a126c1..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4CommentClientInfoProvider.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4Connection.class b/target/classes/com/mysql/jdbc/JDBC4Connection.class deleted file mode 100644 index 22a23fba..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4Connection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaData.class b/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaData.class deleted file mode 100644 index 2088bd1a..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaData.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaDataUsingInfoSchema$1.class b/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaDataUsingInfoSchema$1.class deleted file mode 100644 index 81bae3bb..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaDataUsingInfoSchema$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaDataUsingInfoSchema.class b/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaDataUsingInfoSchema.class deleted file mode 100644 index 9d5336e1..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4DatabaseMetaDataUsingInfoSchema.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4LoadBalancedMySQLConnection.class b/target/classes/com/mysql/jdbc/JDBC4LoadBalancedMySQLConnection.class deleted file mode 100644 index f7c6bf52..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4LoadBalancedMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4MultiHostMySQLConnection.class b/target/classes/com/mysql/jdbc/JDBC4MultiHostMySQLConnection.class deleted file mode 100644 index c44ae49e..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4MultiHostMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4MySQLConnection.class b/target/classes/com/mysql/jdbc/JDBC4MySQLConnection.class deleted file mode 100644 index efb22b00..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4MySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4MysqlSQLXML$SimpleSaxToReader.class b/target/classes/com/mysql/jdbc/JDBC4MysqlSQLXML$SimpleSaxToReader.class deleted file mode 100644 index bba7bb4e..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4MysqlSQLXML$SimpleSaxToReader.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4MysqlSQLXML.class b/target/classes/com/mysql/jdbc/JDBC4MysqlSQLXML.class deleted file mode 100644 index 6f68646d..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4MysqlSQLXML.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4NClob.class b/target/classes/com/mysql/jdbc/JDBC4NClob.class deleted file mode 100644 index f91b6479..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4NClob.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4PreparedStatement.class b/target/classes/com/mysql/jdbc/JDBC4PreparedStatement.class deleted file mode 100644 index 10ad1fb2..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4PreparedStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4PreparedStatementHelper.class b/target/classes/com/mysql/jdbc/JDBC4PreparedStatementHelper.class deleted file mode 100644 index 8bad6fa6..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4PreparedStatementHelper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4ReplicationMySQLConnection.class b/target/classes/com/mysql/jdbc/JDBC4ReplicationMySQLConnection.class deleted file mode 100644 index f361e51e..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4ReplicationMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4ResultSet.class b/target/classes/com/mysql/jdbc/JDBC4ResultSet.class deleted file mode 100644 index 7aec40df..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4ResultSet.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4ServerPreparedStatement.class b/target/classes/com/mysql/jdbc/JDBC4ServerPreparedStatement.class deleted file mode 100644 index 2673953d..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4ServerPreparedStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/JDBC4UpdatableResultSet.class b/target/classes/com/mysql/jdbc/JDBC4UpdatableResultSet.class deleted file mode 100644 index cb0e9905..00000000 Binary files a/target/classes/com/mysql/jdbc/JDBC4UpdatableResultSet.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LicenseConfiguration.class b/target/classes/com/mysql/jdbc/LicenseConfiguration.class deleted file mode 100644 index f4b7e454..00000000 Binary files a/target/classes/com/mysql/jdbc/LicenseConfiguration.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LoadBalanceExceptionChecker.class b/target/classes/com/mysql/jdbc/LoadBalanceExceptionChecker.class deleted file mode 100644 index c4682eec..00000000 Binary files a/target/classes/com/mysql/jdbc/LoadBalanceExceptionChecker.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LoadBalancedAutoCommitInterceptor.class b/target/classes/com/mysql/jdbc/LoadBalancedAutoCommitInterceptor.class deleted file mode 100644 index 3c2095b5..00000000 Binary files a/target/classes/com/mysql/jdbc/LoadBalancedAutoCommitInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LoadBalancedConnection.class b/target/classes/com/mysql/jdbc/LoadBalancedConnection.class deleted file mode 100644 index 095f3ff0..00000000 Binary files a/target/classes/com/mysql/jdbc/LoadBalancedConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LoadBalancedConnectionProxy$NullLoadBalancedConnectionProxy.class b/target/classes/com/mysql/jdbc/LoadBalancedConnectionProxy$NullLoadBalancedConnectionProxy.class deleted file mode 100644 index c383c461..00000000 Binary files a/target/classes/com/mysql/jdbc/LoadBalancedConnectionProxy$NullLoadBalancedConnectionProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LoadBalancedConnectionProxy.class b/target/classes/com/mysql/jdbc/LoadBalancedConnectionProxy.class deleted file mode 100644 index bda33fa5..00000000 Binary files a/target/classes/com/mysql/jdbc/LoadBalancedConnectionProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LoadBalancedMySQLConnection.class b/target/classes/com/mysql/jdbc/LoadBalancedMySQLConnection.class deleted file mode 100644 index 77f163bc..00000000 Binary files a/target/classes/com/mysql/jdbc/LoadBalancedMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/LocalizedErrorMessages.properties b/target/classes/com/mysql/jdbc/LocalizedErrorMessages.properties deleted file mode 100644 index 751caf05..00000000 --- a/target/classes/com/mysql/jdbc/LocalizedErrorMessages.properties +++ /dev/null @@ -1,708 +0,0 @@ -# -# Fixed -# - -ResultSet.Retrieved__1=Retrieved -ResultSet.Bad_format_for_BigDecimal=Bad format for BigDecimal ''{0}'' in column {1}. -ResultSet.Bad_format_for_BigInteger=Bad format for BigInteger ''{0}'' in column {1}. -ResultSet.Column_Index_out_of_range_low=Column Index out of range, {0} < 1. -ResultSet.Column_Index_out_of_range_high=Column Index out of range, {0} > {1}. -ResultSet.Value_is_out_of_range=Value ''{0}'' is out of range [{1}, {2}]. -ResultSet.Positioned_Update_not_supported=Positioned Update not supported. -ResultSet.Bad_format_for_Date=Bad format for DATE ''{0}'' in column {1}. -ResultSet.Bad_format_for_Column=Bad format for {0} ''{1}'' in column {2} ({3}). -ResultSet.Bad_format_for_number=Bad format for number ''{0}'' in column {1}. -ResultSet.Illegal_operation_on_empty_result_set=Illegal operation on empty result set. - -Statement.0=Connection is closed. -Statement.2=Unsupported character encoding ''{0}'' -Statement.5=Illegal value for setFetchDirection(). -Statement.7=Illegal value for setFetchSize(). -Statement.11=Illegal value for setMaxFieldSize(). -Statement.13=Can not set max field size > max allowed packet of {0} bytes. -Statement.15=setMaxRows() out of range. -Statement.19=Illegal flag for getMoreResults(int). -Statement.21=Illegal value for setQueryTimeout(). -Statement.27=Connection is read-only. -Statement.28=Queries leading to data modification are not allowed. -Statement.34=Connection is read-only. -Statement.35=Queries leading to data modification are not allowed. -Statement.40=Can not issue INSERT/UPDATE/DELETE with executeQuery(). -Statement.42=Connection is read-only. -Statement.43=Queries leading to data modification are not allowed. -Statement.46=Can not issue SELECT via executeUpdate() or executeLargeUpdate(). -Statement.49=No operations allowed after statement closed. -Statement.57=Can not issue data manipulation statements with executeQuery(). -Statement.59=Can not issue NULL query. -Statement.61=Can not issue empty query. -Statement.63=Statement not closed explicitly. You should call close() on created -Statement.64=Statement instances from your code to be more efficient. -Statement.GeneratedKeysNotRequested=Generated keys not requested. You need to specify Statement.RETURN_GENERATED_KEYS to Statement.executeUpdate(), Statement.executeLargeUpdate() or Connection.prepareStatement(). -Statement.ConnectionKilledDueToTimeout=Connection closed to due to statement timeout being reached and "queryTimeoutKillsConnection" being set to "true". -UpdatableResultSet.1=Can not call deleteRow() when on insert row. -UpdatableResultSet.2=Can not call deleteRow() on empty result set. -UpdatableResultSet.3=Before start of result set. Can not call deleteRow(). -UpdatableResultSet.4=After end of result set. Can not call deleteRow(). -UpdatableResultSet.7=Not on insert row. -UpdatableResultSet.8=Can not call refreshRow() when on insert row. -UpdatableResultSet.9=Can not call refreshRow() on empty result set. -UpdatableResultSet.10=Before start of result set. Can not call refreshRow(). -UpdatableResultSet.11=After end of result set. Can not call refreshRow(). -UpdatableResultSet.12=refreshRow() called on row that has been deleted or had primary key changed. -UpdatableResultSet.34=Updatable result set created, but never updated. You should only create updatable result sets when you want to update/insert/delete values using the updateRow(), deleteRow() and insertRow() methods. -UpdatableResultSet.43=Can not create updatable result sets when there is no currently selected database and MySQL server version < 4.1. -UpdatableResultSet.44=Can not call updateRow() when on insert row. - -# -# Possible re-names -# - -ResultSet.Query_generated_no_fields_for_ResultSet_57=Query generated no fields for ResultSet -ResultSet.Illegal_value_for_fetch_direction_64=Illegal value for fetch direction -ResultSet.Value_must_be_between_0_and_getMaxRows()_66=Value must be between 0 and getMaxRows() -ResultSet.Query_generated_no_fields_for_ResultSet_99=Query generated no fields for ResultSet -ResultSet.Operation_not_allowed_after_ResultSet_closed_144=Operation not allowed after ResultSet closed -ResultSet.Before_start_of_result_set_146=Before start of result set -ResultSet.After_end_of_result_set_148=After end of result set -ResultSet.Query_generated_no_fields_for_ResultSet_133=Query generated no fields for ResultSet -ResultSet.ResultSet_is_from_UPDATE._No_Data_115=ResultSet is from UPDATE. No Data. -ResultSet.N/A_159=N/A - -# -# To fix -# - -ResultSet.Invalid_value_for_getFloat()_-____68=Invalid value for getFloat() - \' -ResultSet.Invalid_value_for_getInt()_-____74=Invalid value for getInt() - \' -ResultSet.Invalid_value_for_getLong()_-____79=Invalid value for getLong() - \' -ResultSet.Invalid_value_for_getFloat()_-____200=Invalid value for getFloat() - \' -ResultSet.___in_column__201=\' in column -ResultSet.Invalid_value_for_getInt()_-____206=Invalid value for getInt() - \' -ResultSet.___in_column__207=\' in column -ResultSet.Invalid_value_for_getLong()_-____211=Invalid value for getLong() - \' -ResultSet.___in_column__212=\' in column -ResultSet.Invalid_value_for_getShort()_-____217=Invalid value for getShort() - \' -ResultSet.___in_column__218=\' in column - -ResultSet.Class_not_found___91=Class not found: -ResultSet._while_reading_serialized_object_92=\ while reading serialized object - -ResultSet.Invalid_value_for_getShort()_-____96=Invalid value for getShort() - \' -ResultSet.Unsupported_character_encoding____101=Unsupported character encoding \' - -ResultSet.Malformed_URL____104=Malformed URL \' -ResultSet.Malformed_URL____107=Malformed URL \' -ResultSet.Malformed_URL____141=Malformed URL \' - -ResultSet.Column____112=Column \' -ResultSet.___not_found._113=\' not found. - -ResultSet.Unsupported_character_encoding____135=Unsupported character encoding \' -ResultSet.Unsupported_character_encoding____138=Unsupported character encoding \' - -# -# Usage advisor messages for ResultSets -# - -ResultSet.ResultSet_implicitly_closed_by_driver=ResultSet implicitly closed by driver.\n\nYou should close ResultSets explicitly from your code to free up resources in a more efficient manner. -ResultSet.Possible_incomplete_traversal_of_result_set=Possible incomplete traversal of result set. Cursor was left on row {0} of {1} rows when it was closed.\n\nYou should consider re-formulating your query to return only the rows you are interested in using. -ResultSet.The_following_columns_were_never_referenced=The following columns were part of the SELECT statement for this result set, but were never referenced: -ResultSet.Too_Large_Result_Set=Result set size of {0} rows is larger than \"resultSetSizeThreshold\" of {1} rows. Application may be requesting more data than it is using. Consider reformulating the query. -ResultSet.CostlyConversion=ResultSet type conversion via parsing detected when calling {0} for column {1} (column named ''{2}'') in table ''{3}''{4}\n\nJava class of column type is ''{5}'', MySQL field type is ''{6}''.\n\nTypes that could be converted directly without parsing are:\n{7} -ResultSet.CostlyConversionCreatedFromQuery= created from query:\n\n - -ResultSet.Value____173=Value \' -ResultSetMetaData.46=Column index out of range. -ResultSet.___is_out_of_range_[-127,127]_174=\' is out of range [-127,127] -ResultSet.Bad_format_for_Date____180=Bad format for Date \' - -ResultSet.Timestamp_too_small_to_convert_to_Time_value_in_column__223=Timestamp too small to convert to Time value in column -ResultSet.Precision_lost_converting_TIMESTAMP_to_Time_with_getTime()_on_column__227=Precision lost converting TIMESTAMP to Time with getTime() on column -ResultSet.Precision_lost_converting_DATETIME_to_Time_with_getTime()_on_column__230=Precision lost converting DATETIME to Time with getTime() on column -ResultSet.Bad_format_for_Time____233=Bad format for Time \' -ResultSet.___in_column__234=\' in column -ResultSet.Bad_format_for_Timestamp____244=Bad format for Timestamp \' -ResultSet.___in_column__245=\' in column -ResultSet.Cannot_convert_value____249=Cannot convert value \' -ResultSet.___from_column__250=\' from column -ResultSet._)_to_TIMESTAMP._252=\ ) to TIMESTAMP. -ResultSet.Timestamp_too_small_to_convert_to_Time_value_in_column__257=Timestamp too small to convert to Time value in column -ResultSet.Precision_lost_converting_TIMESTAMP_to_Time_with_getTime()_on_column__261=Precision lost converting TIMESTAMP to Time with getTime() on column -ResultSet.Precision_lost_converting_DATETIME_to_Time_with_getTime()_on_column__264=Precision lost converting DATETIME to Time with getTime() on column -ResultSet.Bad_format_for_Time____267=Bad format for Time \' -ResultSet.___in_column__268=\' in column -ResultSet.Bad_format_for_Timestamp____278=Bad format for Timestamp \' -ResultSet.___in_column__279=\' in column -ResultSet.Cannot_convert_value____283=Cannot convert value \' -ResultSet.___from_column__284=\' from column -ResultSet._)_to_TIMESTAMP._286=\ ) to TIMESTAMP. -CallableStatement.2=Parameter name can not be NULL or zero-length. -CallableStatement.3=No parameter named ' -CallableStatement.4=' -CallableStatement.5=Parameter named ' -CallableStatement.6=' is not an OUT parameter -CallableStatement.7=No output parameters registered. -CallableStatement.8=No output parameters returned by procedure. -CallableStatement.9=Parameter number -CallableStatement.10=\ is not an OUT parameter -CallableStatement.11=Parameter index of -CallableStatement.12=\ is out of range (1, -CallableStatement.13=) -CallableStatement.14=Can not use streaming result sets with callable statements that have output parameters -CallableStatement.1=Unable to retrieve metadata for procedure. -CallableStatement.0=Parameter name can not be -CallableStatement.15=null. -CallableStatement.16=empty. -CallableStatement.21=Parameter -CallableStatement.22=\ is not registered as an output parameter -CommunicationsException.2=\ is longer than the server configured value of -CommunicationsException.3='wait_timeout' -CommunicationsException.4='interactive_timeout' -CommunicationsException.5=may or may not be greater than the server-side timeout -CommunicationsException.6=(the driver was unable to determine the value of either the -CommunicationsException.7='wait_timeout' or 'interactive_timeout' configuration values from -CommunicationsException.8=the server. -CommunicationsException.11=. You should consider either expiring and/or testing connection validity -CommunicationsException.12=before use in your application, increasing the server configured values for client timeouts, -CommunicationsException.13=or using the Connector/J connection property 'autoReconnect=true' to avoid this problem. -CommunicationsException.TooManyClientConnections=The driver was unable to create a connection due to an inability to establish the client portion of a socket.\n\nThis is usually caused by a limit on the number of sockets imposed by the operating system. This limit is usually configurable. \n\nFor Unix-based platforms, see the manual page for the 'ulimit' command. Kernel or system reconfiguration may also be required.\n\nFor Windows-based platforms, see Microsoft Knowledge Base Article 196271 (Q196271). -CommunicationsException.LocalSocketAddressNotAvailable=The configuration parameter \"localSocketAddress\" has been set to a network interface not available for use by the JVM. -CommunicationsException.20=Communications link failure -CommunicationsException.ClientWasStreaming=Application was streaming results when the connection failed. Consider raising value of 'net_write_timeout' on the server. -CommunicationsException.ServerPacketTimingInfoNoRecv=The last packet sent successfully to the server was {0} milliseconds ago. The driver has not received any packets from the server. -CommunicationsException.ServerPacketTimingInfo=The last packet successfully received from the server was {0} milliseconds ago. The last packet sent successfully to the server was {1} milliseconds ago. -CommunicationsException.TooManyAuthenticationPluginNegotiations=Too many authentication plugin negotiations. -NonRegisteringDriver.1=The url cannot be null -NonRegisteringDriver.3=Hostname of MySQL Server -NonRegisteringDriver.7=Port number of MySQL Server -NonRegisteringDriver.13=Username to authenticate as -NonRegisteringDriver.16=Password to use for authentication -NonRegisteringDriver.17=Cannot load connection class because of underlying exception: ' -NonRegisteringDriver.18='. -NonRegisteringDriver.37=Must specify port after ':' in connection string -SQLError.35=Disconnect error -SQLError.36=Data truncated -SQLError.37=Privilege not revoked -SQLError.38=Invalid connection string attribute -SQLError.39=Error in row -SQLError.40=No rows updated or deleted -SQLError.41=More than one row updated or deleted -SQLError.42=Wrong number of parameters -SQLError.43=Unable to connect to data source -SQLError.44=Connection in use -SQLError.45=Connection not open -SQLError.46=Data source rejected establishment of connection -SQLError.47=Connection failure during transaction -SQLError.48=Communication link failure -SQLError.49=Insert value list does not match column list -SQLError.50=Numeric value out of range -SQLError.51=Datetime field overflow -SQLError.52=Division by zero -SQLError.53=Deadlock found when trying to get lock; Try restarting transaction -SQLError.54=Invalid authorization specification -SQLError.55=Syntax error or access violation -SQLError.56=Base table or view not found -SQLError.57=Base table or view already exists -SQLError.58=Base table not found -SQLError.59=Index already exists -SQLError.60=Index not found -SQLError.61=Column already exists -SQLError.62=Column not found -SQLError.63=No default for column -SQLError.64=General error -SQLError.65=Memory allocation failure -SQLError.66=Invalid column number -SQLError.67=Invalid argument value -SQLError.68=Driver not capable -SQLError.69=Timeout expired -ChannelBuffer.0=Unsupported character encoding ' -ChannelBuffer.1=' -Field.12=Unsupported character encoding ' -Field.13=' - -Blob.0=indexToWriteAt must be >= 1 -Blob.1=IO Error while writing bytes to blob -Blob.2=Position 'pos' can not be < 1 -Blob.invalidStreamLength=Requested stream length of {2} is out of range, given blob length of {0} and starting position of {1}. -Blob.invalidStreamPos=Position 'pos' can not be < 1 or > blob length. - -StringUtils.0=Unsupported character encoding ' -StringUtils.1='. -StringUtils.5=Unsupported character encoding ' -StringUtils.6='. -StringUtils.10=Unsupported character encoding ' -StringUtils.11='. -StringUtils.15=Illegal argument value {0} for openingMarkers and/or {1} for closingMarkers. These cannot be null and must have the same length. -RowDataDynamic.2=WARN: Possible incomplete traversal of result set. Streaming result set had -RowDataDynamic.3=\ rows left to read when it was closed. -RowDataDynamic.4=\n\nYou should consider re-formulating your query to -RowDataDynamic.5=return only the rows you are interested in using. -RowDataDynamic.6=\n\nResultSet was created at: -RowDataDynamic.7=\n\nNested Stack Trace:\n -RowDataDynamic.8=Error retrieving record: Unexpected Exception: -RowDataDynamic.9=\ message given: -RowDataDynamic.10=Operation not supported for streaming result sets -Clob.0=indexToWriteAt must be >= 1 -Clob.1=indexToWriteAt must be >= 1 -Clob.2=Starting position can not be < 1 -Clob.3=String to set can not be NULL -Clob.4=Starting position can not be < 1 -Clob.5=String to set can not be NULL -Clob.6=CLOB start position can not be < 1 -Clob.7=CLOB start position + length can not be > length of CLOB -Clob.8=Illegal starting position for search, ' -Clob.9=' -Clob.10=Starting position for search is past end of CLOB -Clob.11=Cannot truncate CLOB of length -Clob.12=\ to length of -Clob.13=. -PacketTooBigException.0=Packet for query is too large ( -PacketTooBigException.1=\ > -PacketTooBigException.2=). -PacketTooBigException.3=You can change this value on the server by setting the -PacketTooBigException.4=max_allowed_packet' variable. -Util.1=\n\n** BEGIN NESTED EXCEPTION ** \n\n -Util.2=\nMESSAGE: -Util.3=\n\nSTACKTRACE:\n\n -Util.4=\n\n** END NESTED EXCEPTION **\n\n -MiniAdmin.0=Conection can not be null. -MiniAdmin.1=MiniAdmin can only be used with MySQL connections -NamedPipeSocketFactory.2=Can not specify NULL or empty value for property ' -NamedPipeSocketFactory.3='. -NamedPipeSocketFactory.4=Named pipe path can not be null or empty -MysqlIO.1=Unexpected end of input stream -MysqlIO.2=Reading packet of length -MysqlIO.3=\nPacket header:\n -MysqlIO.4=readPacket() payload:\n -MysqlIO.8=Slow query explain results for ' -MysqlIO.9=' :\n\n -MysqlIO.10=\ message from server: " -MysqlIO.15=SSL Connection required, but not supported by server. -MysqlIO.17=Attempt to close streaming result set -MysqlIO.18=\ when no streaming result set was registered. This is an internal error. -MysqlIO.19=Attempt to close streaming result set -MysqlIO.20=\ that was not registered. -MysqlIO.21=\ Only one streaming result set may be open and in use per-connection. Ensure that you have called .close() on -MysqlIO.22=\ any active result sets before attempting more queries. -MysqlIO.23=Can not use streaming results with multiple result statements -MysqlIO.25=\ ... (truncated) -MysqlIO.SlowQuery=Slow query (exceeded {0} {1}, duration: {2} {1}): -MysqlIO.ServerSlowQuery=The server processing the query has indicated that the query was marked "slow". -Nanoseconds=ns -Milliseconds=ms -MysqlIO.28=Not issuing EXPLAIN for query of size > -MysqlIO.29=\ bytes. -MysqlIO.33=The following query was executed with a bad index, use 'EXPLAIN' for more details: -MysqlIO.35=The following query was executed using no index, use 'EXPLAIN' for more details: -MysqlIO.36=\n\nLarge packet dump truncated at -MysqlIO.37=\ bytes. -MysqlIO.39=Streaming result set -MysqlIO.40=\ is still active. -MysqlIO.41=\ No statements may be issued when any streaming result sets are open and in use on a given connection. -MysqlIO.42=\ Ensure that you have called .close() on any active streaming result sets before attempting more queries. -MysqlIO.43=Unexpected end of input stream -MysqlIO.44=Reading reusable packet of length -MysqlIO.45=\nPacket header:\n -MysqlIO.46=reuseAndReadPacket() payload:\n -MysqlIO.47=Unexpected end of input stream -MysqlIO.48=Unexpected end of input stream -MysqlIO.49=Packets received out of order -MysqlIO.50=Short read from server, expected -MysqlIO.51=\ bytes, received only -MysqlIO.57=send() compressed packet:\n -MysqlIO.58=\n\nOriginal packet (uncompressed):\n -MysqlIO.59=send() packet payload:\n -MysqlIO.60=Unable to open file -MysqlIO.63=for 'LOAD DATA LOCAL INFILE' command. -MysqlIO.64=Due to underlying IOException: -MysqlIO.65=Unable to close local file during LOAD DATA LOCAL INFILE command -MysqlIO.68=\ message from server: " -MysqlIO.70=Unknown column -MysqlIO.72=\ message from server: " -MysqlIO.75=No name specified for socket factory -MysqlIO.76=Could not create socket factory ' -MysqlIO.77=' due to underlying exception: -MysqlIO.79=Unexpected end of input stream -MysqlIO.80=Unexpected end of input stream -MysqlIO.81=Unexpected end of input stream -MysqlIO.82=Unexpected end of input stream -MysqlIO.83=Packets received out of order -MysqlIO.84=Packets received out of order -MysqlIO.85=Unexpected end of input stream -MysqlIO.86=Unexpected end of input stream -MysqlIO.87=Unexpected end of input stream -MysqlIO.88=Packets received out of order -MysqlIO.89=Packets received out of order -MysqlIO.91=Failed to create message digest 'SHA-1' for authentication. -MysqlIO.92=\ You must use a JDK that supports JCE to be able to use secure connection authentication -MysqlIO.97=Unknown type ' -MysqlIO.98=\ in column -MysqlIO.99=\ of -MysqlIO.100=\ in binary-encoded result set. -MysqlIO.102=, underlying cause: -MysqlIO.103=Unexpected packet length -MysqlIO.EOF=Can not read response from server. Expected to read {0} bytes, read {1} bytes before connection was unexpectedly lost. -MysqlIO.NoInnoDBStatusFound=No InnoDB status output returned by server. -MysqlIO.InnoDBStatusFailed=Couldn't retrieve InnoDB status due to underlying exception: -MysqlIO.LoadDataLocalNotAllowed=Server asked for stream in response to LOAD DATA LOCAL INFILE but functionality is disabled at client by 'allowLoadLocalInfile' being set to 'false'. -MysqlIO.SSLWarning=Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. -NotImplemented.0=Feature not implemented -UnsupportedSQLType.0=Unsupported SQL type: -PreparedStatement.0=SQL String can not be NULL -PreparedStatement.1=SQL String can not be NULL -PreparedStatement.2=Parameter index out of range ( -PreparedStatement.3=\ > -PreparedStatement.4=) -PreparedStatement.16=Unknown Types value -PreparedStatement.17=Cannot convert -PreparedStatement.18=\ to SQL type requested due to -PreparedStatement.19=\ - -PreparedStatement.20=Connection is read-only. -PreparedStatement.21=Queries leading to data modification are not allowed -PreparedStatement.25=Connection is read-only. -PreparedStatement.26=Queries leading to data modification are not allowed -PreparedStatement.32=Unsupported character encoding ' -PreparedStatement.33=' -PreparedStatement.34=Connection is read-only. -PreparedStatement.35=Queries leading to data modification are not allowed -PreparedStatement.37=Can not issue executeUpdate() or executeLargeUpdate() for SELECTs -PreparedStatement.40=No value specified for parameter -PreparedStatement.43=PreparedStatement created, but used 1 or fewer times. It is more efficient to prepare statements once, and re-use them many times -PreparedStatement.48=PreparedStatement has been closed. No further operations allowed. -PreparedStatement.49=Parameter index out of range ( -PreparedStatement.50=\ < 1 ). -PreparedStatement.51=Parameter index out of range ( -PreparedStatement.52=\ > number of parameters, which is -PreparedStatement.53=). -PreparedStatement.54=Invalid argument value: -PreparedStatement.55=Error reading from InputStream -PreparedStatement.56=Error reading from InputStream -PreparedStatement.61=SQL String can not be NULL -ServerPreparedStatement.2=Connection is read-only. -ServerPreparedStatement.3=Queries leading to data modification are not allowed -ServerPreparedStatement.6=\ unable to materialize as string due to underlying SQLException: -ServerPreparedStatement.7=Not supported for server-side prepared statements. -ServerPreparedStatement.8=No parameters defined during prepareCall() -ServerPreparedStatement.9=Parameter index out of bounds. -ServerPreparedStatement.10=\ is not between valid values of 1 and -ServerPreparedStatement.11=Driver can not re-execute prepared statement when a parameter has been changed -ServerPreparedStatement.12=from a streaming type to an intrinsic data type without calling clearParameters() first. -ServerPreparedStatement.13=Statement parameter -ServerPreparedStatement.14=\ not set. -ServerPreparedStatement.15=Slow query (exceeded -ServerPreparedStatement.15a=\ ms., duration:\ -ServerPreparedStatement.16=\ ms): -ServerPreparedStatement.18=Unknown LONG DATA type ' -ServerPreparedStatement.22=Unsupported character encoding ' -ServerPreparedStatement.24=Error while reading binary stream: -ServerPreparedStatement.25=Error while reading binary stream: -ByteArrayBuffer.0=ByteArrayBuffer has no NIO buffers -ByteArrayBuffer.1=Unsupported character encoding ' -ByteArrayBuffer.2=Buffer length is less then "expectedLength" value. -AssertionFailedException.0=ASSERT FAILS: Exception -AssertionFailedException.1=\ that should not be thrown, was thrown -NotUpdatable.0=Result Set not updatable. -NotUpdatable.1=This result set must come from a statement -NotUpdatable.2=that was created with a result set type of ResultSet.CONCUR_UPDATABLE, -NotUpdatable.3=the query must select only one table, can not use functions and must -NotUpdatable.4=select all primary keys from that table. See the JDBC 2.1 API Specification, -NotUpdatable.5=section 5.6 for more details. -NotUpdatableReason.0=Result Set not updatable (references more than one table). -NotUpdatableReason.1=Result Set not updatable (references more than one database). -NotUpdatableReason.2=Result Set not updatable (references no tables). -NotUpdatableReason.3=Result Set not updatable (references computed values or doesn't reference any columns or tables). -NotUpdatableReason.4=Result Set not updatable (references no primary keys). -NotUpdatableReason.5=Result Set not updatable (referenced table has no primary keys). -NotUpdatableReason.6=Result Set not updatable (references unknown primary key {0}). -NotUpdatableReason.7=Result Set not updatable (does not reference all primary keys). - -JDBC4Connection.ClientInfoNotImplemented=Configured clientInfoProvider class ''{0}'' does not implement com.mysql.jdbc.JDBC4ClientInfoProvider. - -InvalidLoadBalanceStrategy=Invalid load balancing strategy ''{0}''. -Connection.BadValueInServerVariables=Invalid value ''{1}'' for server variable named ''{0}'', falling back to sane default of ''{2}''. - -Connection.UnableToConnect=Could not create connection to database server. -Connection.UnableToConnectWithRetries=Could not create connection to database server. \ -Attempted reconnect {0} times. Giving up. -Connection.UnexpectedException=Unexpected exception encountered during query. -Connection.UnhandledExceptionDuringShutdown=Unexpected exception during server shutdown. - -MysqlClearPasswordPlugin.1=Unsupported character encoding ''{0}'' for ''passwordCharacterEncoding'' or ''characterEncoding''. - -MysqlNativePasswordPlugin.1=Unsupported character encoding ''{0}'' for ''passwordCharacterEncoding'' or ''characterEncoding''. - -Sha256PasswordPlugin.0=Unable to read public key {0} -Sha256PasswordPlugin.1=Unable to close public key file -Sha256PasswordPlugin.2=Public Key Retrieval is not allowed -Sha256PasswordPlugin.3=Unsupported character encoding ''{0}'' for ''passwordCharacterEncoding'' or ''characterEncoding''. - -MysqlXAConnection.001=Invalid flag, must use TMNOFLAGS, or any combination of TMSTARTRSCAN and TMENDRSCAN -MysqlXAConnection.002=Error while recovering XIDs from RM. GTRID and BQUAL are wrong sizes -MysqlXAConnection.003=Undetermined error occurred in the underlying Connection - check your data for consistency - -# -# ConnectionProperty Categories -# - -ConnectionProperties.categoryConnectionAuthentication=Connection/Authentication -ConnectionProperties.categoryNetworking=Networking -ConnectionProperties.categoryDebuggingProfiling=Debugging/Profiling -ConnectionProperties.categorryHA=High Availability and Clustering -ConnectionProperties.categoryMisc=Miscellaneous -ConnectionProperties.categoryPerformance=Performance Extensions -ConnectionProperties.categorySecurity=Security - -# -# ConnectionProperty Descriptions -# - -ConnectionProperties.loadDataLocal=Should the driver allow use of 'LOAD DATA LOCAL INFILE...' (defaults to 'true'). -ConnectionProperties.allowMasterDownConnections=By default, a replication-aware connection will fail to connect when configured master hosts are all unavailable at initial connection. Setting this property to 'true' allows to establish the initial connection, by failing over to the slave servers, in read-only state. It won't prevent subsequent failures when switching back to the master hosts i.e. by setting the replication connection to read/write state. -ConnectionProperties.allowSlaveDownConnections=By default, a replication-aware connection will fail to connect when configured slave hosts are all unavailable at initial connection. Setting this property to 'true' allows to establish the initial connection. It won't prevent failures when switching to slaves i.e. by setting the replication connection to read-only state. The property 'readFromMasterWhenNoSlaves' should be used for this purpose. -ConnectionProperties.readFromMasterWhenNoSlaves=Replication-aware connections distribute load by using the master hosts when in read/write state and by using the slave hosts when in read-only state. If, when setting the connection to read-only state, none of the slave hosts are available, an SQLExeception is thrown back. Setting this property to 'true' allows to fail over to the master hosts, while setting the connection state to read-only, when no slave hosts are available at switch instant. -ConnectionProperties.allowMultiQueries=Allow the use of ';' to delimit multiple queries during one statement (true/false), defaults to 'false', and does not affect the addBatch() and executeBatch() methods, which instead rely on rewriteBatchStatements. -ConnectionProperties.allowNANandINF=Should the driver allow NaN or +/- INF values in PreparedStatement.setDouble()? -ConnectionProperties.allowUrlInLoadLocal=Should the driver allow URLs in 'LOAD DATA LOCAL INFILE' statements? -ConnectionProperties.alwaysSendSetIsolation=Should the driver always communicate with the database when Connection.setTransactionIsolation() is called? If set to false, the driver will only communicate with the database when the requested transaction isolation is different than the whichever is newer, the last value that was set via Connection.setTransactionIsolation(), or the value that was read from the server when the connection was established. Note that useLocalSessionState=true will force the same behavior as alwaysSendSetIsolation=false, regardless of how alwaysSendSetIsolation is set. -ConnectionProperties.autoClosePstmtStreams=Should the driver automatically call .close() on streams/readers passed as arguments via set*() methods? -ConnectionProperties.autoDeserialize=Should the driver automatically detect and de-serialize objects stored in BLOB fields? -ConnectionProperties.autoGenerateTestcaseScript=Should the driver dump the SQL it is executing, including server-side prepared statements to STDERR? -ConnectionProperties.autoReconnect=Should the driver try to re-establish stale and/or dead connections? If enabled the driver will throw an exception for a queries issued on a stale or dead connection, which belong to the current transaction, but will attempt reconnect before the next query issued on the connection in a new transaction. The use of this feature is not recommended, because it has side effects related to session state and data consistency when applications don't handle SQLExceptions properly, and is only designed to be used when you are unable to configure your application to handle SQLExceptions resulting from dead and stale connections properly. Alternatively, as a last option, investigate setting the MySQL server variable "wait_timeout" to a high value, rather than the default of 8 hours. -ConnectionProperties.autoReconnectForPools=Use a reconnection strategy appropriate for connection pools (defaults to 'false') -ConnectionProperties.autoSlowLog=Instead of using slowQueryThreshold* to determine if a query is slow enough to be logged, maintain statistics that allow the driver to determine queries that are outside the 99th percentile? -ConnectionProperties.blobsAreStrings=Should the driver always treat BLOBs as Strings - specifically to work around dubious metadata returned by the server for GROUP BY clauses? -ConnectionProperties.functionsNeverReturnBlobs=Should the driver always treat data from functions returning BLOBs as Strings - specifically to work around dubious metadata returned by the server for GROUP BY clauses? -ConnectionProperties.blobSendChunkSize=Chunk size to use when sending BLOB/CLOBs via ServerPreparedStatements. Note that this value cannot exceed the value of "maxAllowedPacket" and, if that is the case, then this value will be corrected automatically. -ConnectionProperties.cacheCallableStatements=Should the driver cache the parsing stage of CallableStatements -ConnectionProperties.cachePrepStmts=Should the driver cache the parsing stage of PreparedStatements of client-side prepared statements, the "check" for suitability of server-side prepared and server-side prepared statements themselves? -ConnectionProperties.cacheRSMetadata=Should the driver cache ResultSetMetaData for Statements and PreparedStatements? (Req. JDK-1.4+, true/false, default 'false') -ConnectionProperties.cacheServerConfiguration=Should the driver cache the results of 'SHOW VARIABLES' and 'SHOW COLLATION' on a per-URL basis? -ConnectionProperties.callableStmtCacheSize=If 'cacheCallableStmts' is enabled, how many callable statements should be cached? -ConnectionProperties.capitalizeTypeNames=Capitalize type names in DatabaseMetaData? (usually only useful when using WebObjects, true/false, defaults to 'false') -ConnectionProperties.characterEncoding=If 'useUnicode' is set to true, what character encoding should the driver use when dealing with strings? (defaults is to 'autodetect') -ConnectionProperties.characterSetResults=Character set to tell the server to return results as. -ConnectionProperties.clientInfoProvider=The name of a class that implements the com.mysql.jdbc.JDBC4ClientInfoProvider interface in order to support JDBC-4.0's Connection.get/setClientInfo() methods -ConnectionProperties.clobberStreamingResults=This will cause a 'streaming' ResultSet to be automatically closed, and any outstanding data still streaming from the server to be discarded if another query is executed before all the data has been read from the server. -ConnectionProperties.clobCharacterEncoding=The character encoding to use for sending and retrieving TEXT, MEDIUMTEXT and LONGTEXT values instead of the configured connection characterEncoding -ConnectionProperties.compensateOnDuplicateKeyUpdateCounts=Should the driver compensate for the update counts of "ON DUPLICATE KEY" INSERT statements (2 = 1, 0 = 1) when using prepared statements? -ConnectionProperties.connectionCollation=If set, tells the server to use this collation via 'set collation_connection' -ConnectionProperties.connectionLifecycleInterceptors=A comma-delimited list of classes that implement "com.mysql.jdbc.ConnectionLifecycleInterceptor" that should notified of connection lifecycle events (creation, destruction, commit, rollback, setCatalog and setAutoCommit) and potentially alter the execution of these commands. ConnectionLifecycleInterceptors are "stackable", more than one interceptor may be specified via the configuration property as a comma-delimited list, with the interceptors executed in order from left to right. -ConnectionProperties.connectTimeout=Timeout for socket connect (in milliseconds), with 0 being no timeout. Only works on JDK-1.4 or newer. Defaults to '0'. -ConnectionProperties.continueBatchOnError=Should the driver continue processing batch commands if one statement fails. The JDBC spec allows either way (defaults to 'true'). -ConnectionProperties.createDatabaseIfNotExist=Creates the database given in the URL if it doesn't yet exist. Assumes the configured user has permissions to create databases. -ConnectionProperties.defaultFetchSize=The driver will call setFetchSize(n) with this value on all newly-created Statements -ConnectionProperties.useServerPrepStmts=Use server-side prepared statements if the server supports them? -ConnectionProperties.dontTrackOpenResources=The JDBC specification requires the driver to automatically track and close resources, however if your application doesn't do a good job of explicitly calling close() on statements or result sets, this can cause memory leakage. Setting this property to true relaxes this constraint, and can be more memory efficient for some applications. Also the automatic closing of the Statement and current ResultSet in Statement.closeOnCompletion() and Statement.getMoreResults ([Statement.CLOSE_CURRENT_RESULT | Statement.CLOSE_ALL_RESULTS]), respectively, ceases to happen. This property automatically sets holdResultsOpenOverStatementClose=true. -ConnectionProperties.dumpQueriesOnException=Should the driver dump the contents of the query sent to the server in the message for SQLExceptions? -ConnectionProperties.dynamicCalendars=Should the driver retrieve the default calendar when required, or cache it per connection/session? -ConnectionProperties.eliseSetAutoCommit=If using MySQL-4.1 or newer, should the driver only issue 'set autocommit=n' queries when the server's state doesn't match the requested state by Connection.setAutoCommit(boolean)? -ConnectionProperties.emptyStringsConvertToZero=Should the driver allow conversions from empty string fields to numeric values of '0'? -ConnectionProperties.emulateLocators=Should the driver emulate java.sql.Blobs with locators? With this feature enabled, the driver will delay loading the actual Blob data until the one of the retrieval methods (getInputStream(), getBytes(), and so forth) on the blob data stream has been accessed. For this to work, you must use a column alias with the value of the column to the actual name of the Blob. The feature also has the following restrictions: The SELECT that created the result set must reference only one table, the table must have a primary key; the SELECT must alias the original blob column name, specified as a string, to an alternate name; the SELECT must cover all columns that make up the primary key. -ConnectionProperties.emulateUnsupportedPstmts=Should the driver detect prepared statements that are not supported by the server, and replace them with client-side emulated versions? -ConnectionProperties.enablePacketDebug=When enabled, a ring-buffer of 'packetDebugBufferSize' packets will be kept, and dumped when exceptions are thrown in key areas in the driver's code -ConnectionProperties.enableQueryTimeouts=When enabled, query timeouts set via Statement.setQueryTimeout() use a shared java.util.Timer instance for scheduling. Even if the timeout doesn't expire before the query is processed, there will be memory used by the TimerTask for the given timeout which won't be reclaimed until the time the timeout would have expired if it hadn't been cancelled by the driver. High-load environments might want to consider disabling this functionality. -ConnectionProperties.explainSlowQueries=If 'logSlowQueries' is enabled, should the driver automatically issue an 'EXPLAIN' on the server and send the results to the configured log at a WARN level? -ConnectionProperties.failoverReadOnly=When failing over in autoReconnect mode, should the connection be set to 'read-only'? -ConnectionProperties.gatherPerfMetrics=Should the driver gather performance metrics, and report them via the configured logger every 'reportMetricsIntervalMillis' milliseconds? -ConnectionProperties.generateSimpleParameterMetadata=Should the driver generate simplified parameter metadata for PreparedStatements when no metadata is available either because the server couldn't support preparing the statement, or server-side prepared statements are disabled? -ConnectionProperties.holdRSOpenOverStmtClose=Should the driver close result sets on Statement.close() as required by the JDBC specification? -ConnectionProperties.ignoreNonTxTables=Ignore non-transactional table warning for rollback? (defaults to 'false'). -ConnectionProperties.includeInnodbStatusInDeadlockExceptions=Include the output of "SHOW ENGINE INNODB STATUS" in exception messages when deadlock exceptions are detected? -ConnectionProperties.includeThreadDumpInDeadlockExceptions=Include a current Java thread dump in exception messages when deadlock exceptions are detected? -ConnectionProperties.includeThreadNamesAsStatementComment=Include the name of the current thread as a comment visible in "SHOW PROCESSLIST", or in Innodb deadlock dumps, useful in correlation with "includeInnodbStatusInDeadlockExceptions=true" and "includeThreadDumpInDeadlockExceptions=true". -ConnectionProperties.initialTimeout=If autoReconnect is enabled, the initial time to wait between re-connect attempts (in seconds, defaults to '2'). -ConnectionProperties.interactiveClient=Set the CLIENT_INTERACTIVE flag, which tells MySQL to timeout connections based on INTERACTIVE_TIMEOUT instead of WAIT_TIMEOUT -ConnectionProperties.jdbcCompliantTruncation=Should the driver throw java.sql.DataTruncation exceptions when data is truncated as is required by the JDBC specification when connected to a server that supports warnings (MySQL 4.1.0 and newer)? This property has no effect if the server sql-mode includes STRICT_TRANS_TABLES. -ConnectionProperties.largeRowSizeThreshold=What size result set row should the JDBC driver consider "large", and thus use a more memory-efficient way of representing the row internally? -ConnectionProperties.loadBalanceStrategy=If using a load-balanced connection to connect to SQL nodes in a MySQL Cluster/NDB configuration (by using the URL prefix "jdbc:mysql:loadbalance://"), which load balancing algorithm should the driver use: (1) "random" - the driver will pick a random host for each request. This tends to work better than round-robin, as the randomness will somewhat account for spreading loads where requests vary in response time, while round-robin can sometimes lead to overloaded nodes if there are variations in response times across the workload. (2) "bestResponseTime" - the driver will route the request to the host that had the best response time for the previous transaction. -ConnectionProperties.loadBalanceBlacklistTimeout=Time in milliseconds between checks of servers which are unavailable, by controlling how long a server lives in the global blacklist. -ConnectionProperties.loadBalancePingTimeout=Time in milliseconds to wait for ping response from each of load-balanced physical connections when using load-balanced Connection. -ConnectionProperties.loadBalanceValidateConnectionOnSwapServer=Should the load-balanced Connection explicitly check whether the connection is live when swapping to a new physical connection at commit/rollback? -ConnectionProperties.loadBalanceConnectionGroup=Logical group of load-balanced connections within a classloader, used to manage different groups independently. If not specified, live management of load-balanced connections is disabled. -ConnectionProperties.loadBalanceExceptionChecker=Fully-qualified class name of custom exception checker. The class must implement com.mysql.jdbc.LoadBalanceExceptionChecker interface, and is used to inspect SQLExceptions and determine whether they should trigger fail-over to another host in a load-balanced deployment. -ConnectionProperties.loadBalanceSQLStateFailover=Comma-delimited list of SQLState codes used by default load-balanced exception checker to determine whether a given SQLException should trigger failover. The SQLState of a given SQLException is evaluated to determine whether it begins with any value in the comma-delimited list. -ConnectionProperties.loadBalanceSQLExceptionSubclassFailover=Comma-delimited list of classes/interfaces used by default load-balanced exception checker to determine whether a given SQLException should trigger failover. The comparison is done using Class.isInstance(SQLException) using the thrown SQLException. -ConnectionProperties.loadBalanceEnableJMX=Enables JMX-based management of load-balanced connection groups, including live addition/removal of hosts from load-balancing pool. -ConnectionProperties.replicationEnableJMX=Enables JMX-based management of replication connection groups, including live slave promotion, addition of new slaves and removal of master or slave hosts from load-balanced master and slave connection pools. -ConnectionProperties.loadBalanceHostRemovalGracePeriod=Sets the grace period to wait for a host being removed from a load-balanced connection, to be released when it is currently the active host. -ConnectionProperties.loadBalanceAutoCommitStatementThreshold=When auto-commit is enabled, the number of statements which should be executed before triggering load-balancing to rebalance. Default value of 0 causes load-balanced connections to only rebalance when exceptions are encountered, or auto-commit is disabled and transactions are explicitly committed or rolled back. -ConnectionProperties.loadBalanceAutoCommitStatementRegex=When load-balancing is enabled for auto-commit statements (via loadBalanceAutoCommitStatementThreshold), the statement counter will only increment when the SQL matches the regular expression. By default, every statement issued matches. -ConnectionProperties.localSocketAddress=Hostname or IP address given to explicitly configure the interface that the driver will bind the client side of the TCP/IP connection to when connecting. -ConnectionProperties.locatorFetchBufferSize=If 'emulateLocators' is configured to 'true', what size buffer should be used when fetching BLOB data for getBinaryInputStream? -ConnectionProperties.logger=The name of a class that implements \"{0}\" that will be used to log messages to. (default is \"{1}\", which logs to STDERR) -ConnectionProperties.logSlowQueries=Should queries that take longer than 'slowQueryThresholdMillis' be logged? -ConnectionProperties.logXaCommands=Should the driver log XA commands sent by MysqlXaConnection to the server, at the DEBUG level of logging? -ConnectionProperties.maintainTimeStats=Should the driver maintain various internal timers to enable idle time calculations as well as more verbose error messages when the connection to the server fails? Setting this property to false removes at least two calls to System.getCurrentTimeMillis() per query. -ConnectionProperties.maxQuerySizeToLog=Controls the maximum length/size of a query that will get logged when profiling or tracing -ConnectionProperties.maxReconnects=Maximum number of reconnects to attempt if autoReconnect is true, default is '3'. -ConnectionProperties.maxRows=The maximum number of rows to return (0, the default means return all rows). -ConnectionProperties.allVersions=all versions -ConnectionProperties.metadataCacheSize=The number of queries to cache ResultSetMetadata for if cacheResultSetMetaData is set to 'true' (default 50) -ConnectionProperties.netTimeoutForStreamingResults=What value should the driver automatically set the server setting 'net_write_timeout' to when the streaming result sets feature is in use? (value has unit of seconds, the value '0' means the driver will not try and adjust this value) -ConnectionProperties.noAccessToProcedureBodies=When determining procedure parameter types for CallableStatements, and the connected user can't access procedure bodies through "SHOW CREATE PROCEDURE" or select on mysql.proc should the driver instead create basic metadata (all parameters reported as INOUT VARCHARs) instead of throwing an exception? -ConnectionProperties.noDatetimeStringSync=Don't ensure that ResultSet.getDatetimeType().toString().equals(ResultSet.getString()) -ConnectionProperties.noTzConversionForTimeType=Don't convert TIME values using the server time zone if 'useTimezone'='true' -ConnectionProperties.noTzConversionForDateType=Don't convert DATE values using the server time zone if 'useTimezone'='true' or 'useLegacyDatetimeCode'='false' -ConnectionProperties.cacheDefaultTimezone=Caches client's default time zone. This results in better performance when dealing with time zone conversions in Date and Time data types, however it won't be aware of time zone changes if they happen at runtime. -ConnectionProperties.nullCatalogMeansCurrent=When DatabaseMetadataMethods ask for a 'catalog' parameter, does the value null mean use the current catalog? (this is not JDBC-compliant, but follows legacy behavior from earlier versions of the driver) -ConnectionProperties.nullNamePatternMatchesAll=Should DatabaseMetaData methods that accept *pattern parameters treat null the same as '%' (this is not JDBC-compliant, however older versions of the driver accepted this departure from the specification) -ConnectionProperties.packetDebugBufferSize=The maximum number of packets to retain when 'enablePacketDebug' is true -ConnectionProperties.padCharsWithSpace=If a result set column has the CHAR type and the value does not fill the amount of characters specified in the DDL for the column, should the driver pad the remaining characters with space (for ANSI compliance)? -ConnectionProperties.paranoid=Take measures to prevent exposure sensitive information in error messages and clear data structures holding sensitive data when possible? (defaults to 'false') -ConnectionProperties.pedantic=Follow the JDBC spec to the letter. -ConnectionProperties.pinGlobalTxToPhysicalConnection=When using XAConnections, should the driver ensure that operations on a given XID are always routed to the same physical connection? This allows the XAConnection to support "XA START ... JOIN" after "XA END" has been called -ConnectionProperties.populateInsertRowWithDefaultValues=When using ResultSets that are CONCUR_UPDATABLE, should the driver pre-populate the "insert" row with default values from the DDL for the table used in the query so those values are immediately available for ResultSet accessors? This functionality requires a call to the database for metadata each time a result set of this type is created. If disabled (the default), the default values will be populated by the an internal call to refreshRow() which pulls back default values and/or values changed by triggers. -ConnectionProperties.prepStmtCacheSize=If prepared statement caching is enabled, how many prepared statements should be cached? -ConnectionProperties.prepStmtCacheSqlLimit=If prepared statement caching is enabled, what's the largest SQL the driver will cache the parsing for? -ConnectionProperties.processEscapeCodesForPrepStmts=Should the driver process escape codes in queries that are prepared? Default escape processing behavior in non-prepared statements must be defined with the property 'enableEscapeProcessing'. -ConnectionProperties.profilerEventHandler=Name of a class that implements the interface com.mysql.jdbc.profiler.ProfilerEventHandler that will be used to handle profiling/tracing events. -ConnectionProperties.profileSqlDeprecated=Deprecated, use 'profileSQL' instead. Trace queries and their execution/fetch times on STDERR (true/false) defaults to 'false' -ConnectionProperties.profileSQL=Trace queries and their execution/fetch times to the configured logger (true/false) defaults to 'false' -ConnectionProperties.connectionPropertiesTransform=An implementation of com.mysql.jdbc.ConnectionPropertiesTransform that the driver will use to modify URL properties passed to the driver before attempting a connection -ConnectionProperties.queriesBeforeRetryMaster=Number of queries to issue before falling back to the primary host when failed over (when using multi-host failover). Whichever condition is met first, 'queriesBeforeRetryMaster' or 'secondsBeforeRetryMaster' will cause an attempt to be made to reconnect to the primary host. Setting both properties to 0 disables the automatic fall back to the primary host at transaction boundaries. Defaults to 50. -ConnectionProperties.reconnectAtTxEnd=If autoReconnect is set to true, should the driver attempt reconnections at the end of every transaction? -ConnectionProperties.relaxAutoCommit=If the version of MySQL the driver connects to does not support transactions, still allow calls to commit(), rollback() and setAutoCommit() (true/false, defaults to 'false')? -ConnectionProperties.reportMetricsIntervalMillis=If 'gatherPerfMetrics' is enabled, how often should they be logged (in ms)? -ConnectionProperties.requireSSL=Require server support of SSL connection if useSSL=true? (defaults to 'false'). -ConnectionProperties.resourceId=A globally unique name that identifies the resource that this datasource or connection is connected to, used for XAResource.isSameRM() when the driver can't determine this value based on hostnames used in the URL -ConnectionProperties.resultSetSizeThreshold=If the usage advisor is enabled, how many rows should a result set contain before the driver warns that it is suspiciously large? -ConnectionProperties.retainStatementAfterResultSetClose=Should the driver retain the Statement reference in a ResultSet after ResultSet.close() has been called. This is not JDBC-compliant after JDBC-4.0. -ConnectionProperties.retriesAllDown=When using loadbalancing or failover, the number of times the driver should cycle through available hosts, attempting to connect. Between cycles, the driver will pause for 250ms if no servers are available. -ConnectionProperties.rewriteBatchedStatements=Should the driver use multiqueries (irregardless of the setting of "allowMultiQueries") as well as rewriting of prepared statements for INSERT into multi-value inserts when executeBatch() is called? Notice that this has the potential for SQL injection if using plain java.sql.Statements and your code doesn't sanitize input correctly. Notice that for prepared statements, server-side prepared statements can not currently take advantage of this rewrite option, and that if you don't specify stream lengths when using PreparedStatement.set*Stream(), the driver won't be able to determine the optimum number of parameters per batch and you might receive an error from the driver that the resultant packet is too large. Statement.getGeneratedKeys() for these rewritten statements only works when the entire batch includes INSERT statements. Please be aware using rewriteBatchedStatements=true with INSERT .. ON DUPLICATE KEY UPDATE that for rewritten statement server returns only one value as sum of all affected (or found) rows in batch and it isn't possible to map it correctly to initial statements; in this case driver returns 0 as a result of each batch statement if total count was 0, and the Statement.SUCCESS_NO_INFO as a result of each batch statement if total count was > 0. -ConnectionProperties.rollbackOnPooledClose=Should the driver issue a rollback() when the logical connection in a pool is closed? -ConnectionProperties.roundRobinLoadBalance=When autoReconnect is enabled, and failoverReadonly is false, should we pick hosts to connect to on a round-robin basis? -ConnectionProperties.runningCTS13=Enables workarounds for bugs in Sun's JDBC compliance testsuite version 1.3 -ConnectionProperties.secondsBeforeRetryMaster=How long should the driver wait, when failed over, before attempting to reconnect to the primary host? Whichever condition is met first, 'queriesBeforeRetryMaster' or 'secondsBeforeRetryMaster' will cause an attempt to be made to reconnect to the master. Setting both properties to 0 disables the automatic fall back to the primary host at transaction boundaries. Time in seconds, defaults to 30 -ConnectionProperties.selfDestructOnPingSecondsLifetime=If set to a non-zero value, the driver will report close the connection and report failure when Connection.ping() or Connection.isValid(int) is called if the connection's lifetime exceeds this value. -ConnectionProperties.selfDestructOnPingMaxOperations==If set to a non-zero value, the driver will report close the connection and report failure when Connection.ping() or Connection.isValid(int) is called if the connection's count of commands sent to the server exceeds this value. -ConnectionProperties.serverTimezone=Override detection/mapping of time zone. Used when time zone from server doesn't map to Java time zone -ConnectionProperties.sessionVariables=A comma-separated list of name/value pairs to be sent as SET SESSION ... to the server when the driver connects. -ConnectionProperties.slowQueryThresholdMillis=If 'logSlowQueries' is enabled, how long should a query (in ms) before it is logged as 'slow'? -ConnectionProperties.slowQueryThresholdNanos=If 'useNanosForElapsedTime' is set to true, and this property is set to a non-zero value, the driver will use this threshold (in nanosecond units) to determine if a query was slow. -ConnectionProperties.socketFactory=The name of the class that the driver should use for creating socket connections to the server. This class must implement the interface 'com.mysql.jdbc.SocketFactory' and have public no-args constructor. -ConnectionProperties.socketTimeout=Timeout on network socket operations (0, the default means no timeout). -ConnectionProperties.socksProxyHost=Name or IP address of SOCKS host to connect through. -ConnectionProperties.socksProxyPort=Port of SOCKS server. -ConnectionProperties.statementInterceptors=A comma-delimited list of classes that implement "com.mysql.jdbc.StatementInterceptor" that should be placed "in between" query execution to influence the results. StatementInterceptors are "chainable", the results returned by the "current" interceptor will be passed on to the next in in the chain, from left-to-right order, as specified in this property. -ConnectionProperties.strictFloatingPoint=Used only in older versions of compliance test -ConnectionProperties.strictUpdates=Should the driver do strict checking (all primary keys selected) of updatable result sets (true, false, defaults to 'true')? -ConnectionProperties.overrideSupportsIEF=Should the driver return "true" for DatabaseMetaData.supportsIntegrityEnhancementFacility() even if the database doesn't support it to workaround applications that require this method to return "true" to signal support of foreign keys, even though the SQL specification states that this facility contains much more than just foreign key support (one such application being OpenOffice)? -ConnectionProperties.tcpNoDelay=If connecting using TCP/IP, should the driver set SO_TCP_NODELAY (disabling the Nagle Algorithm)? -ConnectionProperties.tcpKeepAlive=If connecting using TCP/IP, should the driver set SO_KEEPALIVE? -ConnectionProperties.tcpSoRcvBuf=If connecting using TCP/IP, should the driver set SO_RCV_BUF to the given value? The default value of '0', means use the platform default value for this property) -ConnectionProperties.tcpSoSndBuf=If connecting using TCP/IP, should the driver set SO_SND_BUF to the given value? The default value of '0', means use the platform default value for this property) -ConnectionProperties.tcpTrafficClass=If connecting using TCP/IP, should the driver set traffic class or type-of-service fields ?See the documentation for java.net.Socket.setTrafficClass() for more information. -ConnectionProperties.tinyInt1isBit=Should the driver treat the datatype TINYINT(1) as the BIT type (because the server silently converts BIT -> TINYINT(1) when creating tables)? -ConnectionProperties.traceProtocol=Should trace-level network protocol be logged? -ConnectionProperties.treatUtilDateAsTimestamp=Should the driver treat java.util.Date as a TIMESTAMP for the purposes of PreparedStatement.setObject()? -ConnectionProperties.transformedBitIsBoolean=If the driver converts TINYINT(1) to a different type, should it use BOOLEAN instead of BIT for future compatibility with MySQL-5.0, as MySQL-5.0 has a BIT type? -ConnectionProperties.useCompression=Use zlib compression when communicating with the server (true/false)? Defaults to 'false'. -ConnectionProperties.useConfigs=Load the comma-delimited list of configuration properties before parsing the URL or applying user-specified properties. These configurations are explained in the 'Configurations' of the documentation. -ConnectionProperties.useCursorFetch=If connected to MySQL > 5.0.2, and setFetchSize() > 0 on a statement, should that statement use cursor-based fetching to retrieve rows? -ConnectionProperties.useDynamicCharsetInfo=Should the driver use a per-connection cache of character set information queried from the server when necessary, or use a built-in static mapping that is more efficient, but isn't aware of custom character sets or character sets implemented after the release of the JDBC driver? -ConnectionProperties.useFastIntParsing=Use internal String->Integer conversion routines to avoid excessive object creation? -ConnectionProperties.useFastDateParsing=Use internal String->Date/Time/Timestamp conversion routines to avoid excessive object creation? This is part of the legacy date-time code, thus the property has an effect only when "useLegacyDatetimeCode=true." -ConnectionProperties.useHostsInPrivileges=Add '@hostname' to users in DatabaseMetaData.getColumn/TablePrivileges() (true/false), defaults to 'true'. -ConnectionProperties.useInformationSchema=When connected to MySQL-5.0.7 or newer, should the driver use the INFORMATION_SCHEMA to derive information used by DatabaseMetaData? -ConnectionProperties.useJDBCCompliantTimezoneShift=Should the driver use JDBC-compliant rules when converting TIME/TIMESTAMP/DATETIME values' time zone information for those JDBC arguments which take a java.util.Calendar argument? This is part of the legacy date-time code, thus the property has an effect only when "useLegacyDatetimeCode=true." -ConnectionProperties.useLocalSessionState=Should the driver refer to the internal values of autocommit and transaction isolation that are set by Connection.setAutoCommit() and Connection.setTransactionIsolation() and transaction state as maintained by the protocol, rather than querying the database or blindly sending commands to the database for commit() or rollback() method calls? -ConnectionProperties.useLocalTransactionState=Should the driver use the in-transaction state provided by the MySQL protocol to determine if a commit() or rollback() should actually be sent to the database? -ConnectionProperties.useNanosForElapsedTime=For profiling/debugging functionality that measures elapsed time, should the driver try to use nanoseconds resolution if available (JDK >= 1.5)? -ConnectionProperties.useOldAliasMetadataBehavior=Should the driver use the legacy behavior for "AS" clauses on columns and tables, and only return aliases (if any) for ResultSetMetaData.getColumnName() or ResultSetMetaData.getTableName() rather than the original column/table name? In 5.0.x, the default value was true. -ConnectionProperties.useOldUtf8Behavior=Use the UTF-8 behavior the driver did when communicating with 4.0 and older servers -ConnectionProperties.useOnlyServerErrorMessages=Don't prepend 'standard' SQLState error messages to error messages returned by the server. -ConnectionProperties.useReadAheadInput=Use newer, optimized non-blocking, buffered input stream when reading from the server? -ConnectionProperties.useSqlStateCodes=Use SQL Standard state codes instead of 'legacy' X/Open/SQL state codes (true/false), default is 'true' -ConnectionProperties.useSSL=Use SSL when communicating with the server (true/false), default is 'true' when connecting to MySQL 5.5.45+, 5.6.26+ or 5.7.6+, otherwise default is 'false' -ConnectionProperties.useSSPSCompatibleTimezoneShift=If migrating from an environment that was using server-side prepared statements, and the configuration property "useJDBCCompliantTimeZoneShift" set to "true", use compatible behavior when not using server-side prepared statements when sending TIMESTAMP values to the MySQL server. -ConnectionProperties.useStreamLengthsInPrepStmts=Honor stream length parameter in PreparedStatement/ResultSet.setXXXStream() method calls (true/false, defaults to 'true')? -ConnectionProperties.useTimezone=Convert time/date types between client and server time zones (true/false, defaults to 'false')? This is part of the legacy date-time code, thus the property has an effect only when "useLegacyDatetimeCode=true." -ConnectionProperties.ultraDevHack=Create PreparedStatements for prepareCall() when required, because UltraDev is broken and issues a prepareCall() for _all_ statements? (true/false, defaults to 'false') -ConnectionProperties.useUnbufferedInput=Don't use BufferedInputStream for reading data from the server -ConnectionProperties.useUnicode=Should the driver use Unicode character encodings when handling strings? Should only be used when the driver can't determine the character set mapping, or you are trying to 'force' the driver to use a character set that MySQL either doesn't natively support (such as UTF-8), true/false, defaults to 'true' -ConnectionProperties.useUsageAdvisor=Should the driver issue 'usage' warnings advising proper and efficient usage of JDBC and MySQL Connector/J to the log (true/false, defaults to 'false')? -ConnectionProperties.verifyServerCertificate=If "useSSL" is set to "true", should the driver verify the server's certificate? When using this feature, the keystore parameters should be specified by the "clientCertificateKeyStore*" properties, rather than system properties. Default is 'false' when connecting to MySQL 5.5.45+, 5.6.26+ or 5.7.6+ and "useSSL" was not explicitly set to "true". Otherwise default is 'true' -ConnectionProperties.yearIsDateType=Should the JDBC driver treat the MySQL type "YEAR" as a java.sql.Date, or as a SHORT? -ConnectionProperties.zeroDateTimeBehavior=What should happen when the driver encounters DATETIME values that are composed entirely of zeros (used by MySQL to represent invalid dates)? Valid values are \"{0}\", \"{1}\" and \"{2}\". -ConnectionProperties.useJvmCharsetConverters=Always use the character encoding routines built into the JVM, rather than using lookup tables for single-byte character sets? -ConnectionProperties.useGmtMillisForDatetimes=Convert between session time zone and GMT before creating Date and Timestamp instances (value of 'false' leads to legacy behavior, 'true' leads to more JDBC-compliant behavior)? This is part of the legacy date-time code, thus the property has an effect only when "useLegacyDatetimeCode=true." -ConnectionProperties.dumpMetadataOnColumnNotFound=Should the driver dump the field-level metadata of a result set into the exception message when ResultSet.findColumn() fails? -ConnectionProperties.clientCertificateKeyStoreUrl=URL to the client certificate KeyStore (if not specified, use defaults) -ConnectionProperties.trustCertificateKeyStoreUrl=URL to the trusted root certificate KeyStore (if not specified, use defaults) -ConnectionProperties.clientCertificateKeyStoreType=KeyStore type for client certificates (NULL or empty means use the default, which is "JKS". Standard keystore types supported by the JVM are "JKS" and "PKCS12", your environment may have more available depending on what security products are installed and available to the JVM. -ConnectionProperties.clientCertificateKeyStorePassword=Password for the client certificates KeyStore -ConnectionProperties.trustCertificateKeyStoreType=KeyStore type for trusted root certificates (NULL or empty means use the default, which is "JKS". Standard keystore types supported by the JVM are "JKS" and "PKCS12", your environment may have more available depending on what security products are installed and available to the JVM. -ConnectionProperties.trustCertificateKeyStorePassword=Password for the trusted root certificates KeyStore -ConnectionProperties.serverRSAPublicKeyFile=File path to the server RSA public key file for sha256_password authentication. If not specified, the public key will be retrieved from the server. -ConnectionProperties.allowPublicKeyRetrieval=Allows special handshake roundtrip to get server RSA public key directly from server. -ConnectionProperties.Username=The user to connect as -ConnectionProperties.Password=The password to use when connecting -ConnectionProperties.useBlobToStoreUTF8OutsideBMP=Tells the driver to treat [MEDIUM/LONG]BLOB columns as [LONG]VARCHAR columns holding text encoded in UTF-8 that has characters outside the BMP (4-byte encodings), which MySQL server can't handle natively. -ConnectionProperties.utf8OutsideBmpExcludedColumnNamePattern=When "useBlobToStoreUTF8OutsideBMP" is set to "true", column names matching the given regex will still be treated as BLOBs unless they match the regex specified for "utf8OutsideBmpIncludedColumnNamePattern". The regex must follow the patterns used for the java.util.regex package. -ConnectionProperties.utf8OutsideBmpIncludedColumnNamePattern=Used to specify exclusion rules to "utf8OutsideBmpExcludedColumnNamePattern". The regex must follow the patterns used for the java.util.regex package. -ConnectionProperties.useLegacyDatetimeCode=Use code for DATE/TIME/DATETIME/TIMESTAMP handling in result sets and statements that consistently handles time zone conversions from client to server and back again, or use the legacy code for these datatypes that has been in the driver for backwards-compatibility? Setting this property to 'false' voids the effects of "useTimezone," "useJDBCCompliantTimezoneShift," "useGmtMillisForDatetimes," and "useFastDateParsing." -ConnectionProperties.sendFractionalSeconds=Send fractional part from TIMESTAMP seconds. If set to false, the nanoseconds value of TIMESTAMP values will be truncated before sending any data to the server. This option applies only to prepared statements, callable statements or updatable result sets. -ConnectionProperties.useColumnNamesInFindColumn=Prior to JDBC-4.0, the JDBC specification had a bug related to what could be given as a "column name" to ResultSet methods like findColumn(), or getters that took a String property. JDBC-4.0 clarified "column name" to mean the label, as given in an "AS" clause and returned by ResultSetMetaData.getColumnLabel(), and if no AS clause, the column name. Setting this property to "true" will give behavior that is congruent to JDBC-3.0 and earlier versions of the JDBC specification, but which because of the specification bug could give unexpected results. This property is preferred over "useOldAliasMetadataBehavior" unless you need the specific behavior that it provides with respect to ResultSetMetadata. -ConnectionProperties.useAffectedRows=Don't set the CLIENT_FOUND_ROWS flag when connecting to the server (not JDBC-compliant, will break most applications that rely on "found" rows vs. "affected rows" for DML statements), but does cause "correct" update counts from "INSERT ... ON DUPLICATE KEY UPDATE" statements to be returned by the server. -ConnectionProperties.passwordCharacterEncoding=What character encoding is used for passwords? Leaving this set to the default value (null), uses the value set in "characterEncoding" if there is one, otherwise uses UTF-8 as default encoding. If the password contains non-ASCII characters, the password encoding must match what server encoding was set to when the password was created. For passwords in other character encodings, the encoding will have to be specified with this property (or with "characterEncoding"), as it's not possible for the driver to auto-detect this. -ConnectionProperties.exceptionInterceptors=Comma-delimited list of classes that implement com.mysql.jdbc.ExceptionInterceptor. These classes will be instantiated one per Connection instance, and all SQLExceptions thrown by the driver will be allowed to be intercepted by these interceptors, in a chained fashion, with the first class listed as the head of the chain. -ConnectionProperties.maxAllowedPacket=Maximum allowed packet size to send to server. If not set, the value of system variable 'max_allowed_packet' will be used to initialize this upon connecting. This value will not take effect if set larger than the value of 'max_allowed_packet'. Also, due to an internal dependency with the property "blobSendChunkSize", this setting has a minimum value of "8203" if "useServerPrepStmts" is set to "true". -ConnectionProperties.queryTimeoutKillsConnection=If the timeout given in Statement.setQueryTimeout() expires, should the driver forcibly abort the Connection instead of attempting to abort the query? -ConnectionProperties.authenticationPlugins=Comma-delimited list of classes that implement com.mysql.jdbc.AuthenticationPlugin and which will be used for authentication unless disabled by "disabledAuthenticationPlugins" property. -ConnectionProperties.disabledAuthenticationPlugins=Comma-delimited list of classes implementing com.mysql.jdbc.AuthenticationPlugin or mechanisms, i.e. "mysql_native_password". The authentication plugins or mechanisms listed will not be used for authentication which will fail if it requires one of them. It is an error to disable the default authentication plugin (either the one named by "defaultAuthenticationPlugin" property or the hard-coded one if "defaultAuthenticationPlugin" property is not set). -ConnectionProperties.defaultAuthenticationPlugin=Name of a class implementing com.mysql.jdbc.AuthenticationPlugin which will be used as the default authentication plugin (see below). It is an error to use a class which is not listed in "authenticationPlugins" nor it is one of the built-in plugins. It is an error to set as default a plugin which was disabled with "disabledAuthenticationPlugins" property. It is an error to set this value to null or the empty string (i.e. there must be at least a valid default authentication plugin specified for the connection, meeting all constraints listed above). -ConnectionProperties.parseInfoCacheFactory=Name of a class implementing com.mysql.jdbc.CacheAdapterFactory, which will be used to create caches for the parsed representation of client-side prepared statements. -ConnectionProperties.serverConfigCacheFactory=Name of a class implementing com.mysql.jdbc.CacheAdapterFactory>, which will be used to create caches for MySQL server configuration values -ConnectionProperties.disconnectOnExpiredPasswords=If "disconnectOnExpiredPasswords" is set to "false" and password is expired then server enters "sandbox" mode and sends ERR(08001, ER_MUST_CHANGE_PASSWORD) for all commands that are not needed to set a new password until a new password is set. -ConnectionProperties.connectionAttributes=A comma-delimited list of user-defined key:value pairs (in addition to standard MySQL-defined key:value pairs) to be passed to MySQL Server for display as connection attributes in the PERFORMANCE_SCHEMA.SESSION_CONNECT_ATTRS table. Example usage: connectionAttributes=key1:value1,key2:value2 This functionality is available for use with MySQL Server version 5.6 or later only. Earlier versions of MySQL Server do not support connection attributes, causing this configuration option to be ignored. Setting connectionAttributes=none will cause connection attribute processing to be bypassed, for situations where Connection creation/initialization speed is critical. -ConnectionProperties.getProceduresReturnsFunctions=Pre-JDBC4 DatabaseMetaData API has only the getProcedures() and getProcedureColumns() methods, so they return metadata info for both stored procedures and functions. JDBC4 was extended with the getFunctions() and getFunctionColumns() methods and the expected behaviours of previous methods are not well defined. For JDBC4 and higher, default 'true' value of the option means that calls of DatabaseMetaData.getProcedures() and DatabaseMetaData.getProcedureColumns() return metadata for both procedures and functions as before, keeping backward compatibility. Setting this property to 'false' decouples Connector/J from its pre-JDBC4 behaviours for DatabaseMetaData.getProcedures() and DatabaseMetaData.getProcedureColumns(), forcing them to return metadata for procedures only. -ConnectionProperties.detectCustomCollations=Should the driver detect custom charsets/collations installed on server (true/false, defaults to 'false'). If this option set to 'true' driver gets actual charsets/collations from server each time connection establishes. This could slow down connection initialization significantly. -ConnectionProperties.dontCheckOnDuplicateKeyUpdateInSQL=Stops checking if every INSERT statement contains the "ON DUPLICATE KEY UPDATE" clause. As a side effect, obtaining the statement's generated keys information will return a list where normally it wouldn't. Also be aware that, in this case, the list of generated keys returned may not be accurate. The effect of this property is canceled if set simultaneously with 'rewriteBatchedStatements=true'. -ConnectionProperties.readOnlyPropagatesToServer=Should the driver issue appropriate statements to implicitly set the transaction access mode on server side when Connection.setReadOnly() is called? Setting this property to 'true' enables InnoDB read-only potential optimizations but also requires an extra roundtrip to set the right transaction state. Even if this property is set to 'false', the driver will do its best effort to prevent the execution of database-state-changing queries. Requires minimum of MySQL 5.6. -ConnectionProperties.enabledSSLCipherSuites=If "useSSL" is set to "true", overrides the cipher suites enabled for use on the underlying SSL sockets. This may be required when using external JSSE providers or to specify cipher suites compatible with both MySQL server and used JVM. -ConnectionProperties.enableEscapeProcessing=Sets the default escape processing behavior for Statement objects. The method Statement.setEscapeProcessing() can be used to specify the escape processing behavior for an individual Statement object. Default escape processing behavior in prepared statements must be defined with the property 'processEscapeCodesForPrepStmts'. - -# -# Error Messages for Connection Properties -# - -ConnectionProperties.unableToInitDriverProperties=Unable to initialize driver properties due to -ConnectionProperties.unsupportedCharacterEncoding=Unsupported character encoding ''{0}''. -ConnectionProperties.errorNotExpected=Huh? -ConnectionProperties.InternalPropertiesFailure=Internal properties failure -ConnectionProperties.dynamicChangeIsNotAllowed=Dynamic change of ''{0}'' is not allowed. - -TimeUtil.UnrecognizedTimezoneId=The server time zone value ''{0}'' is unrecognized or represents more than one time zone. You must \ -configure either the server or JDBC driver (via the 'serverTimezone' configuration property) to use a \ -more specifc time zone value if you want to utilize time zone support. -TimeUtil.LoadTimeZoneMappingError=Failed to load the time zone mapping resource file 'TimeZoneMapping.properties'. - -Connection.exceededConnectionLifetime=Ping or validation failed because configured connection lifetime exceeded. -Connection.badLifecycleInterceptor=Unable to load connection lifecycle interceptor ''{0}''. -MysqlIo.BadStatementInterceptor=Unable to load statement interceptor ''{0}''. -Connection.BadExceptionInterceptor=Unable to load exception interceptor ''{0}''. -Connection.CantDetectLocalConnect=Unable to determine if hostname ''{0}'' is local to this box because of exception, assuming it's not. -Connection.NoMetadataOnSocketFactory=Configured socket factory does not implement SocketMetadata, can not determine whether server is locally-connected, assuming not" -Connection.BadAuthenticationPlugin=Unable to load authentication plugin ''{0}''. -Connection.BadDefaultAuthenticationPlugin=Bad value ''{0}'' for property "defaultAuthenticationPlugin". -Connection.DefaultAuthenticationPluginIsNotListed=defaultAuthenticationPlugin ''{0}'' is not listed in "authenticationPlugins" nor it is one of the built-in plugins. -Connection.BadDisabledAuthenticationPlugin=Can''t disable the default plugin, either remove ''{0}'' from the disabled authentication plugins list, or choose a different default authentication plugin. -Connection.AuthenticationPluginRequiresSSL=SSL connection required for plugin ''{0}''. Check if "useSSL" is set to "true". -Connection.UnexpectedAuthenticationApproval=Unexpected authentication approval: ''{0}'' plugin did not reported "done" state but server has approved connection. -Connection.CantFindCacheFactory=Can not find class ''{0}'' specified by the ''{1}'' configuration property. -Connection.CantLoadCacheFactory=Can not load the cache factory ''{0}'' specified by the ''{1}'' configuration property. -Connection.LoginTimeout=Connection attempt exceeded defined timeout. - -LoadBalancedConnectionProxy.badValueForRetriesAllDown=Bad value ''{0}'' for property "retriesAllDown". -LoadBalancedConnectionProxy.badValueForLoadBalanceBlacklistTimeout=Bad value ''{0}'' for property "loadBalanceBlacklistTimeout". -LoadBalancedConnectionProxy.badValueForLoadBalanceHostRemovalGracePeriod=Bad value ''{0}'' for property "loadBalanceHostRemovalGracePeriod". -LoadBalancedConnectionProxy.badValueForLoadBalanceEnableJMX=Bad value ''{0}'' for property "loadBalanceEnableJMX". -LoadBalancedConnectionProxy.badValueForLoadBalanceAutoCommitStatementThreshold=Invalid numeric value ''{0}'' for property "loadBalanceAutoCommitStatementThreshold". -LoadBalancedConnectionProxy.badValueForLoadBalanceAutoCommitStatementRegex=Bad value ''{0}'' for property "loadBalanceAutoCommitStatementRegex". -LoadBalancedConnectionProxy.unusableConnection=The connection is unusable at the current state. There may be no hosts to connect to or all hosts this connection knows may be down at the moment. - -ReplicationConnectionProxy.badValueForAllowMasterDownConnections=Bad value ''{0}'' for property "allowMasterDownConnections". -ReplicationConnectionProxy.badValueForReadFromMasterWhenNoSlaves=Bad value ''{0}'' for property "readFromMasterWhenNoSlaves". -ReplicationConnectionProxy.badValueForReplicationEnableJMX=Bad value ''{0}'' for property "replicationEnableJMX". -ReplicationConnectionProxy.initializationWithEmptyHostsLists=A replication connection cannot be initialized without master hosts and slave hosts, simultaneously. -ReplicationConnectionProxy.noHostsInconsistentState=The replication connection is an inconsistent state due to non existing hosts in both its internal hosts lists. diff --git a/target/classes/com/mysql/jdbc/Messages.class b/target/classes/com/mysql/jdbc/Messages.class deleted file mode 100644 index 85169a4f..00000000 Binary files a/target/classes/com/mysql/jdbc/Messages.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MiniAdmin.class b/target/classes/com/mysql/jdbc/MiniAdmin.class deleted file mode 100644 index 4ad9b1bf..00000000 Binary files a/target/classes/com/mysql/jdbc/MiniAdmin.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MultiHostConnectionProxy$JdbcInterfaceProxy.class b/target/classes/com/mysql/jdbc/MultiHostConnectionProxy$JdbcInterfaceProxy.class deleted file mode 100644 index 30270df6..00000000 Binary files a/target/classes/com/mysql/jdbc/MultiHostConnectionProxy$JdbcInterfaceProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MultiHostConnectionProxy.class b/target/classes/com/mysql/jdbc/MultiHostConnectionProxy.class deleted file mode 100644 index 1cb74361..00000000 Binary files a/target/classes/com/mysql/jdbc/MultiHostConnectionProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MultiHostMySQLConnection.class b/target/classes/com/mysql/jdbc/MultiHostMySQLConnection.class deleted file mode 100644 index 986c4a6e..00000000 Binary files a/target/classes/com/mysql/jdbc/MultiHostMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MySQLConnection.class b/target/classes/com/mysql/jdbc/MySQLConnection.class deleted file mode 100644 index af6bece9..00000000 Binary files a/target/classes/com/mysql/jdbc/MySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MysqlCharset.class b/target/classes/com/mysql/jdbc/MysqlCharset.class deleted file mode 100644 index 4d7ac50e..00000000 Binary files a/target/classes/com/mysql/jdbc/MysqlCharset.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MysqlDataTruncation.class b/target/classes/com/mysql/jdbc/MysqlDataTruncation.class deleted file mode 100644 index aa4e362b..00000000 Binary files a/target/classes/com/mysql/jdbc/MysqlDataTruncation.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MysqlDefs.class b/target/classes/com/mysql/jdbc/MysqlDefs.class deleted file mode 100644 index 591f8c0d..00000000 Binary files a/target/classes/com/mysql/jdbc/MysqlDefs.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MysqlErrorNumbers.class b/target/classes/com/mysql/jdbc/MysqlErrorNumbers.class deleted file mode 100644 index da9a0fe5..00000000 Binary files a/target/classes/com/mysql/jdbc/MysqlErrorNumbers.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MysqlIO.class b/target/classes/com/mysql/jdbc/MysqlIO.class deleted file mode 100644 index 417e31d0..00000000 Binary files a/target/classes/com/mysql/jdbc/MysqlIO.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MysqlParameterMetadata.class b/target/classes/com/mysql/jdbc/MysqlParameterMetadata.class deleted file mode 100644 index 0e21d64c..00000000 Binary files a/target/classes/com/mysql/jdbc/MysqlParameterMetadata.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/MysqlSavepoint.class b/target/classes/com/mysql/jdbc/MysqlSavepoint.class deleted file mode 100644 index fb403858..00000000 Binary files a/target/classes/com/mysql/jdbc/MysqlSavepoint.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$NamedPipeSocket.class b/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$NamedPipeSocket.class deleted file mode 100644 index 86def1e8..00000000 Binary files a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$NamedPipeSocket.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$RandomAccessFileInputStream.class b/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$RandomAccessFileInputStream.class deleted file mode 100644 index 116bb965..00000000 Binary files a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$RandomAccessFileInputStream.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$RandomAccessFileOutputStream.class b/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$RandomAccessFileOutputStream.class deleted file mode 100644 index 894e1496..00000000 Binary files a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory$RandomAccessFileOutputStream.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory.class b/target/classes/com/mysql/jdbc/NamedPipeSocketFactory.class deleted file mode 100644 index b2186d8d..00000000 Binary files a/target/classes/com/mysql/jdbc/NamedPipeSocketFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NdbLoadBalanceExceptionChecker.class b/target/classes/com/mysql/jdbc/NdbLoadBalanceExceptionChecker.class deleted file mode 100644 index 5c84daf8..00000000 Binary files a/target/classes/com/mysql/jdbc/NdbLoadBalanceExceptionChecker.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NetworkResources.class b/target/classes/com/mysql/jdbc/NetworkResources.class deleted file mode 100644 index f9d2051f..00000000 Binary files a/target/classes/com/mysql/jdbc/NetworkResources.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NoSubInterceptorWrapper.class b/target/classes/com/mysql/jdbc/NoSubInterceptorWrapper.class deleted file mode 100644 index a74024bf..00000000 Binary files a/target/classes/com/mysql/jdbc/NoSubInterceptorWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NonRegisteringDriver$ConnectionPhantomReference.class b/target/classes/com/mysql/jdbc/NonRegisteringDriver$ConnectionPhantomReference.class deleted file mode 100644 index 5322bf73..00000000 Binary files a/target/classes/com/mysql/jdbc/NonRegisteringDriver$ConnectionPhantomReference.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NonRegisteringDriver.class b/target/classes/com/mysql/jdbc/NonRegisteringDriver.class deleted file mode 100644 index 381f1532..00000000 Binary files a/target/classes/com/mysql/jdbc/NonRegisteringDriver.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NonRegisteringReplicationDriver.class b/target/classes/com/mysql/jdbc/NonRegisteringReplicationDriver.class deleted file mode 100644 index 8a2439fe..00000000 Binary files a/target/classes/com/mysql/jdbc/NonRegisteringReplicationDriver.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NotImplemented.class b/target/classes/com/mysql/jdbc/NotImplemented.class deleted file mode 100644 index 1dcd1483..00000000 Binary files a/target/classes/com/mysql/jdbc/NotImplemented.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/NotUpdatable.class b/target/classes/com/mysql/jdbc/NotUpdatable.class deleted file mode 100644 index d841a05c..00000000 Binary files a/target/classes/com/mysql/jdbc/NotUpdatable.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/OperationNotSupportedException.class b/target/classes/com/mysql/jdbc/OperationNotSupportedException.class deleted file mode 100644 index 2f5cab68..00000000 Binary files a/target/classes/com/mysql/jdbc/OperationNotSupportedException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/OutputStreamWatcher.class b/target/classes/com/mysql/jdbc/OutputStreamWatcher.class deleted file mode 100644 index 9d093c98..00000000 Binary files a/target/classes/com/mysql/jdbc/OutputStreamWatcher.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PacketTooBigException.class b/target/classes/com/mysql/jdbc/PacketTooBigException.class deleted file mode 100644 index 4974fbaa..00000000 Binary files a/target/classes/com/mysql/jdbc/PacketTooBigException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ParameterBindings.class b/target/classes/com/mysql/jdbc/ParameterBindings.class deleted file mode 100644 index 1f09f1f8..00000000 Binary files a/target/classes/com/mysql/jdbc/ParameterBindings.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PerConnectionLRUFactory$PerConnectionLRU.class b/target/classes/com/mysql/jdbc/PerConnectionLRUFactory$PerConnectionLRU.class deleted file mode 100644 index 3c75cc90..00000000 Binary files a/target/classes/com/mysql/jdbc/PerConnectionLRUFactory$PerConnectionLRU.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PerConnectionLRUFactory.class b/target/classes/com/mysql/jdbc/PerConnectionLRUFactory.class deleted file mode 100644 index 384452d1..00000000 Binary files a/target/classes/com/mysql/jdbc/PerConnectionLRUFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PerVmServerConfigCacheFactory$1.class b/target/classes/com/mysql/jdbc/PerVmServerConfigCacheFactory$1.class deleted file mode 100644 index 29d7ea50..00000000 Binary files a/target/classes/com/mysql/jdbc/PerVmServerConfigCacheFactory$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PerVmServerConfigCacheFactory.class b/target/classes/com/mysql/jdbc/PerVmServerConfigCacheFactory.class deleted file mode 100644 index 91aa84d9..00000000 Binary files a/target/classes/com/mysql/jdbc/PerVmServerConfigCacheFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PingTarget.class b/target/classes/com/mysql/jdbc/PingTarget.class deleted file mode 100644 index 4eccd810..00000000 Binary files a/target/classes/com/mysql/jdbc/PingTarget.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PreparedStatement$AppendingBatchVisitor.class b/target/classes/com/mysql/jdbc/PreparedStatement$AppendingBatchVisitor.class deleted file mode 100644 index 8c3e4ff9..00000000 Binary files a/target/classes/com/mysql/jdbc/PreparedStatement$AppendingBatchVisitor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PreparedStatement$BatchParams.class b/target/classes/com/mysql/jdbc/PreparedStatement$BatchParams.class deleted file mode 100644 index aa78aa8f..00000000 Binary files a/target/classes/com/mysql/jdbc/PreparedStatement$BatchParams.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PreparedStatement$BatchVisitor.class b/target/classes/com/mysql/jdbc/PreparedStatement$BatchVisitor.class deleted file mode 100644 index 066e1a69..00000000 Binary files a/target/classes/com/mysql/jdbc/PreparedStatement$BatchVisitor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PreparedStatement$EmulatedPreparedStatementBindings.class b/target/classes/com/mysql/jdbc/PreparedStatement$EmulatedPreparedStatementBindings.class deleted file mode 100644 index c0a3b130..00000000 Binary files a/target/classes/com/mysql/jdbc/PreparedStatement$EmulatedPreparedStatementBindings.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PreparedStatement$EndPoint.class b/target/classes/com/mysql/jdbc/PreparedStatement$EndPoint.class deleted file mode 100644 index c2e66956..00000000 Binary files a/target/classes/com/mysql/jdbc/PreparedStatement$EndPoint.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PreparedStatement$ParseInfo.class b/target/classes/com/mysql/jdbc/PreparedStatement$ParseInfo.class deleted file mode 100644 index 5f49fbfb..00000000 Binary files a/target/classes/com/mysql/jdbc/PreparedStatement$ParseInfo.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/PreparedStatement.class b/target/classes/com/mysql/jdbc/PreparedStatement.class deleted file mode 100644 index 098f261e..00000000 Binary files a/target/classes/com/mysql/jdbc/PreparedStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ProfilerEventHandlerFactory.class b/target/classes/com/mysql/jdbc/ProfilerEventHandlerFactory.class deleted file mode 100644 index 05e1347e..00000000 Binary files a/target/classes/com/mysql/jdbc/ProfilerEventHandlerFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/RandomBalanceStrategy.class b/target/classes/com/mysql/jdbc/RandomBalanceStrategy.class deleted file mode 100644 index a37a5343..00000000 Binary files a/target/classes/com/mysql/jdbc/RandomBalanceStrategy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ReflectiveStatementInterceptorAdapter.class b/target/classes/com/mysql/jdbc/ReflectiveStatementInterceptorAdapter.class deleted file mode 100644 index 00d9cd2b..00000000 Binary files a/target/classes/com/mysql/jdbc/ReflectiveStatementInterceptorAdapter.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ReplicationConnection.class b/target/classes/com/mysql/jdbc/ReplicationConnection.class deleted file mode 100644 index 98bfa152..00000000 Binary files a/target/classes/com/mysql/jdbc/ReplicationConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ReplicationConnectionGroup.class b/target/classes/com/mysql/jdbc/ReplicationConnectionGroup.class deleted file mode 100644 index 4bd4e1ef..00000000 Binary files a/target/classes/com/mysql/jdbc/ReplicationConnectionGroup.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ReplicationConnectionGroupManager.class b/target/classes/com/mysql/jdbc/ReplicationConnectionGroupManager.class deleted file mode 100644 index 86b26c42..00000000 Binary files a/target/classes/com/mysql/jdbc/ReplicationConnectionGroupManager.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ReplicationConnectionProxy.class b/target/classes/com/mysql/jdbc/ReplicationConnectionProxy.class deleted file mode 100644 index ccd031ce..00000000 Binary files a/target/classes/com/mysql/jdbc/ReplicationConnectionProxy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ReplicationDriver.class b/target/classes/com/mysql/jdbc/ReplicationDriver.class deleted file mode 100644 index 49965420..00000000 Binary files a/target/classes/com/mysql/jdbc/ReplicationDriver.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ReplicationMySQLConnection.class b/target/classes/com/mysql/jdbc/ReplicationMySQLConnection.class deleted file mode 100644 index ed3dc783..00000000 Binary files a/target/classes/com/mysql/jdbc/ReplicationMySQLConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ResultSetImpl.class b/target/classes/com/mysql/jdbc/ResultSetImpl.class deleted file mode 100644 index 16dc0481..00000000 Binary files a/target/classes/com/mysql/jdbc/ResultSetImpl.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ResultSetInternalMethods.class b/target/classes/com/mysql/jdbc/ResultSetInternalMethods.class deleted file mode 100644 index a46eaaca..00000000 Binary files a/target/classes/com/mysql/jdbc/ResultSetInternalMethods.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ResultSetMetaData.class b/target/classes/com/mysql/jdbc/ResultSetMetaData.class deleted file mode 100644 index b6dcef9d..00000000 Binary files a/target/classes/com/mysql/jdbc/ResultSetMetaData.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ResultSetRow.class b/target/classes/com/mysql/jdbc/ResultSetRow.class deleted file mode 100644 index c076d84b..00000000 Binary files a/target/classes/com/mysql/jdbc/ResultSetRow.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/RowData.class b/target/classes/com/mysql/jdbc/RowData.class deleted file mode 100644 index 69a9ca24..00000000 Binary files a/target/classes/com/mysql/jdbc/RowData.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/RowDataCursor.class b/target/classes/com/mysql/jdbc/RowDataCursor.class deleted file mode 100644 index f553f799..00000000 Binary files a/target/classes/com/mysql/jdbc/RowDataCursor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/RowDataDynamic.class b/target/classes/com/mysql/jdbc/RowDataDynamic.class deleted file mode 100644 index dec25fbc..00000000 Binary files a/target/classes/com/mysql/jdbc/RowDataDynamic.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/RowDataStatic.class b/target/classes/com/mysql/jdbc/RowDataStatic.class deleted file mode 100644 index b1f4d054..00000000 Binary files a/target/classes/com/mysql/jdbc/RowDataStatic.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/SQLError.class b/target/classes/com/mysql/jdbc/SQLError.class deleted file mode 100644 index 510f6468..00000000 Binary files a/target/classes/com/mysql/jdbc/SQLError.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Security.class b/target/classes/com/mysql/jdbc/Security.class deleted file mode 100644 index 173a3034..00000000 Binary files a/target/classes/com/mysql/jdbc/Security.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/SequentialBalanceStrategy.class b/target/classes/com/mysql/jdbc/SequentialBalanceStrategy.class deleted file mode 100644 index 1a2d12c7..00000000 Binary files a/target/classes/com/mysql/jdbc/SequentialBalanceStrategy.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ServerPreparedStatement$BatchedBindValues.class b/target/classes/com/mysql/jdbc/ServerPreparedStatement$BatchedBindValues.class deleted file mode 100644 index 2ecc1bb5..00000000 Binary files a/target/classes/com/mysql/jdbc/ServerPreparedStatement$BatchedBindValues.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ServerPreparedStatement$BindValue.class b/target/classes/com/mysql/jdbc/ServerPreparedStatement$BindValue.class deleted file mode 100644 index 27d1925f..00000000 Binary files a/target/classes/com/mysql/jdbc/ServerPreparedStatement$BindValue.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/ServerPreparedStatement.class b/target/classes/com/mysql/jdbc/ServerPreparedStatement.class deleted file mode 100644 index f098353c..00000000 Binary files a/target/classes/com/mysql/jdbc/ServerPreparedStatement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/SingleByteCharsetConverter.class b/target/classes/com/mysql/jdbc/SingleByteCharsetConverter.class deleted file mode 100644 index 54295411..00000000 Binary files a/target/classes/com/mysql/jdbc/SingleByteCharsetConverter.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/SocketFactory.class b/target/classes/com/mysql/jdbc/SocketFactory.class deleted file mode 100644 index 6f917b32..00000000 Binary files a/target/classes/com/mysql/jdbc/SocketFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/SocketMetadata$Helper.class b/target/classes/com/mysql/jdbc/SocketMetadata$Helper.class deleted file mode 100644 index fc823c3b..00000000 Binary files a/target/classes/com/mysql/jdbc/SocketMetadata$Helper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/SocketMetadata.class b/target/classes/com/mysql/jdbc/SocketMetadata.class deleted file mode 100644 index 536e4aee..00000000 Binary files a/target/classes/com/mysql/jdbc/SocketMetadata.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/SocksProxySocketFactory.class b/target/classes/com/mysql/jdbc/SocksProxySocketFactory.class deleted file mode 100644 index e597b09f..00000000 Binary files a/target/classes/com/mysql/jdbc/SocksProxySocketFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StandardLoadBalanceExceptionChecker.class b/target/classes/com/mysql/jdbc/StandardLoadBalanceExceptionChecker.class deleted file mode 100644 index f9f5282c..00000000 Binary files a/target/classes/com/mysql/jdbc/StandardLoadBalanceExceptionChecker.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StandardSocketFactory.class b/target/classes/com/mysql/jdbc/StandardSocketFactory.class deleted file mode 100644 index 9d7dc412..00000000 Binary files a/target/classes/com/mysql/jdbc/StandardSocketFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Statement.class b/target/classes/com/mysql/jdbc/Statement.class deleted file mode 100644 index f5f90b56..00000000 Binary files a/target/classes/com/mysql/jdbc/Statement.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StatementImpl$CancelTask$1.class b/target/classes/com/mysql/jdbc/StatementImpl$CancelTask$1.class deleted file mode 100644 index f3aba997..00000000 Binary files a/target/classes/com/mysql/jdbc/StatementImpl$CancelTask$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StatementImpl$CancelTask.class b/target/classes/com/mysql/jdbc/StatementImpl$CancelTask.class deleted file mode 100644 index 98674673..00000000 Binary files a/target/classes/com/mysql/jdbc/StatementImpl$CancelTask.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StatementImpl.class b/target/classes/com/mysql/jdbc/StatementImpl.class deleted file mode 100644 index a35808db..00000000 Binary files a/target/classes/com/mysql/jdbc/StatementImpl.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StatementInterceptor.class b/target/classes/com/mysql/jdbc/StatementInterceptor.class deleted file mode 100644 index 567269bb..00000000 Binary files a/target/classes/com/mysql/jdbc/StatementInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StatementInterceptorV2.class b/target/classes/com/mysql/jdbc/StatementInterceptorV2.class deleted file mode 100644 index 72651c83..00000000 Binary files a/target/classes/com/mysql/jdbc/StatementInterceptorV2.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StreamingNotifiable.class b/target/classes/com/mysql/jdbc/StreamingNotifiable.class deleted file mode 100644 index 79c69c15..00000000 Binary files a/target/classes/com/mysql/jdbc/StreamingNotifiable.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StringUtils$SearchMode.class b/target/classes/com/mysql/jdbc/StringUtils$SearchMode.class deleted file mode 100644 index 1d5fc86c..00000000 Binary files a/target/classes/com/mysql/jdbc/StringUtils$SearchMode.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/StringUtils.class b/target/classes/com/mysql/jdbc/StringUtils.class deleted file mode 100644 index 2ee47957..00000000 Binary files a/target/classes/com/mysql/jdbc/StringUtils.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/TimeUtil.class b/target/classes/com/mysql/jdbc/TimeUtil.class deleted file mode 100644 index 1171dd4a..00000000 Binary files a/target/classes/com/mysql/jdbc/TimeUtil.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/TimeZoneMapping.properties b/target/classes/com/mysql/jdbc/TimeZoneMapping.properties deleted file mode 100644 index e5d055b7..00000000 --- a/target/classes/com/mysql/jdbc/TimeZoneMapping.properties +++ /dev/null @@ -1,531 +0,0 @@ -#Windows Zones -#Mon Sep 28 16:41:59 WEST 2015 -AUS\ Central\ Daylight\ Time=Australia/Darwin -AUS\ Central\ Standard\ Time=Australia/Darwin -AUS\ Eastern\ Daylight\ Time=Australia/Sydney -AUS\ Eastern\ Standard\ Time=Australia/Sydney -Afghanistan\ Daylight\ Time=Asia/Kabul -Afghanistan\ Standard\ Time=Asia/Kabul -Alaskan\ Daylight\ Time=America/Anchorage -Alaskan\ Standard\ Time=America/Anchorage -Arab\ Daylight\ Time=Asia/Riyadh -Arab\ Standard\ Time=Asia/Riyadh -Arabian\ Daylight\ Time=Asia/Dubai -Arabian\ Standard\ Time=Asia/Dubai -Arabic\ Daylight\ Time=Asia/Baghdad -Arabic\ Standard\ Time=Asia/Baghdad -Argentina\ Daylight\ Time=America/Buenos_Aires -Argentina\ Standard\ Time=America/Buenos_Aires -Atlantic\ Daylight\ Time=America/Halifax -Atlantic\ Standard\ Time=America/Halifax -Azerbaijan\ Daylight\ Time=Asia/Baku -Azerbaijan\ Standard\ Time=Asia/Baku -Azores\ Daylight\ Time=Atlantic/Azores -Azores\ Standard\ Time=Atlantic/Azores -Bahia\ Daylight\ Time=America/Bahia -Bahia\ Standard\ Time=America/Bahia -Bangladesh\ Daylight\ Time=Asia/Dhaka -Bangladesh\ Standard\ Time=Asia/Dhaka -Belarus\ Daylight\ Time=Europe/Minsk -Belarus\ Standard\ Time=Europe/Minsk -Canada\ Central\ Daylight\ Time=America/Regina -Canada\ Central\ Standard\ Time=America/Regina -Cape\ Verde\ Daylight\ Time=Atlantic/Cape_Verde -Cape\ Verde\ Standard\ Time=Atlantic/Cape_Verde -Caucasus\ Daylight\ Time=Asia/Yerevan -Caucasus\ Standard\ Time=Asia/Yerevan -Cen.\ Australia\ Daylight\ Time=Australia/Adelaide -Cen.\ Australia\ Standard\ Time=Australia/Adelaide -Central\ America\ Daylight\ Time=America/Guatemala -Central\ America\ Standard\ Time=America/Guatemala -Central\ Asia\ Daylight\ Time=Asia/Almaty -Central\ Asia\ Standard\ Time=Asia/Almaty -Central\ Brazilian\ Daylight\ Time=America/Cuiaba -Central\ Brazilian\ Standard\ Time=America/Cuiaba -Central\ Daylight\ Time=America/Chicago -Central\ Daylight\ Time\ (Mexico)=America/Mexico_City -Central\ Europe\ Daylight\ Time=Europe/Budapest -Central\ Europe\ Standard\ Time=Europe/Budapest -Central\ European\ Daylight\ Time=Europe/Warsaw -Central\ European\ Standard\ Time=Europe/Warsaw -Central\ Pacific\ Daylight\ Time=Pacific/Guadalcanal -Central\ Pacific\ Standard\ Time=Pacific/Guadalcanal -Central\ Standard\ Time=America/Chicago -Central\ Standard\ Time\ (Mexico)=America/Mexico_City -China\ Daylight\ Time=Asia/Shanghai -China\ Standard\ Time=Asia/Shanghai -Dateline\ Daylight\ Time=Etc/GMT+12 -Dateline\ Standard\ Time=Etc/GMT+12 -E.\ Africa\ Daylight\ Time=Africa/Nairobi -E.\ Africa\ Standard\ Time=Africa/Nairobi -E.\ Australia\ Daylight\ Time=Australia/Brisbane -E.\ Australia\ Standard\ Time=Australia/Brisbane -E.\ South\ America\ Daylight\ Time=America/Sao_Paulo -E.\ South\ America\ Standard\ Time=America/Sao_Paulo -Eastern\ Daylight\ Time=America/New_York -Eastern\ Daylight\ Time\ (Mexico)=America/Cancun -Eastern\ Standard\ Time=America/New_York -Eastern\ Standard\ Time\ (Mexico)=America/Cancun -Egypt\ Daylight\ Time=Africa/Cairo -Egypt\ Standard\ Time=Africa/Cairo -Ekaterinburg\ Daylight\ Time=Asia/Yekaterinburg -Ekaterinburg\ Standard\ Time=Asia/Yekaterinburg -FLE\ Daylight\ Time=Europe/Kiev -FLE\ Standard\ Time=Europe/Kiev -Fiji\ Daylight\ Time=Pacific/Fiji -Fiji\ Standard\ Time=Pacific/Fiji -GMT\ Daylight\ Time=Europe/London -GMT\ Standard\ Time=Europe/London -GTB\ Daylight\ Time=Europe/Bucharest -GTB\ Standard\ Time=Europe/Bucharest -Georgian\ Daylight\ Time=Asia/Tbilisi -Georgian\ Standard\ Time=Asia/Tbilisi -Greenland\ Daylight\ Time=America/Godthab -Greenland\ Standard\ Time=America/Godthab -Greenwich\ Daylight\ Time=Atlantic/Reykjavik -Greenwich\ Standard\ Time=Atlantic/Reykjavik -Hawaiian\ Daylight\ Time=Pacific/Honolulu -Hawaiian\ Standard\ Time=Pacific/Honolulu -India\ Daylight\ Time=Asia/Calcutta -India\ Standard\ Time=Asia/Calcutta -Iran\ Daylight\ Time=Asia/Tehran -Iran\ Standard\ Time=Asia/Tehran -Israel\ Daylight\ Time=Asia/Jerusalem -Israel\ Standard\ Time=Asia/Jerusalem -Jordan\ Daylight\ Time=Asia/Amman -Jordan\ Standard\ Time=Asia/Amman -Kaliningrad\ Daylight\ Time=Europe/Kaliningrad -Kaliningrad\ Standard\ Time=Europe/Kaliningrad -Korea\ Daylight\ Time=Asia/Seoul -Korea\ Standard\ Time=Asia/Seoul -Libya\ Daylight\ Time=Africa/Tripoli -Libya\ Standard\ Time=Africa/Tripoli -Line\ Islands\ Daylight\ Time=Pacific/Kiritimati -Line\ Islands\ Standard\ Time=Pacific/Kiritimati -Magadan\ Daylight\ Time=Asia/Magadan -Magadan\ Standard\ Time=Asia/Magadan -Mauritius\ Daylight\ Time=Indian/Mauritius -Mauritius\ Standard\ Time=Indian/Mauritius -Middle\ East\ Daylight\ Time=Asia/Beirut -Middle\ East\ Standard\ Time=Asia/Beirut -Montevideo\ Daylight\ Time=America/Montevideo -Montevideo\ Standard\ Time=America/Montevideo -Morocco\ Daylight\ Time=Africa/Casablanca -Morocco\ Standard\ Time=Africa/Casablanca -Mountain\ Daylight\ Time=America/Denver -Mountain\ Daylight\ Time\ (Mexico)=America/Chihuahua -Mountain\ Standard\ Time=America/Denver -Mountain\ Standard\ Time\ (Mexico)=America/Chihuahua -Myanmar\ Daylight\ Time=Asia/Rangoon -Myanmar\ Standard\ Time=Asia/Rangoon -N.\ Central\ Asia\ Daylight\ Time=Asia/Novosibirsk -N.\ Central\ Asia\ Standard\ Time=Asia/Novosibirsk -Namibia\ Daylight\ Time=Africa/Windhoek -Namibia\ Standard\ Time=Africa/Windhoek -Nepal\ Daylight\ Time=Asia/Katmandu -Nepal\ Standard\ Time=Asia/Katmandu -New\ Zealand\ Daylight\ Time=Pacific/Auckland -New\ Zealand\ Standard\ Time=Pacific/Auckland -Newfoundland\ Daylight\ Time=America/St_Johns -Newfoundland\ Standard\ Time=America/St_Johns -North\ Asia\ Daylight\ Time=Asia/Krasnoyarsk -North\ Asia\ East\ Daylight\ Time=Asia/Irkutsk -North\ Asia\ East\ Standard\ Time=Asia/Irkutsk -North\ Asia\ Standard\ Time=Asia/Krasnoyarsk -Pacific\ Daylight\ Time=America/Los_Angeles -Pacific\ Daylight\ Time\ (Mexico)=America/Santa_Isabel -Pacific\ SA\ Daylight\ Time=America/Santiago -Pacific\ SA\ Standard\ Time=America/Santiago -Pacific\ Standard\ Time=America/Los_Angeles -Pacific\ Standard\ Time\ (Mexico)=America/Santa_Isabel -Pakistan\ Daylight\ Time=Asia/Karachi -Pakistan\ Standard\ Time=Asia/Karachi -Paraguay\ Daylight\ Time=America/Asuncion -Paraguay\ Standard\ Time=America/Asuncion -Romance\ Daylight\ Time=Europe/Paris -Romance\ Standard\ Time=Europe/Paris -Russia\ Time\ Zone\ 10=Asia/Srednekolymsk -Russia\ Time\ Zone\ 11=Asia/Kamchatka -Russia\ Time\ Zone\ 3=Europe/Samara -Russian\ Daylight\ Time=Europe/Moscow -Russian\ Standard\ Time=Europe/Moscow -SA\ Eastern\ Daylight\ Time=America/Cayenne -SA\ Eastern\ Standard\ Time=America/Cayenne -SA\ Pacific\ Daylight\ Time=America/Bogota -SA\ Pacific\ Standard\ Time=America/Bogota -SA\ Western\ Daylight\ Time=America/La_Paz -SA\ Western\ Standard\ Time=America/La_Paz -SE\ Asia\ Daylight\ Time=Asia/Bangkok -SE\ Asia\ Standard\ Time=Asia/Bangkok -Samoa\ Daylight\ Time=Pacific/Apia -Samoa\ Standard\ Time=Pacific/Apia -Singapore\ Daylight\ Time=Asia/Singapore -Singapore\ Standard\ Time=Asia/Singapore -South\ Africa\ Daylight\ Time=Africa/Johannesburg -South\ Africa\ Standard\ Time=Africa/Johannesburg -Sri\ Lanka\ Daylight\ Time=Asia/Colombo -Sri\ Lanka\ Standard\ Time=Asia/Colombo -Syria\ Daylight\ Time=Asia/Damascus -Syria\ Standard\ Time=Asia/Damascus -Taipei\ Daylight\ Time=Asia/Taipei -Taipei\ Standard\ Time=Asia/Taipei -Tasmania\ Daylight\ Time=Australia/Hobart -Tasmania\ Standard\ Time=Australia/Hobart -Tokyo\ Daylight\ Time=Asia/Tokyo -Tokyo\ Standard\ Time=Asia/Tokyo -Tonga\ Daylight\ Time=Pacific/Tongatapu -Tonga\ Standard\ Time=Pacific/Tongatapu -Turkey\ Daylight\ Time=Europe/Istanbul -Turkey\ Standard\ Time=Europe/Istanbul -US\ Eastern\ Daylight\ Time=America/Indianapolis -US\ Eastern\ Standard\ Time=America/Indianapolis -US\ Mountain\ Daylight\ Time=America/Phoenix -US\ Mountain\ Standard\ Time=America/Phoenix -UTC=Etc/GMT -UTC+12=Etc/GMT-12 -UTC-02=Etc/GMT+2 -UTC-11=Etc/GMT+11 -Ulaanbaatar\ Daylight\ Time=Asia/Ulaanbaatar -Ulaanbaatar\ Standard\ Time=Asia/Ulaanbaatar -Venezuela\ Daylight\ Time=America/Caracas -Venezuela\ Standard\ Time=America/Caracas -Vladivostok\ Daylight\ Time=Asia/Vladivostok -Vladivostok\ Standard\ Time=Asia/Vladivostok -W.\ Australia\ Daylight\ Time=Australia/Perth -W.\ Australia\ Standard\ Time=Australia/Perth -W.\ Central\ Africa\ Daylight\ Time=Africa/Lagos -W.\ Central\ Africa\ Standard\ Time=Africa/Lagos -W.\ Europe\ Daylight\ Time=Europe/Berlin -W.\ Europe\ Standard\ Time=Europe/Berlin -West\ Asia\ Daylight\ Time=Asia/Tashkent -West\ Asia\ Standard\ Time=Asia/Tashkent -West\ Pacific\ Daylight\ Time=Pacific/Port_Moresby -West\ Pacific\ Standard\ Time=Pacific/Port_Moresby -Yakutsk\ Daylight\ Time=Asia/Yakutsk -Yakutsk\ Standard\ Time=Asia/Yakutsk -#Linked Time Zones alias -#Mon Sep 28 16:41:59 WEST 2015 -Africa/Addis_Ababa=Africa/Nairobi -Africa/Asmara=Africa/Nairobi -Africa/Asmera=Africa/Nairobi -Africa/Bamako=Africa/Abidjan -Africa/Bangui=Africa/Lagos -Africa/Banjul=Africa/Abidjan -Africa/Blantyre=Africa/Maputo -Africa/Brazzaville=Africa/Lagos -Africa/Bujumbura=Africa/Maputo -Africa/Conakry=Africa/Abidjan -Africa/Dakar=Africa/Abidjan -Africa/Dar_es_Salaam=Africa/Nairobi -Africa/Djibouti=Africa/Nairobi -Africa/Douala=Africa/Lagos -Africa/Freetown=Africa/Abidjan -Africa/Gaborone=Africa/Maputo -Africa/Harare=Africa/Maputo -Africa/Juba=Africa/Khartoum -Africa/Kampala=Africa/Nairobi -Africa/Kigali=Africa/Maputo -Africa/Kinshasa=Africa/Lagos -Africa/Libreville=Africa/Lagos -Africa/Lome=Africa/Abidjan -Africa/Luanda=Africa/Lagos -Africa/Lubumbashi=Africa/Maputo -Africa/Lusaka=Africa/Maputo -Africa/Malabo=Africa/Lagos -Africa/Maseru=Africa/Johannesburg -Africa/Mbabane=Africa/Johannesburg -Africa/Mogadishu=Africa/Nairobi -Africa/Niamey=Africa/Lagos -Africa/Nouakchott=Africa/Abidjan -Africa/Ouagadougou=Africa/Abidjan -Africa/Porto-Novo=Africa/Lagos -Africa/Sao_Tome=Africa/Abidjan -Africa/Timbuktu=Africa/Abidjan -America/Anguilla=America/Port_of_Spain -America/Antigua=America/Port_of_Spain -America/Argentina/ComodRivadavia=America/Argentina/Catamarca -America/Aruba=America/Curacao -America/Atka=America/Adak -America/Buenos_Aires=America/Argentina/Buenos_Aires -America/Catamarca=America/Argentina/Catamarca -America/Coral_Harbour=America/Atikokan -America/Cordoba=America/Argentina/Cordoba -America/Dominica=America/Port_of_Spain -America/Ensenada=America/Tijuana -America/Fort_Wayne=America/Indiana/Indianapolis -America/Grenada=America/Port_of_Spain -America/Guadeloupe=America/Port_of_Spain -America/Indianapolis=America/Indiana/Indianapolis -America/Jujuy=America/Argentina/Jujuy -America/Knox_IN=America/Indiana/Knox -America/Kralendijk=America/Curacao -America/Louisville=America/Kentucky/Louisville -America/Lower_Princes=America/Curacao -America/Marigot=America/Port_of_Spain -America/Mendoza=America/Argentina/Mendoza -America/Montreal=America/Toronto -America/Montserrat=America/Port_of_Spain -America/Porto_Acre=America/Rio_Branco -America/Rosario=America/Argentina/Cordoba -America/Shiprock=America/Denver -America/St_Barthelemy=America/Port_of_Spain -America/St_Kitts=America/Port_of_Spain -America/St_Lucia=America/Port_of_Spain -America/St_Thomas=America/Port_of_Spain -America/St_Vincent=America/Port_of_Spain -America/Tortola=America/Port_of_Spain -America/Virgin=America/Port_of_Spain -Antarctica/McMurdo=Pacific/Auckland -Antarctica/South_Pole=Pacific/Auckland -Arctic/Longyearbyen=Europe/Oslo -Asia/Aden=Asia/Riyadh -Asia/Ashkhabad=Asia/Ashgabat -Asia/Bahrain=Asia/Qatar -Asia/Calcutta=Asia/Kolkata -Asia/Chongqing=Asia/Shanghai -Asia/Chungking=Asia/Shanghai -Asia/Dacca=Asia/Dhaka -Asia/Harbin=Asia/Shanghai -Asia/Istanbul=Europe/Istanbul -Asia/Kashgar=Asia/Urumqi -Asia/Katmandu=Asia/Kathmandu -Asia/Kuwait=Asia/Riyadh -Asia/Macao=Asia/Macau -Asia/Muscat=Asia/Dubai -Asia/Phnom_Penh=Asia/Bangkok -Asia/Saigon=Asia/Ho_Chi_Minh -Asia/Tel_Aviv=Asia/Jerusalem -Asia/Thimbu=Asia/Thimphu -Asia/Ujung_Pandang=Asia/Makassar -Asia/Ulan_Bator=Asia/Ulaanbaatar -Asia/Vientiane=Asia/Bangkok -Atlantic/Faeroe=Atlantic/Faroe -Atlantic/Jan_Mayen=Europe/Oslo -Atlantic/St_Helena=Africa/Abidjan -Australia/ACT=Australia/Sydney -Australia/Canberra=Australia/Sydney -Australia/LHI=Australia/Lord_Howe -Australia/NSW=Australia/Sydney -Australia/North=Australia/Darwin -Australia/Queensland=Australia/Brisbane -Australia/South=Australia/Adelaide -Australia/Tasmania=Australia/Hobart -Australia/Victoria=Australia/Melbourne -Australia/West=Australia/Perth -Australia/Yancowinna=Australia/Broken_Hill -Brazil/Acre=America/Rio_Branco -Brazil/DeNoronha=America/Noronha -Brazil/East=America/Sao_Paulo -Brazil/West=America/Manaus -Canada/Atlantic=America/Halifax -Canada/Central=America/Winnipeg -Canada/East-Saskatchewan=America/Regina -Canada/Eastern=America/Toronto -Canada/Mountain=America/Edmonton -Canada/Newfoundland=America/St_Johns -Canada/Pacific=America/Vancouver -Canada/Saskatchewan=America/Regina -Canada/Yukon=America/Whitehorse -Chile/Continental=America/Santiago -Chile/EasterIsland=Pacific/Easter -Cuba=America/Havana -Egypt=Africa/Cairo -Eire=Europe/Dublin -Europe/Belfast=Europe/London -Europe/Bratislava=Europe/Prague -Europe/Busingen=Europe/Zurich -Europe/Guernsey=Europe/London -Europe/Isle_of_Man=Europe/London -Europe/Jersey=Europe/London -Europe/Ljubljana=Europe/Belgrade -Europe/Mariehamn=Europe/Helsinki -Europe/Nicosia=Asia/Nicosia -Europe/Podgorica=Europe/Belgrade -Europe/San_Marino=Europe/Rome -Europe/Sarajevo=Europe/Belgrade -Europe/Skopje=Europe/Belgrade -Europe/Tiraspol=Europe/Chisinau -Europe/Vaduz=Europe/Zurich -Europe/Vatican=Europe/Rome -Europe/Zagreb=Europe/Belgrade -GB=Europe/London -GB-Eire=Europe/London -GMT+0=Etc/GMT -GMT-0=Etc/GMT -GMT0=Etc/GMT -Greenwich=Etc/GMT -Hongkong=Asia/Hong_Kong -Iceland=Atlantic/Reykjavik -Indian/Antananarivo=Africa/Nairobi -Indian/Comoro=Africa/Nairobi -Indian/Mayotte=Africa/Nairobi -Iran=Asia/Tehran -Israel=Asia/Jerusalem -Jamaica=America/Jamaica -Japan=Asia/Tokyo -Kwajalein=Pacific/Kwajalein -Libya=Africa/Tripoli -Mexico/BajaNorte=America/Tijuana -Mexico/BajaSur=America/Mazatlan -Mexico/General=America/Mexico_City -NZ=Pacific/Auckland -NZ-CHAT=Pacific/Chatham -Navajo=America/Denver -PRC=Asia/Shanghai -Pacific/Johnston=Pacific/Honolulu -Pacific/Midway=Pacific/Pago_Pago -Pacific/Ponape=Pacific/Pohnpei -Pacific/Saipan=Pacific/Guam -Pacific/Samoa=Pacific/Pago_Pago -Pacific/Truk=Pacific/Chuuk -Pacific/Yap=Pacific/Chuuk -Poland=Europe/Warsaw -Portugal=Europe/Lisbon -ROC=Asia/Taipei -ROK=Asia/Seoul -Singapore=Asia/Singapore -Turkey=Europe/Istanbul -UCT=Etc/UCT -US/Alaska=America/Anchorage -US/Aleutian=America/Adak -US/Arizona=America/Phoenix -US/Central=America/Chicago -US/East-Indiana=America/Indiana/Indianapolis -US/Eastern=America/New_York -US/Hawaii=Pacific/Honolulu -US/Indiana-Starke=America/Indiana/Knox -US/Michigan=America/Detroit -US/Mountain=America/Denver -US/Pacific=America/Los_Angeles -US/Pacific-New=America/Los_Angeles -US/Samoa=Pacific/Pago_Pago -Universal=Etc/UTC -W-SU=Europe/Moscow -Zulu=Etc/UTC -#Standard (IANA) abbreviations -#Mon Sep 28 16:41:59 WEST 2015 -ACWST=Australia/Eucla -AFT=Asia/Kabul -ALMT=Asia/Almaty -ANAT=Asia/Anadyr -AZOST=Atlantic/Azores -AZOT=Atlantic/Azores -AZST=Asia/Baku -AZT=Asia/Baku -BDT=Asia/Dhaka -BNT=Asia/Brunei -BOT=America/La_Paz -BRST=America/Sao_Paulo -BTT=Asia/Thimphu -CAT=Africa/Maputo -CCT=Indian/Cocos -CHADT=Pacific/Chatham -CHAST=Pacific/Chatham -CHOST=Asia/Choibalsan -CHOT=Asia/Choibalsan -CHUT=Pacific/Chuuk -CKT=Pacific/Rarotonga -COT=America/Bogota -CVT=Atlantic/Cape_Verde -CXT=Indian/Christmas -ChST=Pacific/Guam -DAVT=Antarctica/Davis -DDUT=Antarctica/DumontDUrville -EAST=Pacific/Easter -ECT=America/Guayaquil -EGST=America/Scoresbysund -EGT=America/Scoresbysund -FJST=Pacific/Fiji -FJT=Pacific/Fiji -FKST=Atlantic/Stanley -FNT=America/Noronha -GALT=Pacific/Galapagos -GAMT=Pacific/Gambier -GET=Asia/Tbilisi -GFT=America/Cayenne -GILT=Pacific/Tarawa -GYT=America/Guyana -HDT=America/Adak -HKT=Asia/Hong_Kong -HOVST=Asia/Hovd -HOVT=Asia/Hovd -IDT=Asia/Jerusalem -IOT=Indian/Chagos -IRST=Asia/Tehran -JST=Asia/Tokyo -KGT=Asia/Bishkek -KOST=Pacific/Kosrae -LHDT=Australia/Lord_Howe -LHST=Australia/Lord_Howe -LINT=Pacific/Kiritimati -MAGT=Asia/Magadan -MART=Pacific/Marquesas -MAWT=Antarctica/Mawson -MEST=MET -MET=MET -MIST=Antarctica/Macquarie -MMT=Asia/Rangoon -MUT=Indian/Mauritius -MVT=Indian/Maldives -NCT=Pacific/Noumea -NDT=America/St_Johns -NFT=Pacific/Norfolk -NOVT=Asia/Novosibirsk -NPT=Asia/Kathmandu -NRT=Pacific/Nauru -NST=America/St_Johns -NUT=Pacific/Niue -NZDT=Pacific/Auckland -NZST=Pacific/Auckland -OMST=Asia/Omsk -ORAT=Asia/Oral -PET=America/Lima -PETT=Asia/Kamchatka -PGT=Pacific/Port_Moresby -PHOT=Pacific/Enderbury -PHT=Asia/Manila -PKT=Asia/Karachi -PMDT=America/Miquelon -PMST=America/Miquelon -PONT=Pacific/Pohnpei -PWT=Pacific/Palau -PYST=America/Asuncion -PYT=America/Asuncion -QYZT=Asia/Qyzylorda -RET=Indian/Reunion -ROTT=Antarctica/Rothera -SAKT=Asia/Sakhalin -SAMT=Europe/Samara -SAST=Africa/Johannesburg -SBT=Pacific/Guadalcanal -SCT=Indian/Mahe -SGT=Asia/Singapore -SRET=Asia/Srednekolymsk -SRT=America/Paramaribo -SST=Pacific/Pago_Pago -SYOT=Antarctica/Syowa -TAHT=Pacific/Tahiti -TFT=Indian/Kerguelen -TJT=Asia/Dushanbe -TKT=Pacific/Fakaofo -TLT=Asia/Dili -TMT=Asia/Ashgabat -TOT=Pacific/Tongatapu -TVT=Pacific/Funafuti -ULAST=Asia/Ulaanbaatar -ULAT=Asia/Ulaanbaatar -UYT=America/Montevideo -VET=America/Caracas -VOST=Antarctica/Vostok -VUT=Pacific/Efate -WAKT=Pacific/Wake -WAST=Africa/Windhoek -WFT=Pacific/Wallis -WGST=America/Godthab -WGT=America/Godthab -WIT=Asia/Jayapura -WITA=Asia/Makassar -WSDT=Pacific/Apia -WSST=Pacific/Apia -XJT=Asia/Urumqi -YEKT=Asia/Yekaterinburg diff --git a/target/classes/com/mysql/jdbc/UpdatableResultSet.class b/target/classes/com/mysql/jdbc/UpdatableResultSet.class deleted file mode 100644 index 67627702..00000000 Binary files a/target/classes/com/mysql/jdbc/UpdatableResultSet.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Util$RandStructcture.class b/target/classes/com/mysql/jdbc/Util$RandStructcture.class deleted file mode 100644 index d99f7e70..00000000 Binary files a/target/classes/com/mysql/jdbc/Util$RandStructcture.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Util.class b/target/classes/com/mysql/jdbc/Util.class deleted file mode 100644 index 15f318a4..00000000 Binary files a/target/classes/com/mysql/jdbc/Util.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/V1toV2StatementInterceptorAdapter.class b/target/classes/com/mysql/jdbc/V1toV2StatementInterceptorAdapter.class deleted file mode 100644 index 4d77b114..00000000 Binary files a/target/classes/com/mysql/jdbc/V1toV2StatementInterceptorAdapter.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/WatchableOutputStream.class b/target/classes/com/mysql/jdbc/WatchableOutputStream.class deleted file mode 100644 index 1458dd11..00000000 Binary files a/target/classes/com/mysql/jdbc/WatchableOutputStream.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/WatchableWriter.class b/target/classes/com/mysql/jdbc/WatchableWriter.class deleted file mode 100644 index 24f3784d..00000000 Binary files a/target/classes/com/mysql/jdbc/WatchableWriter.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/Wrapper.class b/target/classes/com/mysql/jdbc/Wrapper.class deleted file mode 100644 index fe29457b..00000000 Binary files a/target/classes/com/mysql/jdbc/Wrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/WriterWatcher.class b/target/classes/com/mysql/jdbc/WriterWatcher.class deleted file mode 100644 index 2eea0fca..00000000 Binary files a/target/classes/com/mysql/jdbc/WriterWatcher.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/authentication/MysqlClearPasswordPlugin.class b/target/classes/com/mysql/jdbc/authentication/MysqlClearPasswordPlugin.class deleted file mode 100644 index 29914184..00000000 Binary files a/target/classes/com/mysql/jdbc/authentication/MysqlClearPasswordPlugin.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/authentication/MysqlNativePasswordPlugin.class b/target/classes/com/mysql/jdbc/authentication/MysqlNativePasswordPlugin.class deleted file mode 100644 index 97f60904..00000000 Binary files a/target/classes/com/mysql/jdbc/authentication/MysqlNativePasswordPlugin.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/authentication/MysqlOldPasswordPlugin.class b/target/classes/com/mysql/jdbc/authentication/MysqlOldPasswordPlugin.class deleted file mode 100644 index dc543058..00000000 Binary files a/target/classes/com/mysql/jdbc/authentication/MysqlOldPasswordPlugin.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/authentication/Sha256PasswordPlugin.class b/target/classes/com/mysql/jdbc/authentication/Sha256PasswordPlugin.class deleted file mode 100644 index e14c47ca..00000000 Binary files a/target/classes/com/mysql/jdbc/authentication/Sha256PasswordPlugin.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/configs/3-0-Compat.properties b/target/classes/com/mysql/jdbc/configs/3-0-Compat.properties deleted file mode 100644 index 17141d3e..00000000 --- a/target/classes/com/mysql/jdbc/configs/3-0-Compat.properties +++ /dev/null @@ -1,19 +0,0 @@ -# -# Settings to maintain Connector/J 3.0.x compatibility -# (as much as it can be) -# - -emptyStringsConvertToZero=true -jdbcCompliantTruncation=false -noDatetimeStringSync=true -nullCatalogMeansCurrent=true -nullNamePatternMatchesAll=true -transformedBitIsBoolean=false -dontTrackOpenResources=true -zeroDateTimeBehavior=convertToNull -useServerPrepStmts=false -autoClosePStmtStreams=true -processEscapeCodesForPrepStmts=false -useFastDateParsing=false -populateInsertRowWithDefaultValues=false -useDirectRowUnpack=false \ No newline at end of file diff --git a/target/classes/com/mysql/jdbc/configs/5-0-Compat.properties b/target/classes/com/mysql/jdbc/configs/5-0-Compat.properties deleted file mode 100644 index 56afaf39..00000000 --- a/target/classes/com/mysql/jdbc/configs/5-0-Compat.properties +++ /dev/null @@ -1,6 +0,0 @@ -# -# Settings to maintain Connector/J 5.0.x compatibility -# (as much as it can be) -# - -useDirectRowUnpack=false \ No newline at end of file diff --git a/target/classes/com/mysql/jdbc/configs/clusterBase.properties b/target/classes/com/mysql/jdbc/configs/clusterBase.properties deleted file mode 100644 index e87a6046..00000000 --- a/target/classes/com/mysql/jdbc/configs/clusterBase.properties +++ /dev/null @@ -1,4 +0,0 @@ -# Basic properties for clusters -autoReconnect=true -failOverReadOnly=false -roundRobinLoadBalance=true \ No newline at end of file diff --git a/target/classes/com/mysql/jdbc/configs/coldFusion.properties b/target/classes/com/mysql/jdbc/configs/coldFusion.properties deleted file mode 100644 index 38580e20..00000000 --- a/target/classes/com/mysql/jdbc/configs/coldFusion.properties +++ /dev/null @@ -1,25 +0,0 @@ -# -# Properties for optimal usage in ColdFusion -# -# Automagically pulled in if "autoConfigureForColdFusion" is "true" -# which is the default configuration of the driver -# - -# -# CF uses a _lot_ of RSMD.isCaseSensitive() - this optimizes it -# - -useDynamicCharsetInfo=false - -# -# CF's pool tends to be "chatty" like DBCP -# - -alwaysSendSetIsolation=false -useLocalSessionState=true - -# -# CF's pool seems to loose connectivity on page restart -# - -autoReconnect=true diff --git a/target/classes/com/mysql/jdbc/configs/fullDebug.properties b/target/classes/com/mysql/jdbc/configs/fullDebug.properties deleted file mode 100644 index 14e47c52..00000000 --- a/target/classes/com/mysql/jdbc/configs/fullDebug.properties +++ /dev/null @@ -1,6 +0,0 @@ -# Settings for 'max-debug' style situations -profileSQL=true -gatherPerfMetrics=true -useUsageAdvisor=true -logSlowQueries=true -explainSlowQueries=true \ No newline at end of file diff --git a/target/classes/com/mysql/jdbc/configs/maxPerformance.properties b/target/classes/com/mysql/jdbc/configs/maxPerformance.properties deleted file mode 100644 index 86a800ac..00000000 --- a/target/classes/com/mysql/jdbc/configs/maxPerformance.properties +++ /dev/null @@ -1,34 +0,0 @@ -# -# A configuration that maximizes performance, while -# still staying JDBC-compliant and not doing anything that -# would be "dangerous" to run-of-the-mill J2EE applications -# -# Note that because we're caching things like callable statements -# and the server configuration, this bundle isn't appropriate -# for use with servers that get config'd dynamically without -# restarting the application using this configuration bundle. - -cachePrepStmts=true -cacheCallableStmts=true - -cacheServerConfiguration=true - -# -# Reduces amount of calls to database to set -# session state. "Safe" as long as application uses -# Connection methods to set current database, autocommit -# and transaction isolation -# - -useLocalSessionState=true -elideSetAutoCommits=true -alwaysSendSetIsolation=false - -# Can cause high-GC pressure if timeouts are used on every -# query -enableQueryTimeouts=false - -# Bypass connection attribute handling during connection -# setup -connectionAttributes=none - diff --git a/target/classes/com/mysql/jdbc/configs/solarisMaxPerformance.properties b/target/classes/com/mysql/jdbc/configs/solarisMaxPerformance.properties deleted file mode 100644 index b4b31a13..00000000 --- a/target/classes/com/mysql/jdbc/configs/solarisMaxPerformance.properties +++ /dev/null @@ -1,13 +0,0 @@ -# -# Solaris has pretty high syscall overhead, so these configs -# remove as many syscalls as possible. -# - -# Reduce recv() syscalls - -useUnbufferedInput=false -useReadAheadInput=false - -# Reduce number of calls to getTimeOfDay() - -maintainTimeStats=false \ No newline at end of file diff --git a/target/classes/com/mysql/jdbc/exceptions/DeadlockTimeoutRollbackMarker.class b/target/classes/com/mysql/jdbc/exceptions/DeadlockTimeoutRollbackMarker.class deleted file mode 100644 index 9b39c0c6..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/DeadlockTimeoutRollbackMarker.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLDataException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLDataException.class deleted file mode 100644 index 311e231b..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLDataException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLIntegrityConstraintViolationException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLIntegrityConstraintViolationException.class deleted file mode 100644 index f8be1c2c..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLIntegrityConstraintViolationException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLInvalidAuthorizationSpecException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLInvalidAuthorizationSpecException.class deleted file mode 100644 index b83acdc0..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLInvalidAuthorizationSpecException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLNonTransientConnectionException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLNonTransientConnectionException.class deleted file mode 100644 index b9b5f120..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLNonTransientConnectionException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLNonTransientException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLNonTransientException.class deleted file mode 100644 index d8993230..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLNonTransientException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLQueryInterruptedException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLQueryInterruptedException.class deleted file mode 100644 index b70e405b..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLQueryInterruptedException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLStatementCancelledException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLStatementCancelledException.class deleted file mode 100644 index ec6bc316..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLStatementCancelledException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLSyntaxErrorException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLSyntaxErrorException.class deleted file mode 100644 index 11015916..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLSyntaxErrorException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLTimeoutException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLTimeoutException.class deleted file mode 100644 index 9b86e1d6..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLTimeoutException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLTransactionRollbackException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLTransactionRollbackException.class deleted file mode 100644 index d6064e29..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLTransactionRollbackException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLTransientConnectionException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLTransientConnectionException.class deleted file mode 100644 index 1ecfa8ee..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLTransientConnectionException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/MySQLTransientException.class b/target/classes/com/mysql/jdbc/exceptions/MySQLTransientException.class deleted file mode 100644 index 9ba03210..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/MySQLTransientException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/CommunicationsException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/CommunicationsException.class deleted file mode 100644 index cda3ef56..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/CommunicationsException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLDataException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLDataException.class deleted file mode 100644 index 633f6d5f..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLDataException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLIntegrityConstraintViolationException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLIntegrityConstraintViolationException.class deleted file mode 100644 index 611efe68..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLIntegrityConstraintViolationException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLInvalidAuthorizationSpecException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLInvalidAuthorizationSpecException.class deleted file mode 100644 index d9ac3bb7..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLInvalidAuthorizationSpecException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLNonTransientConnectionException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLNonTransientConnectionException.class deleted file mode 100644 index 37274099..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLNonTransientConnectionException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLNonTransientException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLNonTransientException.class deleted file mode 100644 index 4ad8cbf7..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLNonTransientException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLQueryInterruptedException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLQueryInterruptedException.class deleted file mode 100644 index e1f3b165..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLQueryInterruptedException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLSyntaxErrorException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLSyntaxErrorException.class deleted file mode 100644 index bb7e8cac..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLSyntaxErrorException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTimeoutException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTimeoutException.class deleted file mode 100644 index 9e74e9b6..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTimeoutException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransactionRollbackException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransactionRollbackException.class deleted file mode 100644 index e938bcd1..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransactionRollbackException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransientConnectionException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransientConnectionException.class deleted file mode 100644 index 9e87e5df..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransientConnectionException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransientException.class b/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransientException.class deleted file mode 100644 index b652b817..00000000 Binary files a/target/classes/com/mysql/jdbc/exceptions/jdbc4/MySQLTransientException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/integration/c3p0/MysqlConnectionTester.class b/target/classes/com/mysql/jdbc/integration/c3p0/MysqlConnectionTester.class deleted file mode 100644 index 089d6f12..00000000 Binary files a/target/classes/com/mysql/jdbc/integration/c3p0/MysqlConnectionTester.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/integration/jboss/ExtendedMysqlExceptionSorter.class b/target/classes/com/mysql/jdbc/integration/jboss/ExtendedMysqlExceptionSorter.class deleted file mode 100644 index 65cd504a..00000000 Binary files a/target/classes/com/mysql/jdbc/integration/jboss/ExtendedMysqlExceptionSorter.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/integration/jboss/MysqlValidConnectionChecker.class b/target/classes/com/mysql/jdbc/integration/jboss/MysqlValidConnectionChecker.class deleted file mode 100644 index 3ca4fc47..00000000 Binary files a/target/classes/com/mysql/jdbc/integration/jboss/MysqlValidConnectionChecker.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/interceptors/ResultSetScannerInterceptor$1.class b/target/classes/com/mysql/jdbc/interceptors/ResultSetScannerInterceptor$1.class deleted file mode 100644 index f5d0d254..00000000 Binary files a/target/classes/com/mysql/jdbc/interceptors/ResultSetScannerInterceptor$1.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/interceptors/ResultSetScannerInterceptor.class b/target/classes/com/mysql/jdbc/interceptors/ResultSetScannerInterceptor.class deleted file mode 100644 index e01459f1..00000000 Binary files a/target/classes/com/mysql/jdbc/interceptors/ResultSetScannerInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/interceptors/ServerStatusDiffInterceptor.class b/target/classes/com/mysql/jdbc/interceptors/ServerStatusDiffInterceptor.class deleted file mode 100644 index 6369ce19..00000000 Binary files a/target/classes/com/mysql/jdbc/interceptors/ServerStatusDiffInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/interceptors/SessionAssociationInterceptor.class b/target/classes/com/mysql/jdbc/interceptors/SessionAssociationInterceptor.class deleted file mode 100644 index 2d3196e0..00000000 Binary files a/target/classes/com/mysql/jdbc/interceptors/SessionAssociationInterceptor.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/CallableStatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/CallableStatementWrapper.class deleted file mode 100644 index 4a05b5a5..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/CallableStatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/ConnectionWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/ConnectionWrapper.class deleted file mode 100644 index 2df6ec05..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/ConnectionWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC42CallableStatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC42CallableStatementWrapper.class deleted file mode 100644 index 3247184a..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC42CallableStatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC42PreparedStatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC42PreparedStatementWrapper.class deleted file mode 100644 index 9abfa8f2..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC42PreparedStatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4CallableStatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4CallableStatementWrapper.class deleted file mode 100644 index e81f9d0b..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4CallableStatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4ConnectionWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4ConnectionWrapper.class deleted file mode 100644 index a4a72838..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4ConnectionWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4MysqlPooledConnection.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4MysqlPooledConnection.class deleted file mode 100644 index 1ef77d03..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4MysqlPooledConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4MysqlXAConnection.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4MysqlXAConnection.class deleted file mode 100644 index b25a999c..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4MysqlXAConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4PreparedStatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4PreparedStatementWrapper.class deleted file mode 100644 index 99d031de..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4PreparedStatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4StatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4StatementWrapper.class deleted file mode 100644 index ed241f84..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4StatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4SuspendableXAConnection.class b/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4SuspendableXAConnection.class deleted file mode 100644 index 8cc1adef..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/JDBC4SuspendableXAConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlConnectionPoolDataSource.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlConnectionPoolDataSource.class deleted file mode 100644 index 6a8d1043..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlConnectionPoolDataSource.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlDataSource.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlDataSource.class deleted file mode 100644 index b942dd48..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlDataSource.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlDataSourceFactory.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlDataSourceFactory.class deleted file mode 100644 index 3e0f6b65..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlDataSourceFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlPooledConnection.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlPooledConnection.class deleted file mode 100644 index 6b70d1ed..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlPooledConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXAConnection.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXAConnection.class deleted file mode 100644 index 58c88e21..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXAConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXADataSource.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXADataSource.class deleted file mode 100644 index 3e3773cb..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXADataSource.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXAException.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXAException.class deleted file mode 100644 index e34b3f85..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXAException.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXid.class b/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXid.class deleted file mode 100644 index da82c3df..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/MysqlXid.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/PreparedStatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/PreparedStatementWrapper.class deleted file mode 100644 index 319fc7a7..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/PreparedStatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/StatementWrapper.class b/target/classes/com/mysql/jdbc/jdbc2/optional/StatementWrapper.class deleted file mode 100644 index 8f579be1..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/StatementWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/SuspendableXAConnection.class b/target/classes/com/mysql/jdbc/jdbc2/optional/SuspendableXAConnection.class deleted file mode 100644 index 83c7c123..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/SuspendableXAConnection.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/WrapperBase$ConnectionErrorFiringInvocationHandler.class b/target/classes/com/mysql/jdbc/jdbc2/optional/WrapperBase$ConnectionErrorFiringInvocationHandler.class deleted file mode 100644 index ad425ce2..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/WrapperBase$ConnectionErrorFiringInvocationHandler.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jdbc2/optional/WrapperBase.class b/target/classes/com/mysql/jdbc/jdbc2/optional/WrapperBase.class deleted file mode 100644 index 3a7f4dc4..00000000 Binary files a/target/classes/com/mysql/jdbc/jdbc2/optional/WrapperBase.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jmx/LoadBalanceConnectionGroupManager.class b/target/classes/com/mysql/jdbc/jmx/LoadBalanceConnectionGroupManager.class deleted file mode 100644 index 751e9cbe..00000000 Binary files a/target/classes/com/mysql/jdbc/jmx/LoadBalanceConnectionGroupManager.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jmx/LoadBalanceConnectionGroupManagerMBean.class b/target/classes/com/mysql/jdbc/jmx/LoadBalanceConnectionGroupManagerMBean.class deleted file mode 100644 index 595bad7f..00000000 Binary files a/target/classes/com/mysql/jdbc/jmx/LoadBalanceConnectionGroupManagerMBean.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jmx/ReplicationGroupManager.class b/target/classes/com/mysql/jdbc/jmx/ReplicationGroupManager.class deleted file mode 100644 index ec360b69..00000000 Binary files a/target/classes/com/mysql/jdbc/jmx/ReplicationGroupManager.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/jmx/ReplicationGroupManagerMBean.class b/target/classes/com/mysql/jdbc/jmx/ReplicationGroupManagerMBean.class deleted file mode 100644 index 2333c0c5..00000000 Binary files a/target/classes/com/mysql/jdbc/jmx/ReplicationGroupManagerMBean.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/log/Jdk14Logger.class b/target/classes/com/mysql/jdbc/log/Jdk14Logger.class deleted file mode 100644 index 9130cc5e..00000000 Binary files a/target/classes/com/mysql/jdbc/log/Jdk14Logger.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/log/Log.class b/target/classes/com/mysql/jdbc/log/Log.class deleted file mode 100644 index 1040b861..00000000 Binary files a/target/classes/com/mysql/jdbc/log/Log.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/log/LogFactory.class b/target/classes/com/mysql/jdbc/log/LogFactory.class deleted file mode 100644 index 039d4bbe..00000000 Binary files a/target/classes/com/mysql/jdbc/log/LogFactory.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/log/LogUtils.class b/target/classes/com/mysql/jdbc/log/LogUtils.class deleted file mode 100644 index dfe8eea2..00000000 Binary files a/target/classes/com/mysql/jdbc/log/LogUtils.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/log/NullLogger.class b/target/classes/com/mysql/jdbc/log/NullLogger.class deleted file mode 100644 index 56e86ab3..00000000 Binary files a/target/classes/com/mysql/jdbc/log/NullLogger.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/log/Slf4JLogger.class b/target/classes/com/mysql/jdbc/log/Slf4JLogger.class deleted file mode 100644 index 5d313460..00000000 Binary files a/target/classes/com/mysql/jdbc/log/Slf4JLogger.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/log/StandardLogger.class b/target/classes/com/mysql/jdbc/log/StandardLogger.class deleted file mode 100644 index b484593a..00000000 Binary files a/target/classes/com/mysql/jdbc/log/StandardLogger.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/profiler/LoggingProfilerEventHandler.class b/target/classes/com/mysql/jdbc/profiler/LoggingProfilerEventHandler.class deleted file mode 100644 index a3b4c4d2..00000000 Binary files a/target/classes/com/mysql/jdbc/profiler/LoggingProfilerEventHandler.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/profiler/ProfilerEvent.class b/target/classes/com/mysql/jdbc/profiler/ProfilerEvent.class deleted file mode 100644 index b6daebbe..00000000 Binary files a/target/classes/com/mysql/jdbc/profiler/ProfilerEvent.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/profiler/ProfilerEventHandler.class b/target/classes/com/mysql/jdbc/profiler/ProfilerEventHandler.class deleted file mode 100644 index e653f870..00000000 Binary files a/target/classes/com/mysql/jdbc/profiler/ProfilerEventHandler.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/Base64Decoder$IntWrapper.class b/target/classes/com/mysql/jdbc/util/Base64Decoder$IntWrapper.class deleted file mode 100644 index 62936e6a..00000000 Binary files a/target/classes/com/mysql/jdbc/util/Base64Decoder$IntWrapper.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/Base64Decoder.class b/target/classes/com/mysql/jdbc/util/Base64Decoder.class deleted file mode 100644 index 4deb22d3..00000000 Binary files a/target/classes/com/mysql/jdbc/util/Base64Decoder.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/BaseBugReport.class b/target/classes/com/mysql/jdbc/util/BaseBugReport.class deleted file mode 100644 index 037cd285..00000000 Binary files a/target/classes/com/mysql/jdbc/util/BaseBugReport.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/ErrorMappingsDocGenerator.class b/target/classes/com/mysql/jdbc/util/ErrorMappingsDocGenerator.class deleted file mode 100644 index c417fd48..00000000 Binary files a/target/classes/com/mysql/jdbc/util/ErrorMappingsDocGenerator.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/LRUCache.class b/target/classes/com/mysql/jdbc/util/LRUCache.class deleted file mode 100644 index 8f9ad783..00000000 Binary files a/target/classes/com/mysql/jdbc/util/LRUCache.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/PropertiesDocGenerator.class b/target/classes/com/mysql/jdbc/util/PropertiesDocGenerator.class deleted file mode 100644 index 92e55dcc..00000000 Binary files a/target/classes/com/mysql/jdbc/util/PropertiesDocGenerator.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/ReadAheadInputStream.class b/target/classes/com/mysql/jdbc/util/ReadAheadInputStream.class deleted file mode 100644 index 9c0537fb..00000000 Binary files a/target/classes/com/mysql/jdbc/util/ReadAheadInputStream.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/ResultSetUtil.class b/target/classes/com/mysql/jdbc/util/ResultSetUtil.class deleted file mode 100644 index a24a0eb1..00000000 Binary files a/target/classes/com/mysql/jdbc/util/ResultSetUtil.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/ServerController.class b/target/classes/com/mysql/jdbc/util/ServerController.class deleted file mode 100644 index 20557279..00000000 Binary files a/target/classes/com/mysql/jdbc/util/ServerController.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/TimezoneDump.class b/target/classes/com/mysql/jdbc/util/TimezoneDump.class deleted file mode 100644 index 520d6b19..00000000 Binary files a/target/classes/com/mysql/jdbc/util/TimezoneDump.class and /dev/null differ diff --git a/target/classes/com/mysql/jdbc/util/VersionFSHierarchyMaker.class b/target/classes/com/mysql/jdbc/util/VersionFSHierarchyMaker.class deleted file mode 100644 index 578b25d9..00000000 Binary files a/target/classes/com/mysql/jdbc/util/VersionFSHierarchyMaker.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/HibernateUtil.class b/target/classes/com/rafsan/inventory/HibernateUtil.class deleted file mode 100644 index 62c2d12c..00000000 Binary files a/target/classes/com/rafsan/inventory/HibernateUtil.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/MainApp.class b/target/classes/com/rafsan/inventory/MainApp.class deleted file mode 100644 index 6a7d4a65..00000000 Binary files a/target/classes/com/rafsan/inventory/MainApp.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/admin/AdminController.class b/target/classes/com/rafsan/inventory/controller/admin/AdminController.class deleted file mode 100644 index b827be77..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/admin/AdminController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/category/AddController.class b/target/classes/com/rafsan/inventory/controller/category/AddController.class deleted file mode 100644 index 189d481b..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/category/AddController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/category/CategoryController.class b/target/classes/com/rafsan/inventory/controller/category/CategoryController.class deleted file mode 100644 index b8b8b14c..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/category/CategoryController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/category/EditController.class b/target/classes/com/rafsan/inventory/controller/category/EditController.class deleted file mode 100644 index 27493bfe..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/category/EditController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/employee/AddController.class b/target/classes/com/rafsan/inventory/controller/employee/AddController.class deleted file mode 100644 index 06b879a8..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/employee/AddController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/employee/EditController.class b/target/classes/com/rafsan/inventory/controller/employee/EditController.class deleted file mode 100644 index 84e2cdc2..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/employee/EditController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/employee/EmployeeController.class b/target/classes/com/rafsan/inventory/controller/employee/EmployeeController.class deleted file mode 100644 index e23bd2f6..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/employee/EmployeeController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/login/LoginController.class b/target/classes/com/rafsan/inventory/controller/login/LoginController.class deleted file mode 100644 index 86b63719..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/login/LoginController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/pos/ConfirmController.class b/target/classes/com/rafsan/inventory/controller/pos/ConfirmController.class deleted file mode 100644 index e7bdacd6..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/pos/ConfirmController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/pos/InvoiceController.class b/target/classes/com/rafsan/inventory/controller/pos/InvoiceController.class deleted file mode 100644 index 2ed4be4a..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/pos/InvoiceController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/pos/PosController.class b/target/classes/com/rafsan/inventory/controller/pos/PosController.class deleted file mode 100644 index 4349a646..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/pos/PosController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/product/AddController.class b/target/classes/com/rafsan/inventory/controller/product/AddController.class deleted file mode 100644 index ef8e16b6..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/product/AddController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/product/EditController.class b/target/classes/com/rafsan/inventory/controller/product/EditController.class deleted file mode 100644 index 987cb030..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/product/EditController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/product/ProductController.class b/target/classes/com/rafsan/inventory/controller/product/ProductController.class deleted file mode 100644 index ba1911a8..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/product/ProductController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/purchase/AddController.class b/target/classes/com/rafsan/inventory/controller/purchase/AddController.class deleted file mode 100644 index fbde8d75..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/purchase/AddController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/purchase/PurchaseController.class b/target/classes/com/rafsan/inventory/controller/purchase/PurchaseController.class deleted file mode 100644 index b11794fa..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/purchase/PurchaseController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/report/ReportController.class b/target/classes/com/rafsan/inventory/controller/report/ReportController.class deleted file mode 100644 index c6744eba..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/report/ReportController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/report/ViewController.class b/target/classes/com/rafsan/inventory/controller/report/ViewController.class deleted file mode 100644 index bd0c1d1d..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/report/ViewController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/sales/SalesController.class b/target/classes/com/rafsan/inventory/controller/sales/SalesController.class deleted file mode 100644 index 2409de58..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/sales/SalesController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/supplier/AddController.class b/target/classes/com/rafsan/inventory/controller/supplier/AddController.class deleted file mode 100644 index 95347b37..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/supplier/AddController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/supplier/EditController.class b/target/classes/com/rafsan/inventory/controller/supplier/EditController.class deleted file mode 100644 index b957a8c5..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/supplier/EditController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/controller/supplier/SupplierController.class b/target/classes/com/rafsan/inventory/controller/supplier/SupplierController.class deleted file mode 100644 index bc9aa08c..00000000 Binary files a/target/classes/com/rafsan/inventory/controller/supplier/SupplierController.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/dao/CategoryDao.class b/target/classes/com/rafsan/inventory/dao/CategoryDao.class deleted file mode 100644 index 4ebd5b19..00000000 Binary files a/target/classes/com/rafsan/inventory/dao/CategoryDao.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/dao/EmployeeDao.class b/target/classes/com/rafsan/inventory/dao/EmployeeDao.class deleted file mode 100644 index 546bac5f..00000000 Binary files a/target/classes/com/rafsan/inventory/dao/EmployeeDao.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/dao/InvoiceDao.class b/target/classes/com/rafsan/inventory/dao/InvoiceDao.class deleted file mode 100644 index 2e5e5536..00000000 Binary files a/target/classes/com/rafsan/inventory/dao/InvoiceDao.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/dao/ProductDao.class b/target/classes/com/rafsan/inventory/dao/ProductDao.class deleted file mode 100644 index 14a40913..00000000 Binary files a/target/classes/com/rafsan/inventory/dao/ProductDao.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/dao/PurchaseDao.class b/target/classes/com/rafsan/inventory/dao/PurchaseDao.class deleted file mode 100644 index 4dad524c..00000000 Binary files a/target/classes/com/rafsan/inventory/dao/PurchaseDao.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/dao/SaleDao.class b/target/classes/com/rafsan/inventory/dao/SaleDao.class deleted file mode 100644 index 76669cdd..00000000 Binary files a/target/classes/com/rafsan/inventory/dao/SaleDao.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/dao/SupplierDao.class b/target/classes/com/rafsan/inventory/dao/SupplierDao.class deleted file mode 100644 index e7b1e3f4..00000000 Binary files a/target/classes/com/rafsan/inventory/dao/SupplierDao.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Category.class b/target/classes/com/rafsan/inventory/entity/Category.class deleted file mode 100644 index 080c7063..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Category.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Employee.class b/target/classes/com/rafsan/inventory/entity/Employee.class deleted file mode 100644 index 2b715785..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Employee.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Invoice.class b/target/classes/com/rafsan/inventory/entity/Invoice.class deleted file mode 100644 index 32f4f491..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Invoice.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Item.class b/target/classes/com/rafsan/inventory/entity/Item.class deleted file mode 100644 index 36c74eed..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Item.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Payment.class b/target/classes/com/rafsan/inventory/entity/Payment.class deleted file mode 100644 index 85338611..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Payment.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Product.class b/target/classes/com/rafsan/inventory/entity/Product.class deleted file mode 100644 index 5dd22989..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Product.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Purchase.class b/target/classes/com/rafsan/inventory/entity/Purchase.class deleted file mode 100644 index d8f6af40..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Purchase.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Sale.class b/target/classes/com/rafsan/inventory/entity/Sale.class deleted file mode 100644 index 848f50cc..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Sale.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/entity/Supplier.class b/target/classes/com/rafsan/inventory/entity/Supplier.class deleted file mode 100644 index 4901fdaf..00000000 Binary files a/target/classes/com/rafsan/inventory/entity/Supplier.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/interfaces/CategoryInterface.class b/target/classes/com/rafsan/inventory/interfaces/CategoryInterface.class deleted file mode 100644 index b9c17ce7..00000000 Binary files a/target/classes/com/rafsan/inventory/interfaces/CategoryInterface.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/interfaces/EmployeeInterface.class b/target/classes/com/rafsan/inventory/interfaces/EmployeeInterface.class deleted file mode 100644 index 44e38c50..00000000 Binary files a/target/classes/com/rafsan/inventory/interfaces/EmployeeInterface.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/interfaces/ProductInterface.class b/target/classes/com/rafsan/inventory/interfaces/ProductInterface.class deleted file mode 100644 index aa74f905..00000000 Binary files a/target/classes/com/rafsan/inventory/interfaces/ProductInterface.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/interfaces/PurchaseInterface.class b/target/classes/com/rafsan/inventory/interfaces/PurchaseInterface.class deleted file mode 100644 index 7b7cfe97..00000000 Binary files a/target/classes/com/rafsan/inventory/interfaces/PurchaseInterface.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/interfaces/ReportInterface.class b/target/classes/com/rafsan/inventory/interfaces/ReportInterface.class deleted file mode 100644 index 74a60234..00000000 Binary files a/target/classes/com/rafsan/inventory/interfaces/ReportInterface.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/interfaces/SaleInterface.class b/target/classes/com/rafsan/inventory/interfaces/SaleInterface.class deleted file mode 100644 index 6a296abe..00000000 Binary files a/target/classes/com/rafsan/inventory/interfaces/SaleInterface.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/interfaces/SupplierInterface.class b/target/classes/com/rafsan/inventory/interfaces/SupplierInterface.class deleted file mode 100644 index 9550fac2..00000000 Binary files a/target/classes/com/rafsan/inventory/interfaces/SupplierInterface.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/model/CategoryModel.class b/target/classes/com/rafsan/inventory/model/CategoryModel.class deleted file mode 100644 index 34f2c1a3..00000000 Binary files a/target/classes/com/rafsan/inventory/model/CategoryModel.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/model/EmployeeModel.class b/target/classes/com/rafsan/inventory/model/EmployeeModel.class deleted file mode 100644 index f7e97fd0..00000000 Binary files a/target/classes/com/rafsan/inventory/model/EmployeeModel.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/model/InvoiceModel.class b/target/classes/com/rafsan/inventory/model/InvoiceModel.class deleted file mode 100644 index 4c00f5c9..00000000 Binary files a/target/classes/com/rafsan/inventory/model/InvoiceModel.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/model/ProductModel.class b/target/classes/com/rafsan/inventory/model/ProductModel.class deleted file mode 100644 index 9dec4642..00000000 Binary files a/target/classes/com/rafsan/inventory/model/ProductModel.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/model/PurchaseModel.class b/target/classes/com/rafsan/inventory/model/PurchaseModel.class deleted file mode 100644 index 6dc2d422..00000000 Binary files a/target/classes/com/rafsan/inventory/model/PurchaseModel.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/model/SalesModel.class b/target/classes/com/rafsan/inventory/model/SalesModel.class deleted file mode 100644 index f0f2932f..00000000 Binary files a/target/classes/com/rafsan/inventory/model/SalesModel.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/model/SupplierModel.class b/target/classes/com/rafsan/inventory/model/SupplierModel.class deleted file mode 100644 index e8ada7d2..00000000 Binary files a/target/classes/com/rafsan/inventory/model/SupplierModel.class and /dev/null differ diff --git a/target/classes/com/rafsan/inventory/pdf/PrintInvoice.class b/target/classes/com/rafsan/inventory/pdf/PrintInvoice.class deleted file mode 100644 index ec1db99b..00000000 Binary files a/target/classes/com/rafsan/inventory/pdf/PrintInvoice.class and /dev/null differ diff --git a/target/classes/fxml/Admin.fxml b/target/classes/fxml/Admin.fxml deleted file mode 100644 index a8012f90..00000000 --- a/target/classes/fxml/Admin.fxml +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/Category.fxml b/target/classes/fxml/Category.fxml deleted file mode 100644 index 7d81b64f..00000000 --- a/target/classes/fxml/Category.fxml +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/Confirm.fxml b/target/classes/fxml/Confirm.fxml deleted file mode 100644 index 3dcb800b..00000000 --- a/target/classes/fxml/Confirm.fxml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/Employee.fxml b/target/classes/fxml/Employee.fxml deleted file mode 100644 index f1eb57ae..00000000 --- a/target/classes/fxml/Employee.fxml +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/Invoice.fxml b/target/classes/fxml/Invoice.fxml deleted file mode 100644 index 27d77f31..00000000 --- a/target/classes/fxml/Invoice.fxml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/category/Edit.fxml b/target/classes/fxml/category/Edit.fxml deleted file mode 100644 index 3135cb5b..00000000 --- a/target/classes/fxml/category/Edit.fxml +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/employee/Add.fxml b/target/classes/fxml/employee/Add.fxml deleted file mode 100644 index a91d767b..00000000 --- a/target/classes/fxml/employee/Add.fxml +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/employee/Edit.fxml b/target/classes/fxml/employee/Edit.fxml deleted file mode 100644 index b2944896..00000000 --- a/target/classes/fxml/employee/Edit.fxml +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/product/Add.fxml b/target/classes/fxml/product/Add.fxml deleted file mode 100644 index 096b514b..00000000 --- a/target/classes/fxml/product/Add.fxml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/product/Edit.fxml b/target/classes/fxml/product/Edit.fxml deleted file mode 100644 index 64810475..00000000 --- a/target/classes/fxml/product/Edit.fxml +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/purchase/Add.fxml b/target/classes/fxml/purchase/Add.fxml deleted file mode 100644 index 7c0fc761..00000000 --- a/target/classes/fxml/purchase/Add.fxml +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/report/View.fxml b/target/classes/fxml/report/View.fxml deleted file mode 100644 index 70b3677a..00000000 --- a/target/classes/fxml/report/View.fxml +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/supplier/Add.fxml b/target/classes/fxml/supplier/Add.fxml deleted file mode 100644 index 042bc2df..00000000 --- a/target/classes/fxml/supplier/Add.fxml +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/fxml/supplier/Edit.fxml b/target/classes/fxml/supplier/Edit.fxml deleted file mode 100644 index cd414767..00000000 --- a/target/classes/fxml/supplier/Edit.fxml +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/hibernate.cfg.xml b/target/classes/hibernate.cfg.xml deleted file mode 100644 index 5f166dc1..00000000 --- a/target/classes/hibernate.cfg.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - org.hibernate.dialect.MySQLDialect - com.mysql.jdbc.Driver - jdbc:mysql://localhost:3306/inventory - root - thread - - - - - - - - - diff --git a/target/classes/images/admin.png b/target/classes/images/admin.png deleted file mode 100644 index a29a4279..00000000 Binary files a/target/classes/images/admin.png and /dev/null differ diff --git a/target/classes/images/arrow.png b/target/classes/images/arrow.png deleted file mode 100644 index bfabc329..00000000 Binary files a/target/classes/images/arrow.png and /dev/null differ diff --git a/target/classes/images/box.png b/target/classes/images/box.png deleted file mode 100644 index a412cef5..00000000 Binary files a/target/classes/images/box.png and /dev/null differ diff --git a/target/classes/images/category.png b/target/classes/images/category.png deleted file mode 100644 index 7dc7d8c4..00000000 Binary files a/target/classes/images/category.png and /dev/null differ diff --git a/target/classes/images/close.png b/target/classes/images/close.png deleted file mode 100644 index 56198001..00000000 Binary files a/target/classes/images/close.png and /dev/null differ diff --git a/target/classes/images/employee.png b/target/classes/images/employee.png deleted file mode 100644 index afbe424b..00000000 Binary files a/target/classes/images/employee.png and /dev/null differ diff --git a/target/classes/images/invoice.png b/target/classes/images/invoice.png deleted file mode 100644 index 40a9429a..00000000 Binary files a/target/classes/images/invoice.png and /dev/null differ diff --git a/target/classes/images/logo.png b/target/classes/images/logo.png deleted file mode 100644 index 0727f1db..00000000 Binary files a/target/classes/images/logo.png and /dev/null differ diff --git a/target/classes/images/logout.png b/target/classes/images/logout.png deleted file mode 100644 index 1ef33843..00000000 Binary files a/target/classes/images/logout.png and /dev/null differ diff --git a/target/classes/images/menu.png b/target/classes/images/menu.png deleted file mode 100644 index 8c62e0bb..00000000 Binary files a/target/classes/images/menu.png and /dev/null differ diff --git a/target/classes/images/minus.png b/target/classes/images/minus.png deleted file mode 100644 index 60fe11b5..00000000 Binary files a/target/classes/images/minus.png and /dev/null differ diff --git a/target/classes/images/product.png b/target/classes/images/product.png deleted file mode 100644 index 39e817c9..00000000 Binary files a/target/classes/images/product.png and /dev/null differ diff --git a/target/classes/images/purchase.png b/target/classes/images/purchase.png deleted file mode 100644 index 9f948b73..00000000 Binary files a/target/classes/images/purchase.png and /dev/null differ diff --git a/target/classes/images/sale.png b/target/classes/images/sale.png deleted file mode 100644 index 7ed888b5..00000000 Binary files a/target/classes/images/sale.png and /dev/null differ diff --git a/target/classes/images/search.png b/target/classes/images/search.png deleted file mode 100644 index 91d1b081..00000000 Binary files a/target/classes/images/search.png and /dev/null differ diff --git a/target/classes/images/supplier.png b/target/classes/images/supplier.png deleted file mode 100644 index 373880da..00000000 Binary files a/target/classes/images/supplier.png and /dev/null differ diff --git a/target/classes/images/user.png b/target/classes/images/user.png deleted file mode 100644 index e7864d18..00000000 Binary files a/target/classes/images/user.png and /dev/null differ diff --git a/target/classes/images/window.png b/target/classes/images/window.png deleted file mode 100644 index b2e8558f..00000000 Binary files a/target/classes/images/window.png and /dev/null differ diff --git a/target/classes/javassist/ByteArrayClassPath.class b/target/classes/javassist/ByteArrayClassPath.class deleted file mode 100644 index 1965f591..00000000 Binary files a/target/classes/javassist/ByteArrayClassPath.class and /dev/null differ diff --git a/target/classes/javassist/CannotCompileException.class b/target/classes/javassist/CannotCompileException.class deleted file mode 100644 index 38fdeb25..00000000 Binary files a/target/classes/javassist/CannotCompileException.class and /dev/null differ diff --git a/target/classes/javassist/ClassClassPath.class b/target/classes/javassist/ClassClassPath.class deleted file mode 100644 index 3a025923..00000000 Binary files a/target/classes/javassist/ClassClassPath.class and /dev/null differ diff --git a/target/classes/javassist/ClassMap.class b/target/classes/javassist/ClassMap.class deleted file mode 100644 index 74dd2ec6..00000000 Binary files a/target/classes/javassist/ClassMap.class and /dev/null differ diff --git a/target/classes/javassist/ClassPath.class b/target/classes/javassist/ClassPath.class deleted file mode 100644 index 560e47ed..00000000 Binary files a/target/classes/javassist/ClassPath.class and /dev/null differ diff --git a/target/classes/javassist/ClassPathList.class b/target/classes/javassist/ClassPathList.class deleted file mode 100644 index d5040311..00000000 Binary files a/target/classes/javassist/ClassPathList.class and /dev/null differ diff --git a/target/classes/javassist/ClassPool$1.class b/target/classes/javassist/ClassPool$1.class deleted file mode 100644 index 07cccb2d..00000000 Binary files a/target/classes/javassist/ClassPool$1.class and /dev/null differ diff --git a/target/classes/javassist/ClassPool.class b/target/classes/javassist/ClassPool.class deleted file mode 100644 index bee26435..00000000 Binary files a/target/classes/javassist/ClassPool.class and /dev/null differ diff --git a/target/classes/javassist/ClassPoolTail.class b/target/classes/javassist/ClassPoolTail.class deleted file mode 100644 index d236ad96..00000000 Binary files a/target/classes/javassist/ClassPoolTail.class and /dev/null differ diff --git a/target/classes/javassist/CodeConverter$ArrayAccessReplacementMethodNames.class b/target/classes/javassist/CodeConverter$ArrayAccessReplacementMethodNames.class deleted file mode 100644 index 39b0834b..00000000 Binary files a/target/classes/javassist/CodeConverter$ArrayAccessReplacementMethodNames.class and /dev/null differ diff --git a/target/classes/javassist/CodeConverter$DefaultArrayAccessReplacementMethodNames.class b/target/classes/javassist/CodeConverter$DefaultArrayAccessReplacementMethodNames.class deleted file mode 100644 index 6ee693c7..00000000 Binary files a/target/classes/javassist/CodeConverter$DefaultArrayAccessReplacementMethodNames.class and /dev/null differ diff --git a/target/classes/javassist/CodeConverter.class b/target/classes/javassist/CodeConverter.class deleted file mode 100644 index 006b3a77..00000000 Binary files a/target/classes/javassist/CodeConverter.class and /dev/null differ diff --git a/target/classes/javassist/CtArray.class b/target/classes/javassist/CtArray.class deleted file mode 100644 index 228eeb6f..00000000 Binary files a/target/classes/javassist/CtArray.class and /dev/null differ diff --git a/target/classes/javassist/CtBehavior.class b/target/classes/javassist/CtBehavior.class deleted file mode 100644 index be1d1f7c..00000000 Binary files a/target/classes/javassist/CtBehavior.class and /dev/null differ diff --git a/target/classes/javassist/CtClass$1.class b/target/classes/javassist/CtClass$1.class deleted file mode 100644 index c1e56b0b..00000000 Binary files a/target/classes/javassist/CtClass$1.class and /dev/null differ diff --git a/target/classes/javassist/CtClass$DelayedFileOutputStream.class b/target/classes/javassist/CtClass$DelayedFileOutputStream.class deleted file mode 100644 index 6d3fb965..00000000 Binary files a/target/classes/javassist/CtClass$DelayedFileOutputStream.class and /dev/null differ diff --git a/target/classes/javassist/CtClass.class b/target/classes/javassist/CtClass.class deleted file mode 100644 index 6cd684c0..00000000 Binary files a/target/classes/javassist/CtClass.class and /dev/null differ diff --git a/target/classes/javassist/CtClassType.class b/target/classes/javassist/CtClassType.class deleted file mode 100644 index 6abcccb8..00000000 Binary files a/target/classes/javassist/CtClassType.class and /dev/null differ diff --git a/target/classes/javassist/CtConstructor.class b/target/classes/javassist/CtConstructor.class deleted file mode 100644 index c5c4b518..00000000 Binary files a/target/classes/javassist/CtConstructor.class and /dev/null differ diff --git a/target/classes/javassist/CtField$ArrayInitializer.class b/target/classes/javassist/CtField$ArrayInitializer.class deleted file mode 100644 index 00cfdeec..00000000 Binary files a/target/classes/javassist/CtField$ArrayInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$CodeInitializer.class b/target/classes/javassist/CtField$CodeInitializer.class deleted file mode 100644 index c470b266..00000000 Binary files a/target/classes/javassist/CtField$CodeInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$CodeInitializer0.class b/target/classes/javassist/CtField$CodeInitializer0.class deleted file mode 100644 index bc4856ae..00000000 Binary files a/target/classes/javassist/CtField$CodeInitializer0.class and /dev/null differ diff --git a/target/classes/javassist/CtField$DoubleInitializer.class b/target/classes/javassist/CtField$DoubleInitializer.class deleted file mode 100644 index bb47238d..00000000 Binary files a/target/classes/javassist/CtField$DoubleInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$FloatInitializer.class b/target/classes/javassist/CtField$FloatInitializer.class deleted file mode 100644 index cd26e2c5..00000000 Binary files a/target/classes/javassist/CtField$FloatInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$Initializer.class b/target/classes/javassist/CtField$Initializer.class deleted file mode 100644 index 7133759f..00000000 Binary files a/target/classes/javassist/CtField$Initializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$IntInitializer.class b/target/classes/javassist/CtField$IntInitializer.class deleted file mode 100644 index 631b1d62..00000000 Binary files a/target/classes/javassist/CtField$IntInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$LongInitializer.class b/target/classes/javassist/CtField$LongInitializer.class deleted file mode 100644 index d99c7819..00000000 Binary files a/target/classes/javassist/CtField$LongInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$MethodInitializer.class b/target/classes/javassist/CtField$MethodInitializer.class deleted file mode 100644 index 34785c30..00000000 Binary files a/target/classes/javassist/CtField$MethodInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$MultiArrayInitializer.class b/target/classes/javassist/CtField$MultiArrayInitializer.class deleted file mode 100644 index 5d30671f..00000000 Binary files a/target/classes/javassist/CtField$MultiArrayInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$NewInitializer.class b/target/classes/javassist/CtField$NewInitializer.class deleted file mode 100644 index 214ab993..00000000 Binary files a/target/classes/javassist/CtField$NewInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$ParamInitializer.class b/target/classes/javassist/CtField$ParamInitializer.class deleted file mode 100644 index 12866a80..00000000 Binary files a/target/classes/javassist/CtField$ParamInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$PtreeInitializer.class b/target/classes/javassist/CtField$PtreeInitializer.class deleted file mode 100644 index 22e6c5af..00000000 Binary files a/target/classes/javassist/CtField$PtreeInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField$StringInitializer.class b/target/classes/javassist/CtField$StringInitializer.class deleted file mode 100644 index 4c09e60c..00000000 Binary files a/target/classes/javassist/CtField$StringInitializer.class and /dev/null differ diff --git a/target/classes/javassist/CtField.class b/target/classes/javassist/CtField.class deleted file mode 100644 index 0824a1df..00000000 Binary files a/target/classes/javassist/CtField.class and /dev/null differ diff --git a/target/classes/javassist/CtMember$Cache.class b/target/classes/javassist/CtMember$Cache.class deleted file mode 100644 index fd898e92..00000000 Binary files a/target/classes/javassist/CtMember$Cache.class and /dev/null differ diff --git a/target/classes/javassist/CtMember.class b/target/classes/javassist/CtMember.class deleted file mode 100644 index 41a8d931..00000000 Binary files a/target/classes/javassist/CtMember.class and /dev/null differ diff --git a/target/classes/javassist/CtMethod$ConstParameter.class b/target/classes/javassist/CtMethod$ConstParameter.class deleted file mode 100644 index a3401502..00000000 Binary files a/target/classes/javassist/CtMethod$ConstParameter.class and /dev/null differ diff --git a/target/classes/javassist/CtMethod$IntConstParameter.class b/target/classes/javassist/CtMethod$IntConstParameter.class deleted file mode 100644 index 88779d9d..00000000 Binary files a/target/classes/javassist/CtMethod$IntConstParameter.class and /dev/null differ diff --git a/target/classes/javassist/CtMethod$LongConstParameter.class b/target/classes/javassist/CtMethod$LongConstParameter.class deleted file mode 100644 index 0a904ec0..00000000 Binary files a/target/classes/javassist/CtMethod$LongConstParameter.class and /dev/null differ diff --git a/target/classes/javassist/CtMethod$StringConstParameter.class b/target/classes/javassist/CtMethod$StringConstParameter.class deleted file mode 100644 index 6fe45aab..00000000 Binary files a/target/classes/javassist/CtMethod$StringConstParameter.class and /dev/null differ diff --git a/target/classes/javassist/CtMethod.class b/target/classes/javassist/CtMethod.class deleted file mode 100644 index 41ea5b96..00000000 Binary files a/target/classes/javassist/CtMethod.class and /dev/null differ diff --git a/target/classes/javassist/CtNewClass.class b/target/classes/javassist/CtNewClass.class deleted file mode 100644 index 3c4e804c..00000000 Binary files a/target/classes/javassist/CtNewClass.class and /dev/null differ diff --git a/target/classes/javassist/CtNewConstructor.class b/target/classes/javassist/CtNewConstructor.class deleted file mode 100644 index bf8cf87d..00000000 Binary files a/target/classes/javassist/CtNewConstructor.class and /dev/null differ diff --git a/target/classes/javassist/CtNewMethod.class b/target/classes/javassist/CtNewMethod.class deleted file mode 100644 index 6735e15e..00000000 Binary files a/target/classes/javassist/CtNewMethod.class and /dev/null differ diff --git a/target/classes/javassist/CtNewNestedClass.class b/target/classes/javassist/CtNewNestedClass.class deleted file mode 100644 index b6c1792f..00000000 Binary files a/target/classes/javassist/CtNewNestedClass.class and /dev/null differ diff --git a/target/classes/javassist/CtNewWrappedConstructor.class b/target/classes/javassist/CtNewWrappedConstructor.class deleted file mode 100644 index 9c7a4999..00000000 Binary files a/target/classes/javassist/CtNewWrappedConstructor.class and /dev/null differ diff --git a/target/classes/javassist/CtNewWrappedMethod.class b/target/classes/javassist/CtNewWrappedMethod.class deleted file mode 100644 index d7b3e627..00000000 Binary files a/target/classes/javassist/CtNewWrappedMethod.class and /dev/null differ diff --git a/target/classes/javassist/CtPrimitiveType.class b/target/classes/javassist/CtPrimitiveType.class deleted file mode 100644 index 55e898f7..00000000 Binary files a/target/classes/javassist/CtPrimitiveType.class and /dev/null differ diff --git a/target/classes/javassist/DirClassPath.class b/target/classes/javassist/DirClassPath.class deleted file mode 100644 index 08f8c58f..00000000 Binary files a/target/classes/javassist/DirClassPath.class and /dev/null differ diff --git a/target/classes/javassist/FieldInitLink.class b/target/classes/javassist/FieldInitLink.class deleted file mode 100644 index 63e46101..00000000 Binary files a/target/classes/javassist/FieldInitLink.class and /dev/null differ diff --git a/target/classes/javassist/JarClassPath.class b/target/classes/javassist/JarClassPath.class deleted file mode 100644 index e9fac34a..00000000 Binary files a/target/classes/javassist/JarClassPath.class and /dev/null differ diff --git a/target/classes/javassist/JarDirClassPath$1.class b/target/classes/javassist/JarDirClassPath$1.class deleted file mode 100644 index 27048d64..00000000 Binary files a/target/classes/javassist/JarDirClassPath$1.class and /dev/null differ diff --git a/target/classes/javassist/JarDirClassPath.class b/target/classes/javassist/JarDirClassPath.class deleted file mode 100644 index 8f1b63af..00000000 Binary files a/target/classes/javassist/JarDirClassPath.class and /dev/null differ diff --git a/target/classes/javassist/Loader.class b/target/classes/javassist/Loader.class deleted file mode 100644 index b50392dc..00000000 Binary files a/target/classes/javassist/Loader.class and /dev/null differ diff --git a/target/classes/javassist/LoaderClassPath.class b/target/classes/javassist/LoaderClassPath.class deleted file mode 100644 index 049d2902..00000000 Binary files a/target/classes/javassist/LoaderClassPath.class and /dev/null differ diff --git a/target/classes/javassist/Modifier.class b/target/classes/javassist/Modifier.class deleted file mode 100644 index 14406a3b..00000000 Binary files a/target/classes/javassist/Modifier.class and /dev/null differ diff --git a/target/classes/javassist/NotFoundException.class b/target/classes/javassist/NotFoundException.class deleted file mode 100644 index ebd7db41..00000000 Binary files a/target/classes/javassist/NotFoundException.class and /dev/null differ diff --git a/target/classes/javassist/SerialVersionUID$1.class b/target/classes/javassist/SerialVersionUID$1.class deleted file mode 100644 index db8b3990..00000000 Binary files a/target/classes/javassist/SerialVersionUID$1.class and /dev/null differ diff --git a/target/classes/javassist/SerialVersionUID$2.class b/target/classes/javassist/SerialVersionUID$2.class deleted file mode 100644 index c133a644..00000000 Binary files a/target/classes/javassist/SerialVersionUID$2.class and /dev/null differ diff --git a/target/classes/javassist/SerialVersionUID$3.class b/target/classes/javassist/SerialVersionUID$3.class deleted file mode 100644 index 00c00924..00000000 Binary files a/target/classes/javassist/SerialVersionUID$3.class and /dev/null differ diff --git a/target/classes/javassist/SerialVersionUID.class b/target/classes/javassist/SerialVersionUID.class deleted file mode 100644 index f3e4aeec..00000000 Binary files a/target/classes/javassist/SerialVersionUID.class and /dev/null differ diff --git a/target/classes/javassist/Translator.class b/target/classes/javassist/Translator.class deleted file mode 100644 index 56f7557e..00000000 Binary files a/target/classes/javassist/Translator.class and /dev/null differ diff --git a/target/classes/javassist/URLClassPath.class b/target/classes/javassist/URLClassPath.class deleted file mode 100644 index 4f076e8b..00000000 Binary files a/target/classes/javassist/URLClassPath.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AccessFlag.class b/target/classes/javassist/bytecode/AccessFlag.class deleted file mode 100644 index f575be2a..00000000 Binary files a/target/classes/javassist/bytecode/AccessFlag.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AnnotationDefaultAttribute.class b/target/classes/javassist/bytecode/AnnotationDefaultAttribute.class deleted file mode 100644 index da90acf7..00000000 Binary files a/target/classes/javassist/bytecode/AnnotationDefaultAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AnnotationsAttribute$Copier.class b/target/classes/javassist/bytecode/AnnotationsAttribute$Copier.class deleted file mode 100644 index d02f1e1e..00000000 Binary files a/target/classes/javassist/bytecode/AnnotationsAttribute$Copier.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AnnotationsAttribute$Parser.class b/target/classes/javassist/bytecode/AnnotationsAttribute$Parser.class deleted file mode 100644 index 8d93b74d..00000000 Binary files a/target/classes/javassist/bytecode/AnnotationsAttribute$Parser.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AnnotationsAttribute$Renamer.class b/target/classes/javassist/bytecode/AnnotationsAttribute$Renamer.class deleted file mode 100644 index 3a785923..00000000 Binary files a/target/classes/javassist/bytecode/AnnotationsAttribute$Renamer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AnnotationsAttribute$Walker.class b/target/classes/javassist/bytecode/AnnotationsAttribute$Walker.class deleted file mode 100644 index 94bd8a81..00000000 Binary files a/target/classes/javassist/bytecode/AnnotationsAttribute$Walker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AnnotationsAttribute.class b/target/classes/javassist/bytecode/AnnotationsAttribute.class deleted file mode 100644 index fa0dc9a2..00000000 Binary files a/target/classes/javassist/bytecode/AnnotationsAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/AttributeInfo.class b/target/classes/javassist/bytecode/AttributeInfo.class deleted file mode 100644 index 3dc0ea2b..00000000 Binary files a/target/classes/javassist/bytecode/AttributeInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/BadBytecode.class b/target/classes/javassist/bytecode/BadBytecode.class deleted file mode 100644 index 6f1db37b..00000000 Binary files a/target/classes/javassist/bytecode/BadBytecode.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/BootstrapMethodsAttribute$BootstrapMethod.class b/target/classes/javassist/bytecode/BootstrapMethodsAttribute$BootstrapMethod.class deleted file mode 100644 index e3175a37..00000000 Binary files a/target/classes/javassist/bytecode/BootstrapMethodsAttribute$BootstrapMethod.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/BootstrapMethodsAttribute.class b/target/classes/javassist/bytecode/BootstrapMethodsAttribute.class deleted file mode 100644 index 5cd8a093..00000000 Binary files a/target/classes/javassist/bytecode/BootstrapMethodsAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ByteArray.class b/target/classes/javassist/bytecode/ByteArray.class deleted file mode 100644 index 8ee342c0..00000000 Binary files a/target/classes/javassist/bytecode/ByteArray.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ByteStream.class b/target/classes/javassist/bytecode/ByteStream.class deleted file mode 100644 index 945a5caf..00000000 Binary files a/target/classes/javassist/bytecode/ByteStream.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ByteVector.class b/target/classes/javassist/bytecode/ByteVector.class deleted file mode 100644 index c5ad8dcd..00000000 Binary files a/target/classes/javassist/bytecode/ByteVector.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/Bytecode.class b/target/classes/javassist/bytecode/Bytecode.class deleted file mode 100644 index 8f57e1d4..00000000 Binary files a/target/classes/javassist/bytecode/Bytecode.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassFile.class b/target/classes/javassist/bytecode/ClassFile.class deleted file mode 100644 index 813c032e..00000000 Binary files a/target/classes/javassist/bytecode/ClassFile.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassFilePrinter.class b/target/classes/javassist/bytecode/ClassFilePrinter.class deleted file mode 100644 index ab37b161..00000000 Binary files a/target/classes/javassist/bytecode/ClassFilePrinter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassFileWriter$AttributeWriter.class b/target/classes/javassist/bytecode/ClassFileWriter$AttributeWriter.class deleted file mode 100644 index 87eda7ea..00000000 Binary files a/target/classes/javassist/bytecode/ClassFileWriter$AttributeWriter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassFileWriter$ConstPoolWriter.class b/target/classes/javassist/bytecode/ClassFileWriter$ConstPoolWriter.class deleted file mode 100644 index 88ed49bb..00000000 Binary files a/target/classes/javassist/bytecode/ClassFileWriter$ConstPoolWriter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassFileWriter$FieldWriter.class b/target/classes/javassist/bytecode/ClassFileWriter$FieldWriter.class deleted file mode 100644 index 5b6b671a..00000000 Binary files a/target/classes/javassist/bytecode/ClassFileWriter$FieldWriter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassFileWriter$MethodWriter.class b/target/classes/javassist/bytecode/ClassFileWriter$MethodWriter.class deleted file mode 100644 index de6454ce..00000000 Binary files a/target/classes/javassist/bytecode/ClassFileWriter$MethodWriter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassFileWriter.class b/target/classes/javassist/bytecode/ClassFileWriter.class deleted file mode 100644 index 1e168847..00000000 Binary files a/target/classes/javassist/bytecode/ClassFileWriter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ClassInfo.class b/target/classes/javassist/bytecode/ClassInfo.class deleted file mode 100644 index 969ece87..00000000 Binary files a/target/classes/javassist/bytecode/ClassInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeAnalyzer.class b/target/classes/javassist/bytecode/CodeAnalyzer.class deleted file mode 100644 index 5fad6e02..00000000 Binary files a/target/classes/javassist/bytecode/CodeAnalyzer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeAttribute$LdcEntry.class b/target/classes/javassist/bytecode/CodeAttribute$LdcEntry.class deleted file mode 100644 index d4f2c69e..00000000 Binary files a/target/classes/javassist/bytecode/CodeAttribute$LdcEntry.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeAttribute$RuntimeCopyException.class b/target/classes/javassist/bytecode/CodeAttribute$RuntimeCopyException.class deleted file mode 100644 index 69b5a30d..00000000 Binary files a/target/classes/javassist/bytecode/CodeAttribute$RuntimeCopyException.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeAttribute.class b/target/classes/javassist/bytecode/CodeAttribute.class deleted file mode 100644 index 4d29b638..00000000 Binary files a/target/classes/javassist/bytecode/CodeAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$AlignmentException.class b/target/classes/javassist/bytecode/CodeIterator$AlignmentException.class deleted file mode 100644 index 527d37ed..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$AlignmentException.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Branch.class b/target/classes/javassist/bytecode/CodeIterator$Branch.class deleted file mode 100644 index f8d8462c..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Branch.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Branch16.class b/target/classes/javassist/bytecode/CodeIterator$Branch16.class deleted file mode 100644 index fe5e67c3..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Branch16.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Gap.class b/target/classes/javassist/bytecode/CodeIterator$Gap.class deleted file mode 100644 index f9446d08..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Gap.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$If16.class b/target/classes/javassist/bytecode/CodeIterator$If16.class deleted file mode 100644 index e6e871e7..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$If16.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Jump16.class b/target/classes/javassist/bytecode/CodeIterator$Jump16.class deleted file mode 100644 index f718d2b2..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Jump16.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Jump32.class b/target/classes/javassist/bytecode/CodeIterator$Jump32.class deleted file mode 100644 index 0744348f..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Jump32.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$LdcW.class b/target/classes/javassist/bytecode/CodeIterator$LdcW.class deleted file mode 100644 index e632acc8..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$LdcW.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Lookup.class b/target/classes/javassist/bytecode/CodeIterator$Lookup.class deleted file mode 100644 index 396abd88..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Lookup.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Pointers.class b/target/classes/javassist/bytecode/CodeIterator$Pointers.class deleted file mode 100644 index 1dc2c87a..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Pointers.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Switcher.class b/target/classes/javassist/bytecode/CodeIterator$Switcher.class deleted file mode 100644 index c982697e..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Switcher.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator$Table.class b/target/classes/javassist/bytecode/CodeIterator$Table.class deleted file mode 100644 index ca316d8e..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator$Table.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/CodeIterator.class b/target/classes/javassist/bytecode/CodeIterator.class deleted file mode 100644 index 0996d44c..00000000 Binary files a/target/classes/javassist/bytecode/CodeIterator.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ConstInfo.class b/target/classes/javassist/bytecode/ConstInfo.class deleted file mode 100644 index 567850f4..00000000 Binary files a/target/classes/javassist/bytecode/ConstInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ConstInfoPadding.class b/target/classes/javassist/bytecode/ConstInfoPadding.class deleted file mode 100644 index f4484e75..00000000 Binary files a/target/classes/javassist/bytecode/ConstInfoPadding.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ConstPool.class b/target/classes/javassist/bytecode/ConstPool.class deleted file mode 100644 index 9fca0e58..00000000 Binary files a/target/classes/javassist/bytecode/ConstPool.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ConstantAttribute.class b/target/classes/javassist/bytecode/ConstantAttribute.class deleted file mode 100644 index ab521313..00000000 Binary files a/target/classes/javassist/bytecode/ConstantAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/DeprecatedAttribute.class b/target/classes/javassist/bytecode/DeprecatedAttribute.class deleted file mode 100644 index 6092e91c..00000000 Binary files a/target/classes/javassist/bytecode/DeprecatedAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/Descriptor$Iterator.class b/target/classes/javassist/bytecode/Descriptor$Iterator.class deleted file mode 100644 index 6ad40e17..00000000 Binary files a/target/classes/javassist/bytecode/Descriptor$Iterator.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/Descriptor$PrettyPrinter.class b/target/classes/javassist/bytecode/Descriptor$PrettyPrinter.class deleted file mode 100644 index 74557f89..00000000 Binary files a/target/classes/javassist/bytecode/Descriptor$PrettyPrinter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/Descriptor.class b/target/classes/javassist/bytecode/Descriptor.class deleted file mode 100644 index 6eb8d8eb..00000000 Binary files a/target/classes/javassist/bytecode/Descriptor.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/DoubleInfo.class b/target/classes/javassist/bytecode/DoubleInfo.class deleted file mode 100644 index 23877330..00000000 Binary files a/target/classes/javassist/bytecode/DoubleInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/DuplicateMemberException.class b/target/classes/javassist/bytecode/DuplicateMemberException.class deleted file mode 100644 index 96cef5c1..00000000 Binary files a/target/classes/javassist/bytecode/DuplicateMemberException.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/EnclosingMethodAttribute.class b/target/classes/javassist/bytecode/EnclosingMethodAttribute.class deleted file mode 100644 index 74736992..00000000 Binary files a/target/classes/javassist/bytecode/EnclosingMethodAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ExceptionTable.class b/target/classes/javassist/bytecode/ExceptionTable.class deleted file mode 100644 index 91879292..00000000 Binary files a/target/classes/javassist/bytecode/ExceptionTable.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ExceptionTableEntry.class b/target/classes/javassist/bytecode/ExceptionTableEntry.class deleted file mode 100644 index fa493348..00000000 Binary files a/target/classes/javassist/bytecode/ExceptionTableEntry.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ExceptionsAttribute.class b/target/classes/javassist/bytecode/ExceptionsAttribute.class deleted file mode 100644 index a6132562..00000000 Binary files a/target/classes/javassist/bytecode/ExceptionsAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/FieldInfo.class b/target/classes/javassist/bytecode/FieldInfo.class deleted file mode 100644 index 05679a25..00000000 Binary files a/target/classes/javassist/bytecode/FieldInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/FieldrefInfo.class b/target/classes/javassist/bytecode/FieldrefInfo.class deleted file mode 100644 index c06476d7..00000000 Binary files a/target/classes/javassist/bytecode/FieldrefInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/FloatInfo.class b/target/classes/javassist/bytecode/FloatInfo.class deleted file mode 100644 index 8b67d873..00000000 Binary files a/target/classes/javassist/bytecode/FloatInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/InnerClassesAttribute.class b/target/classes/javassist/bytecode/InnerClassesAttribute.class deleted file mode 100644 index e5ea248e..00000000 Binary files a/target/classes/javassist/bytecode/InnerClassesAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/InstructionPrinter.class b/target/classes/javassist/bytecode/InstructionPrinter.class deleted file mode 100644 index 0aedb26f..00000000 Binary files a/target/classes/javassist/bytecode/InstructionPrinter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/IntegerInfo.class b/target/classes/javassist/bytecode/IntegerInfo.class deleted file mode 100644 index 6799b6fd..00000000 Binary files a/target/classes/javassist/bytecode/IntegerInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/InterfaceMethodrefInfo.class b/target/classes/javassist/bytecode/InterfaceMethodrefInfo.class deleted file mode 100644 index f4bc1bb5..00000000 Binary files a/target/classes/javassist/bytecode/InterfaceMethodrefInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/InvokeDynamicInfo.class b/target/classes/javassist/bytecode/InvokeDynamicInfo.class deleted file mode 100644 index e16938c3..00000000 Binary files a/target/classes/javassist/bytecode/InvokeDynamicInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/LineNumberAttribute$Pc.class b/target/classes/javassist/bytecode/LineNumberAttribute$Pc.class deleted file mode 100644 index 2008a749..00000000 Binary files a/target/classes/javassist/bytecode/LineNumberAttribute$Pc.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/LineNumberAttribute.class b/target/classes/javassist/bytecode/LineNumberAttribute.class deleted file mode 100644 index 80b9f149..00000000 Binary files a/target/classes/javassist/bytecode/LineNumberAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/LocalVariableAttribute.class b/target/classes/javassist/bytecode/LocalVariableAttribute.class deleted file mode 100644 index d319ff25..00000000 Binary files a/target/classes/javassist/bytecode/LocalVariableAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/LocalVariableTypeAttribute.class b/target/classes/javassist/bytecode/LocalVariableTypeAttribute.class deleted file mode 100644 index 0a2955a7..00000000 Binary files a/target/classes/javassist/bytecode/LocalVariableTypeAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/LongInfo.class b/target/classes/javassist/bytecode/LongInfo.class deleted file mode 100644 index 7688f1b5..00000000 Binary files a/target/classes/javassist/bytecode/LongInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/LongVector.class b/target/classes/javassist/bytecode/LongVector.class deleted file mode 100644 index e57b73a9..00000000 Binary files a/target/classes/javassist/bytecode/LongVector.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/MemberrefInfo.class b/target/classes/javassist/bytecode/MemberrefInfo.class deleted file mode 100644 index 0fc74c8e..00000000 Binary files a/target/classes/javassist/bytecode/MemberrefInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/MethodHandleInfo.class b/target/classes/javassist/bytecode/MethodHandleInfo.class deleted file mode 100644 index f77a5b38..00000000 Binary files a/target/classes/javassist/bytecode/MethodHandleInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/MethodInfo.class b/target/classes/javassist/bytecode/MethodInfo.class deleted file mode 100644 index 270ef526..00000000 Binary files a/target/classes/javassist/bytecode/MethodInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/MethodParametersAttribute.class b/target/classes/javassist/bytecode/MethodParametersAttribute.class deleted file mode 100644 index 53534d42..00000000 Binary files a/target/classes/javassist/bytecode/MethodParametersAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/MethodTypeInfo.class b/target/classes/javassist/bytecode/MethodTypeInfo.class deleted file mode 100644 index 392a3f3f..00000000 Binary files a/target/classes/javassist/bytecode/MethodTypeInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/MethodrefInfo.class b/target/classes/javassist/bytecode/MethodrefInfo.class deleted file mode 100644 index 45deb714..00000000 Binary files a/target/classes/javassist/bytecode/MethodrefInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/Mnemonic.class b/target/classes/javassist/bytecode/Mnemonic.class deleted file mode 100644 index e2403ae9..00000000 Binary files a/target/classes/javassist/bytecode/Mnemonic.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/NameAndTypeInfo.class b/target/classes/javassist/bytecode/NameAndTypeInfo.class deleted file mode 100644 index 857b28c0..00000000 Binary files a/target/classes/javassist/bytecode/NameAndTypeInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/Opcode.class b/target/classes/javassist/bytecode/Opcode.class deleted file mode 100644 index 19edb8cf..00000000 Binary files a/target/classes/javassist/bytecode/Opcode.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/ParameterAnnotationsAttribute.class b/target/classes/javassist/bytecode/ParameterAnnotationsAttribute.class deleted file mode 100644 index 26ebbc38..00000000 Binary files a/target/classes/javassist/bytecode/ParameterAnnotationsAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$1.class b/target/classes/javassist/bytecode/SignatureAttribute$1.class deleted file mode 100644 index e78ab4df..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$1.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$ArrayType.class b/target/classes/javassist/bytecode/SignatureAttribute$ArrayType.class deleted file mode 100644 index a56fb053..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$ArrayType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$BaseType.class b/target/classes/javassist/bytecode/SignatureAttribute$BaseType.class deleted file mode 100644 index 355a8cf9..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$BaseType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$ClassSignature.class b/target/classes/javassist/bytecode/SignatureAttribute$ClassSignature.class deleted file mode 100644 index 4ef273aa..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$ClassSignature.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$ClassType.class b/target/classes/javassist/bytecode/SignatureAttribute$ClassType.class deleted file mode 100644 index a9650e38..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$ClassType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$Cursor.class b/target/classes/javassist/bytecode/SignatureAttribute$Cursor.class deleted file mode 100644 index d6a205ce..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$Cursor.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$MethodSignature.class b/target/classes/javassist/bytecode/SignatureAttribute$MethodSignature.class deleted file mode 100644 index be10caec..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$MethodSignature.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$NestedClassType.class b/target/classes/javassist/bytecode/SignatureAttribute$NestedClassType.class deleted file mode 100644 index 638ef9d6..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$NestedClassType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$ObjectType.class b/target/classes/javassist/bytecode/SignatureAttribute$ObjectType.class deleted file mode 100644 index d94a010e..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$ObjectType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$Type.class b/target/classes/javassist/bytecode/SignatureAttribute$Type.class deleted file mode 100644 index 5d459a6b..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$Type.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$TypeArgument.class b/target/classes/javassist/bytecode/SignatureAttribute$TypeArgument.class deleted file mode 100644 index a3af9770..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$TypeArgument.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$TypeParameter.class b/target/classes/javassist/bytecode/SignatureAttribute$TypeParameter.class deleted file mode 100644 index e59602e5..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$TypeParameter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute$TypeVariable.class b/target/classes/javassist/bytecode/SignatureAttribute$TypeVariable.class deleted file mode 100644 index 3d398699..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute$TypeVariable.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SignatureAttribute.class b/target/classes/javassist/bytecode/SignatureAttribute.class deleted file mode 100644 index a883312b..00000000 Binary files a/target/classes/javassist/bytecode/SignatureAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SourceFileAttribute.class b/target/classes/javassist/bytecode/SourceFileAttribute.class deleted file mode 100644 index ea45bdfc..00000000 Binary files a/target/classes/javassist/bytecode/SourceFileAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$Copier.class b/target/classes/javassist/bytecode/StackMap$Copier.class deleted file mode 100644 index e3dee7c0..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$Copier.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$InsertLocal.class b/target/classes/javassist/bytecode/StackMap$InsertLocal.class deleted file mode 100644 index dcb524ab..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$InsertLocal.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$NewRemover.class b/target/classes/javassist/bytecode/StackMap$NewRemover.class deleted file mode 100644 index cbfa9fc1..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$NewRemover.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$Printer.class b/target/classes/javassist/bytecode/StackMap$Printer.class deleted file mode 100644 index bf294a6e..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$Printer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$Shifter.class b/target/classes/javassist/bytecode/StackMap$Shifter.class deleted file mode 100644 index 2da6df82..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$Shifter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$SimpleCopy.class b/target/classes/javassist/bytecode/StackMap$SimpleCopy.class deleted file mode 100644 index b6ff8f99..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$SimpleCopy.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$SwitchShifter.class b/target/classes/javassist/bytecode/StackMap$SwitchShifter.class deleted file mode 100644 index 15fbf015..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$SwitchShifter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$Walker.class b/target/classes/javassist/bytecode/StackMap$Walker.class deleted file mode 100644 index 652fc4a9..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$Walker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap$Writer.class b/target/classes/javassist/bytecode/StackMap$Writer.class deleted file mode 100644 index 71c68a83..00000000 Binary files a/target/classes/javassist/bytecode/StackMap$Writer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMap.class b/target/classes/javassist/bytecode/StackMap.class deleted file mode 100644 index 4bb53182..00000000 Binary files a/target/classes/javassist/bytecode/StackMap.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$Copier.class b/target/classes/javassist/bytecode/StackMapTable$Copier.class deleted file mode 100644 index 40d34c0c..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$Copier.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$InsertLocal.class b/target/classes/javassist/bytecode/StackMapTable$InsertLocal.class deleted file mode 100644 index 6ba79404..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$InsertLocal.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$NewRemover.class b/target/classes/javassist/bytecode/StackMapTable$NewRemover.class deleted file mode 100644 index f5bc4aaa..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$NewRemover.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$OffsetShifter.class b/target/classes/javassist/bytecode/StackMapTable$OffsetShifter.class deleted file mode 100644 index acc870ea..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$OffsetShifter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$Printer.class b/target/classes/javassist/bytecode/StackMapTable$Printer.class deleted file mode 100644 index 56686c41..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$Printer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$RuntimeCopyException.class b/target/classes/javassist/bytecode/StackMapTable$RuntimeCopyException.class deleted file mode 100644 index 2e125e74..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$RuntimeCopyException.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$Shifter.class b/target/classes/javassist/bytecode/StackMapTable$Shifter.class deleted file mode 100644 index 3305de3b..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$Shifter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$SimpleCopy.class b/target/classes/javassist/bytecode/StackMapTable$SimpleCopy.class deleted file mode 100644 index 4a3e58f3..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$SimpleCopy.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$SwitchShifter.class b/target/classes/javassist/bytecode/StackMapTable$SwitchShifter.class deleted file mode 100644 index 4b9528b6..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$SwitchShifter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$Walker.class b/target/classes/javassist/bytecode/StackMapTable$Walker.class deleted file mode 100644 index ece3e3ca..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$Walker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable$Writer.class b/target/classes/javassist/bytecode/StackMapTable$Writer.class deleted file mode 100644 index 4732bff0..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable$Writer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StackMapTable.class b/target/classes/javassist/bytecode/StackMapTable.class deleted file mode 100644 index c7fec182..00000000 Binary files a/target/classes/javassist/bytecode/StackMapTable.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/StringInfo.class b/target/classes/javassist/bytecode/StringInfo.class deleted file mode 100644 index 48472667..00000000 Binary files a/target/classes/javassist/bytecode/StringInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/SyntheticAttribute.class b/target/classes/javassist/bytecode/SyntheticAttribute.class deleted file mode 100644 index fef47118..00000000 Binary files a/target/classes/javassist/bytecode/SyntheticAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$Copier.class b/target/classes/javassist/bytecode/TypeAnnotationsAttribute$Copier.class deleted file mode 100644 index 521c1ad1..00000000 Binary files a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$Copier.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$Renamer.class b/target/classes/javassist/bytecode/TypeAnnotationsAttribute$Renamer.class deleted file mode 100644 index 69b49f18..00000000 Binary files a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$Renamer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$SubCopier.class b/target/classes/javassist/bytecode/TypeAnnotationsAttribute$SubCopier.class deleted file mode 100644 index 97263e3a..00000000 Binary files a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$SubCopier.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$SubWalker.class b/target/classes/javassist/bytecode/TypeAnnotationsAttribute$SubWalker.class deleted file mode 100644 index 51e7317c..00000000 Binary files a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$SubWalker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$TAWalker.class b/target/classes/javassist/bytecode/TypeAnnotationsAttribute$TAWalker.class deleted file mode 100644 index 87e92da5..00000000 Binary files a/target/classes/javassist/bytecode/TypeAnnotationsAttribute$TAWalker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/TypeAnnotationsAttribute.class b/target/classes/javassist/bytecode/TypeAnnotationsAttribute.class deleted file mode 100644 index 321f8890..00000000 Binary files a/target/classes/javassist/bytecode/TypeAnnotationsAttribute.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/Utf8Info.class b/target/classes/javassist/bytecode/Utf8Info.class deleted file mode 100644 index 35fad836..00000000 Binary files a/target/classes/javassist/bytecode/Utf8Info.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Analyzer$1.class b/target/classes/javassist/bytecode/analysis/Analyzer$1.class deleted file mode 100644 index ca27906c..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Analyzer$1.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Analyzer$ExceptionInfo.class b/target/classes/javassist/bytecode/analysis/Analyzer$ExceptionInfo.class deleted file mode 100644 index c56f474c..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Analyzer$ExceptionInfo.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Analyzer.class b/target/classes/javassist/bytecode/analysis/Analyzer.class deleted file mode 100644 index 4d99e2ea..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Analyzer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow$1.class b/target/classes/javassist/bytecode/analysis/ControlFlow$1.class deleted file mode 100644 index 90161668..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow$1.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow$2.class b/target/classes/javassist/bytecode/analysis/ControlFlow$2.class deleted file mode 100644 index 87ed284a..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow$2.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow$3.class b/target/classes/javassist/bytecode/analysis/ControlFlow$3.class deleted file mode 100644 index ac7ee02f..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow$3.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow$Access.class b/target/classes/javassist/bytecode/analysis/ControlFlow$Access.class deleted file mode 100644 index 3554c493..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow$Access.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow$Block.class b/target/classes/javassist/bytecode/analysis/ControlFlow$Block.class deleted file mode 100644 index 1836435a..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow$Block.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow$Catcher.class b/target/classes/javassist/bytecode/analysis/ControlFlow$Catcher.class deleted file mode 100644 index 225729ef..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow$Catcher.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow$Node.class b/target/classes/javassist/bytecode/analysis/ControlFlow$Node.class deleted file mode 100644 index 2316413b..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow$Node.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/ControlFlow.class b/target/classes/javassist/bytecode/analysis/ControlFlow.class deleted file mode 100644 index 5b598ded..00000000 Binary files a/target/classes/javassist/bytecode/analysis/ControlFlow.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Executor.class b/target/classes/javassist/bytecode/analysis/Executor.class deleted file mode 100644 index ad37cc31..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Executor.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Frame.class b/target/classes/javassist/bytecode/analysis/Frame.class deleted file mode 100644 index 8fcf3497..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Frame.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/FramePrinter.class b/target/classes/javassist/bytecode/analysis/FramePrinter.class deleted file mode 100644 index 67e074e4..00000000 Binary files a/target/classes/javassist/bytecode/analysis/FramePrinter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/IntQueue$1.class b/target/classes/javassist/bytecode/analysis/IntQueue$1.class deleted file mode 100644 index 84633972..00000000 Binary files a/target/classes/javassist/bytecode/analysis/IntQueue$1.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/IntQueue$Entry.class b/target/classes/javassist/bytecode/analysis/IntQueue$Entry.class deleted file mode 100644 index c8104b2e..00000000 Binary files a/target/classes/javassist/bytecode/analysis/IntQueue$Entry.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/IntQueue.class b/target/classes/javassist/bytecode/analysis/IntQueue.class deleted file mode 100644 index 8c6c3b15..00000000 Binary files a/target/classes/javassist/bytecode/analysis/IntQueue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/MultiArrayType.class b/target/classes/javassist/bytecode/analysis/MultiArrayType.class deleted file mode 100644 index 6dc57b32..00000000 Binary files a/target/classes/javassist/bytecode/analysis/MultiArrayType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/MultiType.class b/target/classes/javassist/bytecode/analysis/MultiType.class deleted file mode 100644 index 01e6c2b6..00000000 Binary files a/target/classes/javassist/bytecode/analysis/MultiType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Subroutine.class b/target/classes/javassist/bytecode/analysis/Subroutine.class deleted file mode 100644 index 2c3fd3bc..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Subroutine.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/SubroutineScanner.class b/target/classes/javassist/bytecode/analysis/SubroutineScanner.class deleted file mode 100644 index 745c2eb6..00000000 Binary files a/target/classes/javassist/bytecode/analysis/SubroutineScanner.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Type.class b/target/classes/javassist/bytecode/analysis/Type.class deleted file mode 100644 index 1d79ed6a..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Type.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/analysis/Util.class b/target/classes/javassist/bytecode/analysis/Util.class deleted file mode 100644 index 8ce1be5a..00000000 Binary files a/target/classes/javassist/bytecode/analysis/Util.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/Annotation$Pair.class b/target/classes/javassist/bytecode/annotation/Annotation$Pair.class deleted file mode 100644 index 3d4fe654..00000000 Binary files a/target/classes/javassist/bytecode/annotation/Annotation$Pair.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/Annotation.class b/target/classes/javassist/bytecode/annotation/Annotation.class deleted file mode 100644 index 52158ebd..00000000 Binary files a/target/classes/javassist/bytecode/annotation/Annotation.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/AnnotationImpl.class b/target/classes/javassist/bytecode/annotation/AnnotationImpl.class deleted file mode 100644 index 123b064b..00000000 Binary files a/target/classes/javassist/bytecode/annotation/AnnotationImpl.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/AnnotationMemberValue.class b/target/classes/javassist/bytecode/annotation/AnnotationMemberValue.class deleted file mode 100644 index 9965115b..00000000 Binary files a/target/classes/javassist/bytecode/annotation/AnnotationMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/AnnotationsWriter.class b/target/classes/javassist/bytecode/annotation/AnnotationsWriter.class deleted file mode 100644 index d7aa8500..00000000 Binary files a/target/classes/javassist/bytecode/annotation/AnnotationsWriter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/ArrayMemberValue.class b/target/classes/javassist/bytecode/annotation/ArrayMemberValue.class deleted file mode 100644 index 54429550..00000000 Binary files a/target/classes/javassist/bytecode/annotation/ArrayMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/BooleanMemberValue.class b/target/classes/javassist/bytecode/annotation/BooleanMemberValue.class deleted file mode 100644 index c91a8c22..00000000 Binary files a/target/classes/javassist/bytecode/annotation/BooleanMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/ByteMemberValue.class b/target/classes/javassist/bytecode/annotation/ByteMemberValue.class deleted file mode 100644 index ed12d95d..00000000 Binary files a/target/classes/javassist/bytecode/annotation/ByteMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/CharMemberValue.class b/target/classes/javassist/bytecode/annotation/CharMemberValue.class deleted file mode 100644 index 43d11a6c..00000000 Binary files a/target/classes/javassist/bytecode/annotation/CharMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/ClassMemberValue.class b/target/classes/javassist/bytecode/annotation/ClassMemberValue.class deleted file mode 100644 index c3040459..00000000 Binary files a/target/classes/javassist/bytecode/annotation/ClassMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/DoubleMemberValue.class b/target/classes/javassist/bytecode/annotation/DoubleMemberValue.class deleted file mode 100644 index 3c60ae05..00000000 Binary files a/target/classes/javassist/bytecode/annotation/DoubleMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/EnumMemberValue.class b/target/classes/javassist/bytecode/annotation/EnumMemberValue.class deleted file mode 100644 index 77a87f72..00000000 Binary files a/target/classes/javassist/bytecode/annotation/EnumMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/FloatMemberValue.class b/target/classes/javassist/bytecode/annotation/FloatMemberValue.class deleted file mode 100644 index a7830213..00000000 Binary files a/target/classes/javassist/bytecode/annotation/FloatMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/IntegerMemberValue.class b/target/classes/javassist/bytecode/annotation/IntegerMemberValue.class deleted file mode 100644 index fead0781..00000000 Binary files a/target/classes/javassist/bytecode/annotation/IntegerMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/LongMemberValue.class b/target/classes/javassist/bytecode/annotation/LongMemberValue.class deleted file mode 100644 index 867f4d64..00000000 Binary files a/target/classes/javassist/bytecode/annotation/LongMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/MemberValue.class b/target/classes/javassist/bytecode/annotation/MemberValue.class deleted file mode 100644 index 7b3e5ee2..00000000 Binary files a/target/classes/javassist/bytecode/annotation/MemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/MemberValueVisitor.class b/target/classes/javassist/bytecode/annotation/MemberValueVisitor.class deleted file mode 100644 index 1fed2a1b..00000000 Binary files a/target/classes/javassist/bytecode/annotation/MemberValueVisitor.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/NoSuchClassError.class b/target/classes/javassist/bytecode/annotation/NoSuchClassError.class deleted file mode 100644 index 6f1b65d0..00000000 Binary files a/target/classes/javassist/bytecode/annotation/NoSuchClassError.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/ShortMemberValue.class b/target/classes/javassist/bytecode/annotation/ShortMemberValue.class deleted file mode 100644 index ab3fd4e2..00000000 Binary files a/target/classes/javassist/bytecode/annotation/ShortMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/StringMemberValue.class b/target/classes/javassist/bytecode/annotation/StringMemberValue.class deleted file mode 100644 index f999b7d0..00000000 Binary files a/target/classes/javassist/bytecode/annotation/StringMemberValue.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/annotation/TypeAnnotationsWriter.class b/target/classes/javassist/bytecode/annotation/TypeAnnotationsWriter.class deleted file mode 100644 index 3b063f0d..00000000 Binary files a/target/classes/javassist/bytecode/annotation/TypeAnnotationsWriter.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/BasicBlock$Catch.class b/target/classes/javassist/bytecode/stackmap/BasicBlock$Catch.class deleted file mode 100644 index a76c2dcf..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/BasicBlock$Catch.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/BasicBlock$JsrBytecode.class b/target/classes/javassist/bytecode/stackmap/BasicBlock$JsrBytecode.class deleted file mode 100644 index d59c4791..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/BasicBlock$JsrBytecode.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/BasicBlock$Maker.class b/target/classes/javassist/bytecode/stackmap/BasicBlock$Maker.class deleted file mode 100644 index 2b71e2cc..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/BasicBlock$Maker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/BasicBlock$Mark.class b/target/classes/javassist/bytecode/stackmap/BasicBlock$Mark.class deleted file mode 100644 index 319e82e3..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/BasicBlock$Mark.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/BasicBlock.class b/target/classes/javassist/bytecode/stackmap/BasicBlock.class deleted file mode 100644 index bdc261ae..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/BasicBlock.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/MapMaker.class b/target/classes/javassist/bytecode/stackmap/MapMaker.class deleted file mode 100644 index ee7c506d..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/MapMaker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/Tracer.class b/target/classes/javassist/bytecode/stackmap/Tracer.class deleted file mode 100644 index a1454987..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/Tracer.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$AbsTypeVar.class b/target/classes/javassist/bytecode/stackmap/TypeData$AbsTypeVar.class deleted file mode 100644 index 4725e10d..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$AbsTypeVar.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$ArrayElement.class b/target/classes/javassist/bytecode/stackmap/TypeData$ArrayElement.class deleted file mode 100644 index 72004103..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$ArrayElement.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$ArrayType.class b/target/classes/javassist/bytecode/stackmap/TypeData$ArrayType.class deleted file mode 100644 index 702d5cdb..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$ArrayType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$BasicType.class b/target/classes/javassist/bytecode/stackmap/TypeData$BasicType.class deleted file mode 100644 index 680aa98f..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$BasicType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$ClassName.class b/target/classes/javassist/bytecode/stackmap/TypeData$ClassName.class deleted file mode 100644 index 49a5dcf4..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$ClassName.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$NullType.class b/target/classes/javassist/bytecode/stackmap/TypeData$NullType.class deleted file mode 100644 index 40c768f1..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$NullType.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$TypeVar.class b/target/classes/javassist/bytecode/stackmap/TypeData$TypeVar.class deleted file mode 100644 index 726ea27b..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$TypeVar.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$UninitData.class b/target/classes/javassist/bytecode/stackmap/TypeData$UninitData.class deleted file mode 100644 index 18e25998..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$UninitData.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$UninitThis.class b/target/classes/javassist/bytecode/stackmap/TypeData$UninitThis.class deleted file mode 100644 index aa16642d..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$UninitThis.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData$UninitTypeVar.class b/target/classes/javassist/bytecode/stackmap/TypeData$UninitTypeVar.class deleted file mode 100644 index b752bee4..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData$UninitTypeVar.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeData.class b/target/classes/javassist/bytecode/stackmap/TypeData.class deleted file mode 100644 index 61e04e7d..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeData.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypeTag.class b/target/classes/javassist/bytecode/stackmap/TypeTag.class deleted file mode 100644 index 35ec2f50..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypeTag.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypedBlock$Maker.class b/target/classes/javassist/bytecode/stackmap/TypedBlock$Maker.class deleted file mode 100644 index 44c37ed5..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypedBlock$Maker.class and /dev/null differ diff --git a/target/classes/javassist/bytecode/stackmap/TypedBlock.class b/target/classes/javassist/bytecode/stackmap/TypedBlock.class deleted file mode 100644 index 08f0b4f4..00000000 Binary files a/target/classes/javassist/bytecode/stackmap/TypedBlock.class and /dev/null differ diff --git a/target/classes/javassist/compiler/AccessorMaker.class b/target/classes/javassist/compiler/AccessorMaker.class deleted file mode 100644 index 82550446..00000000 Binary files a/target/classes/javassist/compiler/AccessorMaker.class and /dev/null differ diff --git a/target/classes/javassist/compiler/CodeGen$1.class b/target/classes/javassist/compiler/CodeGen$1.class deleted file mode 100644 index f9b3500d..00000000 Binary files a/target/classes/javassist/compiler/CodeGen$1.class and /dev/null differ diff --git a/target/classes/javassist/compiler/CodeGen$ReturnHook.class b/target/classes/javassist/compiler/CodeGen$ReturnHook.class deleted file mode 100644 index 33496acd..00000000 Binary files a/target/classes/javassist/compiler/CodeGen$ReturnHook.class and /dev/null differ diff --git a/target/classes/javassist/compiler/CodeGen.class b/target/classes/javassist/compiler/CodeGen.class deleted file mode 100644 index 6a3867c6..00000000 Binary files a/target/classes/javassist/compiler/CodeGen.class and /dev/null differ diff --git a/target/classes/javassist/compiler/CompileError.class b/target/classes/javassist/compiler/CompileError.class deleted file mode 100644 index 0ed66219..00000000 Binary files a/target/classes/javassist/compiler/CompileError.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Javac$1.class b/target/classes/javassist/compiler/Javac$1.class deleted file mode 100644 index 07c48b4d..00000000 Binary files a/target/classes/javassist/compiler/Javac$1.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Javac$2.class b/target/classes/javassist/compiler/Javac$2.class deleted file mode 100644 index bf0a0f99..00000000 Binary files a/target/classes/javassist/compiler/Javac$2.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Javac$3.class b/target/classes/javassist/compiler/Javac$3.class deleted file mode 100644 index a349c8d4..00000000 Binary files a/target/classes/javassist/compiler/Javac$3.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Javac$CtFieldWithInit.class b/target/classes/javassist/compiler/Javac$CtFieldWithInit.class deleted file mode 100644 index 2a6d4348..00000000 Binary files a/target/classes/javassist/compiler/Javac$CtFieldWithInit.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Javac.class b/target/classes/javassist/compiler/Javac.class deleted file mode 100644 index 2d9187fa..00000000 Binary files a/target/classes/javassist/compiler/Javac.class and /dev/null differ diff --git a/target/classes/javassist/compiler/JvstCodeGen.class b/target/classes/javassist/compiler/JvstCodeGen.class deleted file mode 100644 index 7bcbc310..00000000 Binary files a/target/classes/javassist/compiler/JvstCodeGen.class and /dev/null differ diff --git a/target/classes/javassist/compiler/JvstTypeChecker.class b/target/classes/javassist/compiler/JvstTypeChecker.class deleted file mode 100644 index 1f7ca740..00000000 Binary files a/target/classes/javassist/compiler/JvstTypeChecker.class and /dev/null differ diff --git a/target/classes/javassist/compiler/KeywordTable.class b/target/classes/javassist/compiler/KeywordTable.class deleted file mode 100644 index 56220b68..00000000 Binary files a/target/classes/javassist/compiler/KeywordTable.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Lex.class b/target/classes/javassist/compiler/Lex.class deleted file mode 100644 index f0619294..00000000 Binary files a/target/classes/javassist/compiler/Lex.class and /dev/null differ diff --git a/target/classes/javassist/compiler/MemberCodeGen$JsrHook.class b/target/classes/javassist/compiler/MemberCodeGen$JsrHook.class deleted file mode 100644 index 7aa8d7d3..00000000 Binary files a/target/classes/javassist/compiler/MemberCodeGen$JsrHook.class and /dev/null differ diff --git a/target/classes/javassist/compiler/MemberCodeGen$JsrHook2.class b/target/classes/javassist/compiler/MemberCodeGen$JsrHook2.class deleted file mode 100644 index e0ce7f8b..00000000 Binary files a/target/classes/javassist/compiler/MemberCodeGen$JsrHook2.class and /dev/null differ diff --git a/target/classes/javassist/compiler/MemberCodeGen.class b/target/classes/javassist/compiler/MemberCodeGen.class deleted file mode 100644 index 0da254eb..00000000 Binary files a/target/classes/javassist/compiler/MemberCodeGen.class and /dev/null differ diff --git a/target/classes/javassist/compiler/MemberResolver$Method.class b/target/classes/javassist/compiler/MemberResolver$Method.class deleted file mode 100644 index 4184e339..00000000 Binary files a/target/classes/javassist/compiler/MemberResolver$Method.class and /dev/null differ diff --git a/target/classes/javassist/compiler/MemberResolver.class b/target/classes/javassist/compiler/MemberResolver.class deleted file mode 100644 index 9404edf6..00000000 Binary files a/target/classes/javassist/compiler/MemberResolver.class and /dev/null differ diff --git a/target/classes/javassist/compiler/NoFieldException.class b/target/classes/javassist/compiler/NoFieldException.class deleted file mode 100644 index 949f46d4..00000000 Binary files a/target/classes/javassist/compiler/NoFieldException.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Parser.class b/target/classes/javassist/compiler/Parser.class deleted file mode 100644 index 27997b7b..00000000 Binary files a/target/classes/javassist/compiler/Parser.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ProceedHandler.class b/target/classes/javassist/compiler/ProceedHandler.class deleted file mode 100644 index 5533bbd4..00000000 Binary files a/target/classes/javassist/compiler/ProceedHandler.class and /dev/null differ diff --git a/target/classes/javassist/compiler/SymbolTable.class b/target/classes/javassist/compiler/SymbolTable.class deleted file mode 100644 index ebb0567a..00000000 Binary files a/target/classes/javassist/compiler/SymbolTable.class and /dev/null differ diff --git a/target/classes/javassist/compiler/SyntaxError.class b/target/classes/javassist/compiler/SyntaxError.class deleted file mode 100644 index ebb3ca89..00000000 Binary files a/target/classes/javassist/compiler/SyntaxError.class and /dev/null differ diff --git a/target/classes/javassist/compiler/Token.class b/target/classes/javassist/compiler/Token.class deleted file mode 100644 index 0bdd4bec..00000000 Binary files a/target/classes/javassist/compiler/Token.class and /dev/null differ diff --git a/target/classes/javassist/compiler/TokenId.class b/target/classes/javassist/compiler/TokenId.class deleted file mode 100644 index 821e089b..00000000 Binary files a/target/classes/javassist/compiler/TokenId.class and /dev/null differ diff --git a/target/classes/javassist/compiler/TypeChecker.class b/target/classes/javassist/compiler/TypeChecker.class deleted file mode 100644 index d290a41f..00000000 Binary files a/target/classes/javassist/compiler/TypeChecker.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/ASTList.class b/target/classes/javassist/compiler/ast/ASTList.class deleted file mode 100644 index c403fcca..00000000 Binary files a/target/classes/javassist/compiler/ast/ASTList.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/ASTree.class b/target/classes/javassist/compiler/ast/ASTree.class deleted file mode 100644 index 384bb547..00000000 Binary files a/target/classes/javassist/compiler/ast/ASTree.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/ArrayInit.class b/target/classes/javassist/compiler/ast/ArrayInit.class deleted file mode 100644 index 76a0ed56..00000000 Binary files a/target/classes/javassist/compiler/ast/ArrayInit.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/AssignExpr.class b/target/classes/javassist/compiler/ast/AssignExpr.class deleted file mode 100644 index 2a81b669..00000000 Binary files a/target/classes/javassist/compiler/ast/AssignExpr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/BinExpr.class b/target/classes/javassist/compiler/ast/BinExpr.class deleted file mode 100644 index 50b9e32d..00000000 Binary files a/target/classes/javassist/compiler/ast/BinExpr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/CallExpr.class b/target/classes/javassist/compiler/ast/CallExpr.class deleted file mode 100644 index 969f598f..00000000 Binary files a/target/classes/javassist/compiler/ast/CallExpr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/CastExpr.class b/target/classes/javassist/compiler/ast/CastExpr.class deleted file mode 100644 index 6642f65a..00000000 Binary files a/target/classes/javassist/compiler/ast/CastExpr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/CondExpr.class b/target/classes/javassist/compiler/ast/CondExpr.class deleted file mode 100644 index 1b7f6b81..00000000 Binary files a/target/classes/javassist/compiler/ast/CondExpr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Declarator.class b/target/classes/javassist/compiler/ast/Declarator.class deleted file mode 100644 index 9cc4670b..00000000 Binary files a/target/classes/javassist/compiler/ast/Declarator.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/DoubleConst.class b/target/classes/javassist/compiler/ast/DoubleConst.class deleted file mode 100644 index 541e1eeb..00000000 Binary files a/target/classes/javassist/compiler/ast/DoubleConst.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Expr.class b/target/classes/javassist/compiler/ast/Expr.class deleted file mode 100644 index 9dedd381..00000000 Binary files a/target/classes/javassist/compiler/ast/Expr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/FieldDecl.class b/target/classes/javassist/compiler/ast/FieldDecl.class deleted file mode 100644 index 3de2bc25..00000000 Binary files a/target/classes/javassist/compiler/ast/FieldDecl.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/InstanceOfExpr.class b/target/classes/javassist/compiler/ast/InstanceOfExpr.class deleted file mode 100644 index cfb049ea..00000000 Binary files a/target/classes/javassist/compiler/ast/InstanceOfExpr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/IntConst.class b/target/classes/javassist/compiler/ast/IntConst.class deleted file mode 100644 index d31fa65f..00000000 Binary files a/target/classes/javassist/compiler/ast/IntConst.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Keyword.class b/target/classes/javassist/compiler/ast/Keyword.class deleted file mode 100644 index 842c947a..00000000 Binary files a/target/classes/javassist/compiler/ast/Keyword.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Member.class b/target/classes/javassist/compiler/ast/Member.class deleted file mode 100644 index 11c8ab8c..00000000 Binary files a/target/classes/javassist/compiler/ast/Member.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/MethodDecl.class b/target/classes/javassist/compiler/ast/MethodDecl.class deleted file mode 100644 index 615471ce..00000000 Binary files a/target/classes/javassist/compiler/ast/MethodDecl.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/NewExpr.class b/target/classes/javassist/compiler/ast/NewExpr.class deleted file mode 100644 index b6829dc6..00000000 Binary files a/target/classes/javassist/compiler/ast/NewExpr.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Pair.class b/target/classes/javassist/compiler/ast/Pair.class deleted file mode 100644 index 782ecfc3..00000000 Binary files a/target/classes/javassist/compiler/ast/Pair.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Stmnt.class b/target/classes/javassist/compiler/ast/Stmnt.class deleted file mode 100644 index 95de2aa7..00000000 Binary files a/target/classes/javassist/compiler/ast/Stmnt.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/StringL.class b/target/classes/javassist/compiler/ast/StringL.class deleted file mode 100644 index 71ce3aa2..00000000 Binary files a/target/classes/javassist/compiler/ast/StringL.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Symbol.class b/target/classes/javassist/compiler/ast/Symbol.class deleted file mode 100644 index b8c4bcb3..00000000 Binary files a/target/classes/javassist/compiler/ast/Symbol.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Variable.class b/target/classes/javassist/compiler/ast/Variable.class deleted file mode 100644 index cc53fc12..00000000 Binary files a/target/classes/javassist/compiler/ast/Variable.class and /dev/null differ diff --git a/target/classes/javassist/compiler/ast/Visitor.class b/target/classes/javassist/compiler/ast/Visitor.class deleted file mode 100644 index 1f9c786b..00000000 Binary files a/target/classes/javassist/compiler/ast/Visitor.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformAccessArrayField.class b/target/classes/javassist/convert/TransformAccessArrayField.class deleted file mode 100644 index be700429..00000000 Binary files a/target/classes/javassist/convert/TransformAccessArrayField.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformAfter.class b/target/classes/javassist/convert/TransformAfter.class deleted file mode 100644 index 46230495..00000000 Binary files a/target/classes/javassist/convert/TransformAfter.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformBefore.class b/target/classes/javassist/convert/TransformBefore.class deleted file mode 100644 index f46e8032..00000000 Binary files a/target/classes/javassist/convert/TransformBefore.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformCall.class b/target/classes/javassist/convert/TransformCall.class deleted file mode 100644 index a53b9a36..00000000 Binary files a/target/classes/javassist/convert/TransformCall.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformFieldAccess.class b/target/classes/javassist/convert/TransformFieldAccess.class deleted file mode 100644 index 86ddb33e..00000000 Binary files a/target/classes/javassist/convert/TransformFieldAccess.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformNew.class b/target/classes/javassist/convert/TransformNew.class deleted file mode 100644 index a40840a5..00000000 Binary files a/target/classes/javassist/convert/TransformNew.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformNewClass.class b/target/classes/javassist/convert/TransformNewClass.class deleted file mode 100644 index 0272a36a..00000000 Binary files a/target/classes/javassist/convert/TransformNewClass.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformReadField.class b/target/classes/javassist/convert/TransformReadField.class deleted file mode 100644 index a55cb16f..00000000 Binary files a/target/classes/javassist/convert/TransformReadField.class and /dev/null differ diff --git a/target/classes/javassist/convert/TransformWriteField.class b/target/classes/javassist/convert/TransformWriteField.class deleted file mode 100644 index 84199d08..00000000 Binary files a/target/classes/javassist/convert/TransformWriteField.class and /dev/null differ diff --git a/target/classes/javassist/convert/Transformer.class b/target/classes/javassist/convert/Transformer.class deleted file mode 100644 index 72509eb8..00000000 Binary files a/target/classes/javassist/convert/Transformer.class and /dev/null differ diff --git a/target/classes/javassist/expr/Cast$ProceedForCast.class b/target/classes/javassist/expr/Cast$ProceedForCast.class deleted file mode 100644 index 6fa256a8..00000000 Binary files a/target/classes/javassist/expr/Cast$ProceedForCast.class and /dev/null differ diff --git a/target/classes/javassist/expr/Cast.class b/target/classes/javassist/expr/Cast.class deleted file mode 100644 index 206ec84d..00000000 Binary files a/target/classes/javassist/expr/Cast.class and /dev/null differ diff --git a/target/classes/javassist/expr/ConstructorCall.class b/target/classes/javassist/expr/ConstructorCall.class deleted file mode 100644 index 41f51e27..00000000 Binary files a/target/classes/javassist/expr/ConstructorCall.class and /dev/null differ diff --git a/target/classes/javassist/expr/Expr.class b/target/classes/javassist/expr/Expr.class deleted file mode 100644 index 46b700a0..00000000 Binary files a/target/classes/javassist/expr/Expr.class and /dev/null differ diff --git a/target/classes/javassist/expr/ExprEditor$LoopContext.class b/target/classes/javassist/expr/ExprEditor$LoopContext.class deleted file mode 100644 index 039bcd4a..00000000 Binary files a/target/classes/javassist/expr/ExprEditor$LoopContext.class and /dev/null differ diff --git a/target/classes/javassist/expr/ExprEditor$NewOp.class b/target/classes/javassist/expr/ExprEditor$NewOp.class deleted file mode 100644 index 4f1016a3..00000000 Binary files a/target/classes/javassist/expr/ExprEditor$NewOp.class and /dev/null differ diff --git a/target/classes/javassist/expr/ExprEditor.class b/target/classes/javassist/expr/ExprEditor.class deleted file mode 100644 index adbbd11f..00000000 Binary files a/target/classes/javassist/expr/ExprEditor.class and /dev/null differ diff --git a/target/classes/javassist/expr/FieldAccess$ProceedForRead.class b/target/classes/javassist/expr/FieldAccess$ProceedForRead.class deleted file mode 100644 index 365f759d..00000000 Binary files a/target/classes/javassist/expr/FieldAccess$ProceedForRead.class and /dev/null differ diff --git a/target/classes/javassist/expr/FieldAccess$ProceedForWrite.class b/target/classes/javassist/expr/FieldAccess$ProceedForWrite.class deleted file mode 100644 index 0e55a6cf..00000000 Binary files a/target/classes/javassist/expr/FieldAccess$ProceedForWrite.class and /dev/null differ diff --git a/target/classes/javassist/expr/FieldAccess.class b/target/classes/javassist/expr/FieldAccess.class deleted file mode 100644 index 6d0bbd10..00000000 Binary files a/target/classes/javassist/expr/FieldAccess.class and /dev/null differ diff --git a/target/classes/javassist/expr/Handler.class b/target/classes/javassist/expr/Handler.class deleted file mode 100644 index caa7804d..00000000 Binary files a/target/classes/javassist/expr/Handler.class and /dev/null differ diff --git a/target/classes/javassist/expr/Instanceof$ProceedForInstanceof.class b/target/classes/javassist/expr/Instanceof$ProceedForInstanceof.class deleted file mode 100644 index 91879b6c..00000000 Binary files a/target/classes/javassist/expr/Instanceof$ProceedForInstanceof.class and /dev/null differ diff --git a/target/classes/javassist/expr/Instanceof.class b/target/classes/javassist/expr/Instanceof.class deleted file mode 100644 index eb26c754..00000000 Binary files a/target/classes/javassist/expr/Instanceof.class and /dev/null differ diff --git a/target/classes/javassist/expr/MethodCall.class b/target/classes/javassist/expr/MethodCall.class deleted file mode 100644 index 47e728bd..00000000 Binary files a/target/classes/javassist/expr/MethodCall.class and /dev/null differ diff --git a/target/classes/javassist/expr/NewArray$ProceedForArray.class b/target/classes/javassist/expr/NewArray$ProceedForArray.class deleted file mode 100644 index aa935238..00000000 Binary files a/target/classes/javassist/expr/NewArray$ProceedForArray.class and /dev/null differ diff --git a/target/classes/javassist/expr/NewArray.class b/target/classes/javassist/expr/NewArray.class deleted file mode 100644 index ba8f2044..00000000 Binary files a/target/classes/javassist/expr/NewArray.class and /dev/null differ diff --git a/target/classes/javassist/expr/NewExpr$ProceedForNew.class b/target/classes/javassist/expr/NewExpr$ProceedForNew.class deleted file mode 100644 index ac73b6bb..00000000 Binary files a/target/classes/javassist/expr/NewExpr$ProceedForNew.class and /dev/null differ diff --git a/target/classes/javassist/expr/NewExpr.class b/target/classes/javassist/expr/NewExpr.class deleted file mode 100644 index 07b568a4..00000000 Binary files a/target/classes/javassist/expr/NewExpr.class and /dev/null differ diff --git a/target/classes/javassist/runtime/Cflow$Depth.class b/target/classes/javassist/runtime/Cflow$Depth.class deleted file mode 100644 index 1cf2bcb1..00000000 Binary files a/target/classes/javassist/runtime/Cflow$Depth.class and /dev/null differ diff --git a/target/classes/javassist/runtime/Cflow.class b/target/classes/javassist/runtime/Cflow.class deleted file mode 100644 index e579ee8f..00000000 Binary files a/target/classes/javassist/runtime/Cflow.class and /dev/null differ diff --git a/target/classes/javassist/runtime/Desc.class b/target/classes/javassist/runtime/Desc.class deleted file mode 100644 index 325fe0fa..00000000 Binary files a/target/classes/javassist/runtime/Desc.class and /dev/null differ diff --git a/target/classes/javassist/runtime/DotClass.class b/target/classes/javassist/runtime/DotClass.class deleted file mode 100644 index 36a03a51..00000000 Binary files a/target/classes/javassist/runtime/DotClass.class and /dev/null differ diff --git a/target/classes/javassist/runtime/Inner.class b/target/classes/javassist/runtime/Inner.class deleted file mode 100644 index 019ff2c8..00000000 Binary files a/target/classes/javassist/runtime/Inner.class and /dev/null differ diff --git a/target/classes/javassist/scopedpool/ScopedClassPool.class b/target/classes/javassist/scopedpool/ScopedClassPool.class deleted file mode 100644 index 85f4a2bc..00000000 Binary files a/target/classes/javassist/scopedpool/ScopedClassPool.class and /dev/null differ diff --git a/target/classes/javassist/scopedpool/ScopedClassPoolFactory.class b/target/classes/javassist/scopedpool/ScopedClassPoolFactory.class deleted file mode 100644 index 9d97f880..00000000 Binary files a/target/classes/javassist/scopedpool/ScopedClassPoolFactory.class and /dev/null differ diff --git a/target/classes/javassist/scopedpool/ScopedClassPoolFactoryImpl.class b/target/classes/javassist/scopedpool/ScopedClassPoolFactoryImpl.class deleted file mode 100644 index 4cba86bb..00000000 Binary files a/target/classes/javassist/scopedpool/ScopedClassPoolFactoryImpl.class and /dev/null differ diff --git a/target/classes/javassist/scopedpool/ScopedClassPoolRepository.class b/target/classes/javassist/scopedpool/ScopedClassPoolRepository.class deleted file mode 100644 index 79e7f2ac..00000000 Binary files a/target/classes/javassist/scopedpool/ScopedClassPoolRepository.class and /dev/null differ diff --git a/target/classes/javassist/scopedpool/ScopedClassPoolRepositoryImpl.class b/target/classes/javassist/scopedpool/ScopedClassPoolRepositoryImpl.class deleted file mode 100644 index c9ab8c8d..00000000 Binary files a/target/classes/javassist/scopedpool/ScopedClassPoolRepositoryImpl.class and /dev/null differ diff --git a/target/classes/javassist/scopedpool/SoftValueHashMap$SoftValueRef.class b/target/classes/javassist/scopedpool/SoftValueHashMap$SoftValueRef.class deleted file mode 100644 index 838b66de..00000000 Binary files a/target/classes/javassist/scopedpool/SoftValueHashMap$SoftValueRef.class and /dev/null differ diff --git a/target/classes/javassist/scopedpool/SoftValueHashMap.class b/target/classes/javassist/scopedpool/SoftValueHashMap.class deleted file mode 100644 index 920870e5..00000000 Binary files a/target/classes/javassist/scopedpool/SoftValueHashMap.class and /dev/null differ diff --git a/target/classes/javassist/tools/Callback.class b/target/classes/javassist/tools/Callback.class deleted file mode 100644 index fcf3c1ad..00000000 Binary files a/target/classes/javassist/tools/Callback.class and /dev/null differ diff --git a/target/classes/javassist/tools/Dump.class b/target/classes/javassist/tools/Dump.class deleted file mode 100644 index 091fa03b..00000000 Binary files a/target/classes/javassist/tools/Dump.class and /dev/null differ diff --git a/target/classes/javassist/tools/framedump.class b/target/classes/javassist/tools/framedump.class deleted file mode 100644 index 0ab0d09a..00000000 Binary files a/target/classes/javassist/tools/framedump.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/CannotCreateException.class b/target/classes/javassist/tools/reflect/CannotCreateException.class deleted file mode 100644 index e09bbf49..00000000 Binary files a/target/classes/javassist/tools/reflect/CannotCreateException.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/CannotInvokeException.class b/target/classes/javassist/tools/reflect/CannotInvokeException.class deleted file mode 100644 index 5729d40d..00000000 Binary files a/target/classes/javassist/tools/reflect/CannotInvokeException.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/CannotReflectException.class b/target/classes/javassist/tools/reflect/CannotReflectException.class deleted file mode 100644 index a1926ec8..00000000 Binary files a/target/classes/javassist/tools/reflect/CannotReflectException.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/ClassMetaobject.class b/target/classes/javassist/tools/reflect/ClassMetaobject.class deleted file mode 100644 index eb2ad6b1..00000000 Binary files a/target/classes/javassist/tools/reflect/ClassMetaobject.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/CompiledClass.class b/target/classes/javassist/tools/reflect/CompiledClass.class deleted file mode 100644 index 10b1a743..00000000 Binary files a/target/classes/javassist/tools/reflect/CompiledClass.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/Compiler.class b/target/classes/javassist/tools/reflect/Compiler.class deleted file mode 100644 index 5dea28b4..00000000 Binary files a/target/classes/javassist/tools/reflect/Compiler.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/Loader.class b/target/classes/javassist/tools/reflect/Loader.class deleted file mode 100644 index 1d88effc..00000000 Binary files a/target/classes/javassist/tools/reflect/Loader.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/Metalevel.class b/target/classes/javassist/tools/reflect/Metalevel.class deleted file mode 100644 index ace7ae51..00000000 Binary files a/target/classes/javassist/tools/reflect/Metalevel.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/Metaobject.class b/target/classes/javassist/tools/reflect/Metaobject.class deleted file mode 100644 index 110a2309..00000000 Binary files a/target/classes/javassist/tools/reflect/Metaobject.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/Reflection.class b/target/classes/javassist/tools/reflect/Reflection.class deleted file mode 100644 index b4d32a34..00000000 Binary files a/target/classes/javassist/tools/reflect/Reflection.class and /dev/null differ diff --git a/target/classes/javassist/tools/reflect/Sample.class b/target/classes/javassist/tools/reflect/Sample.class deleted file mode 100644 index fae872e3..00000000 Binary files a/target/classes/javassist/tools/reflect/Sample.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/AppletServer.class b/target/classes/javassist/tools/rmi/AppletServer.class deleted file mode 100644 index 49c62ecc..00000000 Binary files a/target/classes/javassist/tools/rmi/AppletServer.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/ExportedObject.class b/target/classes/javassist/tools/rmi/ExportedObject.class deleted file mode 100644 index 7cb78439..00000000 Binary files a/target/classes/javassist/tools/rmi/ExportedObject.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/ObjectImporter.class b/target/classes/javassist/tools/rmi/ObjectImporter.class deleted file mode 100644 index c5939be9..00000000 Binary files a/target/classes/javassist/tools/rmi/ObjectImporter.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/ObjectNotFoundException.class b/target/classes/javassist/tools/rmi/ObjectNotFoundException.class deleted file mode 100644 index 0ff83075..00000000 Binary files a/target/classes/javassist/tools/rmi/ObjectNotFoundException.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/Proxy.class b/target/classes/javassist/tools/rmi/Proxy.class deleted file mode 100644 index 21fa8aa8..00000000 Binary files a/target/classes/javassist/tools/rmi/Proxy.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/RemoteException.class b/target/classes/javassist/tools/rmi/RemoteException.class deleted file mode 100644 index 35f437a6..00000000 Binary files a/target/classes/javassist/tools/rmi/RemoteException.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/RemoteRef.class b/target/classes/javassist/tools/rmi/RemoteRef.class deleted file mode 100644 index a11669e3..00000000 Binary files a/target/classes/javassist/tools/rmi/RemoteRef.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/Sample.class b/target/classes/javassist/tools/rmi/Sample.class deleted file mode 100644 index 9f9d7a48..00000000 Binary files a/target/classes/javassist/tools/rmi/Sample.class and /dev/null differ diff --git a/target/classes/javassist/tools/rmi/StubGenerator.class b/target/classes/javassist/tools/rmi/StubGenerator.class deleted file mode 100644 index 6a61540f..00000000 Binary files a/target/classes/javassist/tools/rmi/StubGenerator.class and /dev/null differ diff --git a/target/classes/javassist/tools/web/BadHttpRequest.class b/target/classes/javassist/tools/web/BadHttpRequest.class deleted file mode 100644 index 9577c13c..00000000 Binary files a/target/classes/javassist/tools/web/BadHttpRequest.class and /dev/null differ diff --git a/target/classes/javassist/tools/web/ServiceThread.class b/target/classes/javassist/tools/web/ServiceThread.class deleted file mode 100644 index 4a0aa86f..00000000 Binary files a/target/classes/javassist/tools/web/ServiceThread.class and /dev/null differ diff --git a/target/classes/javassist/tools/web/Viewer.class b/target/classes/javassist/tools/web/Viewer.class deleted file mode 100644 index 1e6b3bdf..00000000 Binary files a/target/classes/javassist/tools/web/Viewer.class and /dev/null differ diff --git a/target/classes/javassist/tools/web/Webserver.class b/target/classes/javassist/tools/web/Webserver.class deleted file mode 100644 index f2a6e3b1..00000000 Binary files a/target/classes/javassist/tools/web/Webserver.class and /dev/null differ diff --git a/target/classes/javassist/util/HotSwapper$1.class b/target/classes/javassist/util/HotSwapper$1.class deleted file mode 100644 index 452dbeae..00000000 Binary files a/target/classes/javassist/util/HotSwapper$1.class and /dev/null differ diff --git a/target/classes/javassist/util/HotSwapper.class b/target/classes/javassist/util/HotSwapper.class deleted file mode 100644 index 7d6d061e..00000000 Binary files a/target/classes/javassist/util/HotSwapper.class and /dev/null differ diff --git a/target/classes/javassist/util/Trigger.class b/target/classes/javassist/util/Trigger.class deleted file mode 100644 index 0ee7b3f4..00000000 Binary files a/target/classes/javassist/util/Trigger.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/FactoryHelper.class b/target/classes/javassist/util/proxy/FactoryHelper.class deleted file mode 100644 index 729da0b6..00000000 Binary files a/target/classes/javassist/util/proxy/FactoryHelper.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/MethodFilter.class b/target/classes/javassist/util/proxy/MethodFilter.class deleted file mode 100644 index fd674b8d..00000000 Binary files a/target/classes/javassist/util/proxy/MethodFilter.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/MethodHandler.class b/target/classes/javassist/util/proxy/MethodHandler.class deleted file mode 100644 index dec7aed7..00000000 Binary files a/target/classes/javassist/util/proxy/MethodHandler.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/Proxy.class b/target/classes/javassist/util/proxy/Proxy.class deleted file mode 100644 index e74497a4..00000000 Binary files a/target/classes/javassist/util/proxy/Proxy.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory$1.class b/target/classes/javassist/util/proxy/ProxyFactory$1.class deleted file mode 100644 index cb3ae9b0..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory$1.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory$2.class b/target/classes/javassist/util/proxy/ProxyFactory$2.class deleted file mode 100644 index bc58e25a..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory$2.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory$3.class b/target/classes/javassist/util/proxy/ProxyFactory$3.class deleted file mode 100644 index b3488afe..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory$3.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory$ClassLoaderProvider.class b/target/classes/javassist/util/proxy/ProxyFactory$ClassLoaderProvider.class deleted file mode 100644 index 8a665ffd..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory$ClassLoaderProvider.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory$Find2MethodsArgs.class b/target/classes/javassist/util/proxy/ProxyFactory$Find2MethodsArgs.class deleted file mode 100644 index a8b27c88..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory$Find2MethodsArgs.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory$ProxyDetails.class b/target/classes/javassist/util/proxy/ProxyFactory$ProxyDetails.class deleted file mode 100644 index 107a790f..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory$ProxyDetails.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory$UniqueName.class b/target/classes/javassist/util/proxy/ProxyFactory$UniqueName.class deleted file mode 100644 index 266e36bf..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory$UniqueName.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyFactory.class b/target/classes/javassist/util/proxy/ProxyFactory.class deleted file mode 100644 index 7223fd59..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyFactory.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyObject.class b/target/classes/javassist/util/proxy/ProxyObject.class deleted file mode 100644 index fb160477..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyObject.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyObjectInputStream.class b/target/classes/javassist/util/proxy/ProxyObjectInputStream.class deleted file mode 100644 index d4f2a5e6..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyObjectInputStream.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/ProxyObjectOutputStream.class b/target/classes/javassist/util/proxy/ProxyObjectOutputStream.class deleted file mode 100644 index 1c478632..00000000 Binary files a/target/classes/javassist/util/proxy/ProxyObjectOutputStream.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/RuntimeSupport$DefaultMethodHandler.class b/target/classes/javassist/util/proxy/RuntimeSupport$DefaultMethodHandler.class deleted file mode 100644 index 41adcbd3..00000000 Binary files a/target/classes/javassist/util/proxy/RuntimeSupport$DefaultMethodHandler.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/RuntimeSupport.class b/target/classes/javassist/util/proxy/RuntimeSupport.class deleted file mode 100644 index d6e37f36..00000000 Binary files a/target/classes/javassist/util/proxy/RuntimeSupport.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SecurityActions$1.class b/target/classes/javassist/util/proxy/SecurityActions$1.class deleted file mode 100644 index f9aca810..00000000 Binary files a/target/classes/javassist/util/proxy/SecurityActions$1.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SecurityActions$2.class b/target/classes/javassist/util/proxy/SecurityActions$2.class deleted file mode 100644 index 563bcef5..00000000 Binary files a/target/classes/javassist/util/proxy/SecurityActions$2.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SecurityActions$3.class b/target/classes/javassist/util/proxy/SecurityActions$3.class deleted file mode 100644 index 3a1c9a63..00000000 Binary files a/target/classes/javassist/util/proxy/SecurityActions$3.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SecurityActions$4.class b/target/classes/javassist/util/proxy/SecurityActions$4.class deleted file mode 100644 index 45f61732..00000000 Binary files a/target/classes/javassist/util/proxy/SecurityActions$4.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SecurityActions$5.class b/target/classes/javassist/util/proxy/SecurityActions$5.class deleted file mode 100644 index f7bb29b4..00000000 Binary files a/target/classes/javassist/util/proxy/SecurityActions$5.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SecurityActions$6.class b/target/classes/javassist/util/proxy/SecurityActions$6.class deleted file mode 100644 index 8cce6c3c..00000000 Binary files a/target/classes/javassist/util/proxy/SecurityActions$6.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SecurityActions.class b/target/classes/javassist/util/proxy/SecurityActions.class deleted file mode 100644 index 429045e9..00000000 Binary files a/target/classes/javassist/util/proxy/SecurityActions.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SerializedProxy$1.class b/target/classes/javassist/util/proxy/SerializedProxy$1.class deleted file mode 100644 index d11972ce..00000000 Binary files a/target/classes/javassist/util/proxy/SerializedProxy$1.class and /dev/null differ diff --git a/target/classes/javassist/util/proxy/SerializedProxy.class b/target/classes/javassist/util/proxy/SerializedProxy.class deleted file mode 100644 index 49805752..00000000 Binary files a/target/classes/javassist/util/proxy/SerializedProxy.class and /dev/null differ diff --git a/target/classes/javax/persistence/Access.class b/target/classes/javax/persistence/Access.class deleted file mode 100644 index 77ae8f05..00000000 Binary files a/target/classes/javax/persistence/Access.class and /dev/null differ diff --git a/target/classes/javax/persistence/AccessType.class b/target/classes/javax/persistence/AccessType.class deleted file mode 100644 index c1915ab7..00000000 Binary files a/target/classes/javax/persistence/AccessType.class and /dev/null differ diff --git a/target/classes/javax/persistence/AssociationOverride.class b/target/classes/javax/persistence/AssociationOverride.class deleted file mode 100644 index ad39f624..00000000 Binary files a/target/classes/javax/persistence/AssociationOverride.class and /dev/null differ diff --git a/target/classes/javax/persistence/AssociationOverrides.class b/target/classes/javax/persistence/AssociationOverrides.class deleted file mode 100644 index 82660113..00000000 Binary files a/target/classes/javax/persistence/AssociationOverrides.class and /dev/null differ diff --git a/target/classes/javax/persistence/AttributeConverter.class b/target/classes/javax/persistence/AttributeConverter.class deleted file mode 100644 index 37da67c9..00000000 Binary files a/target/classes/javax/persistence/AttributeConverter.class and /dev/null differ diff --git a/target/classes/javax/persistence/AttributeNode.class b/target/classes/javax/persistence/AttributeNode.class deleted file mode 100644 index 33d31f8d..00000000 Binary files a/target/classes/javax/persistence/AttributeNode.class and /dev/null differ diff --git a/target/classes/javax/persistence/AttributeOverride.class b/target/classes/javax/persistence/AttributeOverride.class deleted file mode 100644 index d7a6f432..00000000 Binary files a/target/classes/javax/persistence/AttributeOverride.class and /dev/null differ diff --git a/target/classes/javax/persistence/AttributeOverrides.class b/target/classes/javax/persistence/AttributeOverrides.class deleted file mode 100644 index cfd93e2e..00000000 Binary files a/target/classes/javax/persistence/AttributeOverrides.class and /dev/null differ diff --git a/target/classes/javax/persistence/Basic.class b/target/classes/javax/persistence/Basic.class deleted file mode 100644 index 39b1b00a..00000000 Binary files a/target/classes/javax/persistence/Basic.class and /dev/null differ diff --git a/target/classes/javax/persistence/Cache.class b/target/classes/javax/persistence/Cache.class deleted file mode 100644 index 6bb1dae1..00000000 Binary files a/target/classes/javax/persistence/Cache.class and /dev/null differ diff --git a/target/classes/javax/persistence/CacheRetrieveMode.class b/target/classes/javax/persistence/CacheRetrieveMode.class deleted file mode 100644 index e65d4c4e..00000000 Binary files a/target/classes/javax/persistence/CacheRetrieveMode.class and /dev/null differ diff --git a/target/classes/javax/persistence/CacheStoreMode.class b/target/classes/javax/persistence/CacheStoreMode.class deleted file mode 100644 index 7032984b..00000000 Binary files a/target/classes/javax/persistence/CacheStoreMode.class and /dev/null differ diff --git a/target/classes/javax/persistence/Cacheable.class b/target/classes/javax/persistence/Cacheable.class deleted file mode 100644 index 0b3f32e6..00000000 Binary files a/target/classes/javax/persistence/Cacheable.class and /dev/null differ diff --git a/target/classes/javax/persistence/CascadeType.class b/target/classes/javax/persistence/CascadeType.class deleted file mode 100644 index 377b7684..00000000 Binary files a/target/classes/javax/persistence/CascadeType.class and /dev/null differ diff --git a/target/classes/javax/persistence/CollectionTable.class b/target/classes/javax/persistence/CollectionTable.class deleted file mode 100644 index 878b600a..00000000 Binary files a/target/classes/javax/persistence/CollectionTable.class and /dev/null differ diff --git a/target/classes/javax/persistence/Column.class b/target/classes/javax/persistence/Column.class deleted file mode 100644 index 3e638c87..00000000 Binary files a/target/classes/javax/persistence/Column.class and /dev/null differ diff --git a/target/classes/javax/persistence/ColumnResult.class b/target/classes/javax/persistence/ColumnResult.class deleted file mode 100644 index d5bbf0d0..00000000 Binary files a/target/classes/javax/persistence/ColumnResult.class and /dev/null differ diff --git a/target/classes/javax/persistence/ConstraintMode.class b/target/classes/javax/persistence/ConstraintMode.class deleted file mode 100644 index 9041c161..00000000 Binary files a/target/classes/javax/persistence/ConstraintMode.class and /dev/null differ diff --git a/target/classes/javax/persistence/ConstructorResult.class b/target/classes/javax/persistence/ConstructorResult.class deleted file mode 100644 index 9d8009f7..00000000 Binary files a/target/classes/javax/persistence/ConstructorResult.class and /dev/null differ diff --git a/target/classes/javax/persistence/Convert.class b/target/classes/javax/persistence/Convert.class deleted file mode 100644 index 0ad1cf05..00000000 Binary files a/target/classes/javax/persistence/Convert.class and /dev/null differ diff --git a/target/classes/javax/persistence/Converter.class b/target/classes/javax/persistence/Converter.class deleted file mode 100644 index 5613dfde..00000000 Binary files a/target/classes/javax/persistence/Converter.class and /dev/null differ diff --git a/target/classes/javax/persistence/Converts.class b/target/classes/javax/persistence/Converts.class deleted file mode 100644 index 59d315b7..00000000 Binary files a/target/classes/javax/persistence/Converts.class and /dev/null differ diff --git a/target/classes/javax/persistence/DiscriminatorColumn.class b/target/classes/javax/persistence/DiscriminatorColumn.class deleted file mode 100644 index 4b40dd4b..00000000 Binary files a/target/classes/javax/persistence/DiscriminatorColumn.class and /dev/null differ diff --git a/target/classes/javax/persistence/DiscriminatorType.class b/target/classes/javax/persistence/DiscriminatorType.class deleted file mode 100644 index 37504749..00000000 Binary files a/target/classes/javax/persistence/DiscriminatorType.class and /dev/null differ diff --git a/target/classes/javax/persistence/DiscriminatorValue.class b/target/classes/javax/persistence/DiscriminatorValue.class deleted file mode 100644 index 628cb69a..00000000 Binary files a/target/classes/javax/persistence/DiscriminatorValue.class and /dev/null differ diff --git a/target/classes/javax/persistence/ElementCollection.class b/target/classes/javax/persistence/ElementCollection.class deleted file mode 100644 index 1091fac6..00000000 Binary files a/target/classes/javax/persistence/ElementCollection.class and /dev/null differ diff --git a/target/classes/javax/persistence/Embeddable.class b/target/classes/javax/persistence/Embeddable.class deleted file mode 100644 index e00167b8..00000000 Binary files a/target/classes/javax/persistence/Embeddable.class and /dev/null differ diff --git a/target/classes/javax/persistence/Embedded.class b/target/classes/javax/persistence/Embedded.class deleted file mode 100644 index 2f48f9d3..00000000 Binary files a/target/classes/javax/persistence/Embedded.class and /dev/null differ diff --git a/target/classes/javax/persistence/EmbeddedId.class b/target/classes/javax/persistence/EmbeddedId.class deleted file mode 100644 index 0b5ebf85..00000000 Binary files a/target/classes/javax/persistence/EmbeddedId.class and /dev/null differ diff --git a/target/classes/javax/persistence/Entity.class b/target/classes/javax/persistence/Entity.class deleted file mode 100644 index 9030ad03..00000000 Binary files a/target/classes/javax/persistence/Entity.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityExistsException.class b/target/classes/javax/persistence/EntityExistsException.class deleted file mode 100644 index b654754a..00000000 Binary files a/target/classes/javax/persistence/EntityExistsException.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityGraph.class b/target/classes/javax/persistence/EntityGraph.class deleted file mode 100644 index 3cfe2ba7..00000000 Binary files a/target/classes/javax/persistence/EntityGraph.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityListeners.class b/target/classes/javax/persistence/EntityListeners.class deleted file mode 100644 index a16e9b11..00000000 Binary files a/target/classes/javax/persistence/EntityListeners.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityManager.class b/target/classes/javax/persistence/EntityManager.class deleted file mode 100644 index 4e9a980c..00000000 Binary files a/target/classes/javax/persistence/EntityManager.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityManagerFactory.class b/target/classes/javax/persistence/EntityManagerFactory.class deleted file mode 100644 index c13e3433..00000000 Binary files a/target/classes/javax/persistence/EntityManagerFactory.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityNotFoundException.class b/target/classes/javax/persistence/EntityNotFoundException.class deleted file mode 100644 index 07ad4821..00000000 Binary files a/target/classes/javax/persistence/EntityNotFoundException.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityResult.class b/target/classes/javax/persistence/EntityResult.class deleted file mode 100644 index 5ea1ae5c..00000000 Binary files a/target/classes/javax/persistence/EntityResult.class and /dev/null differ diff --git a/target/classes/javax/persistence/EntityTransaction.class b/target/classes/javax/persistence/EntityTransaction.class deleted file mode 100644 index 8ef29e5f..00000000 Binary files a/target/classes/javax/persistence/EntityTransaction.class and /dev/null differ diff --git a/target/classes/javax/persistence/EnumType.class b/target/classes/javax/persistence/EnumType.class deleted file mode 100644 index 56695f63..00000000 Binary files a/target/classes/javax/persistence/EnumType.class and /dev/null differ diff --git a/target/classes/javax/persistence/Enumerated.class b/target/classes/javax/persistence/Enumerated.class deleted file mode 100644 index 00039cd7..00000000 Binary files a/target/classes/javax/persistence/Enumerated.class and /dev/null differ diff --git a/target/classes/javax/persistence/ExcludeDefaultListeners.class b/target/classes/javax/persistence/ExcludeDefaultListeners.class deleted file mode 100644 index c131d8e3..00000000 Binary files a/target/classes/javax/persistence/ExcludeDefaultListeners.class and /dev/null differ diff --git a/target/classes/javax/persistence/ExcludeSuperclassListeners.class b/target/classes/javax/persistence/ExcludeSuperclassListeners.class deleted file mode 100644 index 44a3759c..00000000 Binary files a/target/classes/javax/persistence/ExcludeSuperclassListeners.class and /dev/null differ diff --git a/target/classes/javax/persistence/FetchType.class b/target/classes/javax/persistence/FetchType.class deleted file mode 100644 index 2f891857..00000000 Binary files a/target/classes/javax/persistence/FetchType.class and /dev/null differ diff --git a/target/classes/javax/persistence/FieldResult.class b/target/classes/javax/persistence/FieldResult.class deleted file mode 100644 index 2bdb402c..00000000 Binary files a/target/classes/javax/persistence/FieldResult.class and /dev/null differ diff --git a/target/classes/javax/persistence/FlushModeType.class b/target/classes/javax/persistence/FlushModeType.class deleted file mode 100644 index edb15fa3..00000000 Binary files a/target/classes/javax/persistence/FlushModeType.class and /dev/null differ diff --git a/target/classes/javax/persistence/ForeignKey.class b/target/classes/javax/persistence/ForeignKey.class deleted file mode 100644 index 1c202c68..00000000 Binary files a/target/classes/javax/persistence/ForeignKey.class and /dev/null differ diff --git a/target/classes/javax/persistence/GeneratedValue.class b/target/classes/javax/persistence/GeneratedValue.class deleted file mode 100644 index e121fa70..00000000 Binary files a/target/classes/javax/persistence/GeneratedValue.class and /dev/null differ diff --git a/target/classes/javax/persistence/GenerationType.class b/target/classes/javax/persistence/GenerationType.class deleted file mode 100644 index b41e461c..00000000 Binary files a/target/classes/javax/persistence/GenerationType.class and /dev/null differ diff --git a/target/classes/javax/persistence/Id.class b/target/classes/javax/persistence/Id.class deleted file mode 100644 index 33ebc317..00000000 Binary files a/target/classes/javax/persistence/Id.class and /dev/null differ diff --git a/target/classes/javax/persistence/IdClass.class b/target/classes/javax/persistence/IdClass.class deleted file mode 100644 index 2d7dc2c8..00000000 Binary files a/target/classes/javax/persistence/IdClass.class and /dev/null differ diff --git a/target/classes/javax/persistence/Index.class b/target/classes/javax/persistence/Index.class deleted file mode 100644 index 70a21e75..00000000 Binary files a/target/classes/javax/persistence/Index.class and /dev/null differ diff --git a/target/classes/javax/persistence/Inheritance.class b/target/classes/javax/persistence/Inheritance.class deleted file mode 100644 index 511f989d..00000000 Binary files a/target/classes/javax/persistence/Inheritance.class and /dev/null differ diff --git a/target/classes/javax/persistence/InheritanceType.class b/target/classes/javax/persistence/InheritanceType.class deleted file mode 100644 index e8e25723..00000000 Binary files a/target/classes/javax/persistence/InheritanceType.class and /dev/null differ diff --git a/target/classes/javax/persistence/JoinColumn.class b/target/classes/javax/persistence/JoinColumn.class deleted file mode 100644 index 1fcbdca1..00000000 Binary files a/target/classes/javax/persistence/JoinColumn.class and /dev/null differ diff --git a/target/classes/javax/persistence/JoinColumns.class b/target/classes/javax/persistence/JoinColumns.class deleted file mode 100644 index ea15ac25..00000000 Binary files a/target/classes/javax/persistence/JoinColumns.class and /dev/null differ diff --git a/target/classes/javax/persistence/JoinTable.class b/target/classes/javax/persistence/JoinTable.class deleted file mode 100644 index 1a93dd0b..00000000 Binary files a/target/classes/javax/persistence/JoinTable.class and /dev/null differ diff --git a/target/classes/javax/persistence/Lob.class b/target/classes/javax/persistence/Lob.class deleted file mode 100644 index 22068e5c..00000000 Binary files a/target/classes/javax/persistence/Lob.class and /dev/null differ diff --git a/target/classes/javax/persistence/LockModeType.class b/target/classes/javax/persistence/LockModeType.class deleted file mode 100644 index 4a2672f8..00000000 Binary files a/target/classes/javax/persistence/LockModeType.class and /dev/null differ diff --git a/target/classes/javax/persistence/LockTimeoutException.class b/target/classes/javax/persistence/LockTimeoutException.class deleted file mode 100644 index 48a9d999..00000000 Binary files a/target/classes/javax/persistence/LockTimeoutException.class and /dev/null differ diff --git a/target/classes/javax/persistence/ManyToMany.class b/target/classes/javax/persistence/ManyToMany.class deleted file mode 100644 index 2dc01001..00000000 Binary files a/target/classes/javax/persistence/ManyToMany.class and /dev/null differ diff --git a/target/classes/javax/persistence/ManyToOne.class b/target/classes/javax/persistence/ManyToOne.class deleted file mode 100644 index f789cba6..00000000 Binary files a/target/classes/javax/persistence/ManyToOne.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapKey.class b/target/classes/javax/persistence/MapKey.class deleted file mode 100644 index 06eb6ec0..00000000 Binary files a/target/classes/javax/persistence/MapKey.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapKeyClass.class b/target/classes/javax/persistence/MapKeyClass.class deleted file mode 100644 index af7a56a2..00000000 Binary files a/target/classes/javax/persistence/MapKeyClass.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapKeyColumn.class b/target/classes/javax/persistence/MapKeyColumn.class deleted file mode 100644 index 27924b01..00000000 Binary files a/target/classes/javax/persistence/MapKeyColumn.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapKeyEnumerated.class b/target/classes/javax/persistence/MapKeyEnumerated.class deleted file mode 100644 index 5cf02712..00000000 Binary files a/target/classes/javax/persistence/MapKeyEnumerated.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapKeyJoinColumn.class b/target/classes/javax/persistence/MapKeyJoinColumn.class deleted file mode 100644 index 037ef02f..00000000 Binary files a/target/classes/javax/persistence/MapKeyJoinColumn.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapKeyJoinColumns.class b/target/classes/javax/persistence/MapKeyJoinColumns.class deleted file mode 100644 index 91c060e0..00000000 Binary files a/target/classes/javax/persistence/MapKeyJoinColumns.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapKeyTemporal.class b/target/classes/javax/persistence/MapKeyTemporal.class deleted file mode 100644 index 3de39374..00000000 Binary files a/target/classes/javax/persistence/MapKeyTemporal.class and /dev/null differ diff --git a/target/classes/javax/persistence/MappedSuperclass.class b/target/classes/javax/persistence/MappedSuperclass.class deleted file mode 100644 index dfe7a6ce..00000000 Binary files a/target/classes/javax/persistence/MappedSuperclass.class and /dev/null differ diff --git a/target/classes/javax/persistence/MapsId.class b/target/classes/javax/persistence/MapsId.class deleted file mode 100644 index a429b4b0..00000000 Binary files a/target/classes/javax/persistence/MapsId.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedAttributeNode.class b/target/classes/javax/persistence/NamedAttributeNode.class deleted file mode 100644 index 78451706..00000000 Binary files a/target/classes/javax/persistence/NamedAttributeNode.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedEntityGraph.class b/target/classes/javax/persistence/NamedEntityGraph.class deleted file mode 100644 index 30d28dfd..00000000 Binary files a/target/classes/javax/persistence/NamedEntityGraph.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedEntityGraphs.class b/target/classes/javax/persistence/NamedEntityGraphs.class deleted file mode 100644 index eaca1571..00000000 Binary files a/target/classes/javax/persistence/NamedEntityGraphs.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedNativeQueries.class b/target/classes/javax/persistence/NamedNativeQueries.class deleted file mode 100644 index 4fc38449..00000000 Binary files a/target/classes/javax/persistence/NamedNativeQueries.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedNativeQuery.class b/target/classes/javax/persistence/NamedNativeQuery.class deleted file mode 100644 index 8a273595..00000000 Binary files a/target/classes/javax/persistence/NamedNativeQuery.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedQueries.class b/target/classes/javax/persistence/NamedQueries.class deleted file mode 100644 index fd9f2892..00000000 Binary files a/target/classes/javax/persistence/NamedQueries.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedQuery.class b/target/classes/javax/persistence/NamedQuery.class deleted file mode 100644 index 18d55127..00000000 Binary files a/target/classes/javax/persistence/NamedQuery.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedStoredProcedureQueries.class b/target/classes/javax/persistence/NamedStoredProcedureQueries.class deleted file mode 100644 index d9bf8e55..00000000 Binary files a/target/classes/javax/persistence/NamedStoredProcedureQueries.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedStoredProcedureQuery.class b/target/classes/javax/persistence/NamedStoredProcedureQuery.class deleted file mode 100644 index 3a8ef3ec..00000000 Binary files a/target/classes/javax/persistence/NamedStoredProcedureQuery.class and /dev/null differ diff --git a/target/classes/javax/persistence/NamedSubgraph.class b/target/classes/javax/persistence/NamedSubgraph.class deleted file mode 100644 index 11f91bac..00000000 Binary files a/target/classes/javax/persistence/NamedSubgraph.class and /dev/null differ diff --git a/target/classes/javax/persistence/NoResultException.class b/target/classes/javax/persistence/NoResultException.class deleted file mode 100644 index d45d9084..00000000 Binary files a/target/classes/javax/persistence/NoResultException.class and /dev/null differ diff --git a/target/classes/javax/persistence/NonUniqueResultException.class b/target/classes/javax/persistence/NonUniqueResultException.class deleted file mode 100644 index c308180b..00000000 Binary files a/target/classes/javax/persistence/NonUniqueResultException.class and /dev/null differ diff --git a/target/classes/javax/persistence/OneToMany.class b/target/classes/javax/persistence/OneToMany.class deleted file mode 100644 index dde9eaec..00000000 Binary files a/target/classes/javax/persistence/OneToMany.class and /dev/null differ diff --git a/target/classes/javax/persistence/OneToOne.class b/target/classes/javax/persistence/OneToOne.class deleted file mode 100644 index 64f2f343..00000000 Binary files a/target/classes/javax/persistence/OneToOne.class and /dev/null differ diff --git a/target/classes/javax/persistence/OptimisticLockException.class b/target/classes/javax/persistence/OptimisticLockException.class deleted file mode 100644 index eb6a8f1c..00000000 Binary files a/target/classes/javax/persistence/OptimisticLockException.class and /dev/null differ diff --git a/target/classes/javax/persistence/OrderBy.class b/target/classes/javax/persistence/OrderBy.class deleted file mode 100644 index 73e66017..00000000 Binary files a/target/classes/javax/persistence/OrderBy.class and /dev/null differ diff --git a/target/classes/javax/persistence/OrderColumn.class b/target/classes/javax/persistence/OrderColumn.class deleted file mode 100644 index ce4d85dc..00000000 Binary files a/target/classes/javax/persistence/OrderColumn.class and /dev/null differ diff --git a/target/classes/javax/persistence/Parameter.class b/target/classes/javax/persistence/Parameter.class deleted file mode 100644 index 6f1dcf33..00000000 Binary files a/target/classes/javax/persistence/Parameter.class and /dev/null differ diff --git a/target/classes/javax/persistence/ParameterMode.class b/target/classes/javax/persistence/ParameterMode.class deleted file mode 100644 index 524782db..00000000 Binary files a/target/classes/javax/persistence/ParameterMode.class and /dev/null differ diff --git a/target/classes/javax/persistence/Persistence$1.class b/target/classes/javax/persistence/Persistence$1.class deleted file mode 100644 index 2f98c273..00000000 Binary files a/target/classes/javax/persistence/Persistence$1.class and /dev/null differ diff --git a/target/classes/javax/persistence/Persistence.class b/target/classes/javax/persistence/Persistence.class deleted file mode 100644 index 005a6917..00000000 Binary files a/target/classes/javax/persistence/Persistence.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceContext.class b/target/classes/javax/persistence/PersistenceContext.class deleted file mode 100644 index d8ffbd4b..00000000 Binary files a/target/classes/javax/persistence/PersistenceContext.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceContextType.class b/target/classes/javax/persistence/PersistenceContextType.class deleted file mode 100644 index af47b7ac..00000000 Binary files a/target/classes/javax/persistence/PersistenceContextType.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceContexts.class b/target/classes/javax/persistence/PersistenceContexts.class deleted file mode 100644 index 46152a8f..00000000 Binary files a/target/classes/javax/persistence/PersistenceContexts.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceException.class b/target/classes/javax/persistence/PersistenceException.class deleted file mode 100644 index 122d4290..00000000 Binary files a/target/classes/javax/persistence/PersistenceException.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceProperty.class b/target/classes/javax/persistence/PersistenceProperty.class deleted file mode 100644 index d9e006e7..00000000 Binary files a/target/classes/javax/persistence/PersistenceProperty.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceUnit.class b/target/classes/javax/persistence/PersistenceUnit.class deleted file mode 100644 index 2246e95e..00000000 Binary files a/target/classes/javax/persistence/PersistenceUnit.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceUnitUtil.class b/target/classes/javax/persistence/PersistenceUnitUtil.class deleted file mode 100644 index 10bd58a6..00000000 Binary files a/target/classes/javax/persistence/PersistenceUnitUtil.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceUnits.class b/target/classes/javax/persistence/PersistenceUnits.class deleted file mode 100644 index 50f22c1f..00000000 Binary files a/target/classes/javax/persistence/PersistenceUnits.class and /dev/null differ diff --git a/target/classes/javax/persistence/PersistenceUtil.class b/target/classes/javax/persistence/PersistenceUtil.class deleted file mode 100644 index 6660a06a..00000000 Binary files a/target/classes/javax/persistence/PersistenceUtil.class and /dev/null differ diff --git a/target/classes/javax/persistence/PessimisticLockException.class b/target/classes/javax/persistence/PessimisticLockException.class deleted file mode 100644 index cd5892f1..00000000 Binary files a/target/classes/javax/persistence/PessimisticLockException.class and /dev/null differ diff --git a/target/classes/javax/persistence/PessimisticLockScope.class b/target/classes/javax/persistence/PessimisticLockScope.class deleted file mode 100644 index dd5f215e..00000000 Binary files a/target/classes/javax/persistence/PessimisticLockScope.class and /dev/null differ diff --git a/target/classes/javax/persistence/PostLoad.class b/target/classes/javax/persistence/PostLoad.class deleted file mode 100644 index 7d469985..00000000 Binary files a/target/classes/javax/persistence/PostLoad.class and /dev/null differ diff --git a/target/classes/javax/persistence/PostPersist.class b/target/classes/javax/persistence/PostPersist.class deleted file mode 100644 index dc9f9035..00000000 Binary files a/target/classes/javax/persistence/PostPersist.class and /dev/null differ diff --git a/target/classes/javax/persistence/PostRemove.class b/target/classes/javax/persistence/PostRemove.class deleted file mode 100644 index 0fed3cfb..00000000 Binary files a/target/classes/javax/persistence/PostRemove.class and /dev/null differ diff --git a/target/classes/javax/persistence/PostUpdate.class b/target/classes/javax/persistence/PostUpdate.class deleted file mode 100644 index 2e75a776..00000000 Binary files a/target/classes/javax/persistence/PostUpdate.class and /dev/null differ diff --git a/target/classes/javax/persistence/PrePersist.class b/target/classes/javax/persistence/PrePersist.class deleted file mode 100644 index 161d4f05..00000000 Binary files a/target/classes/javax/persistence/PrePersist.class and /dev/null differ diff --git a/target/classes/javax/persistence/PreRemove.class b/target/classes/javax/persistence/PreRemove.class deleted file mode 100644 index f888d3e4..00000000 Binary files a/target/classes/javax/persistence/PreRemove.class and /dev/null differ diff --git a/target/classes/javax/persistence/PreUpdate.class b/target/classes/javax/persistence/PreUpdate.class deleted file mode 100644 index b0b10d8d..00000000 Binary files a/target/classes/javax/persistence/PreUpdate.class and /dev/null differ diff --git a/target/classes/javax/persistence/PrimaryKeyJoinColumn.class b/target/classes/javax/persistence/PrimaryKeyJoinColumn.class deleted file mode 100644 index 9c0d3d53..00000000 Binary files a/target/classes/javax/persistence/PrimaryKeyJoinColumn.class and /dev/null differ diff --git a/target/classes/javax/persistence/PrimaryKeyJoinColumns.class b/target/classes/javax/persistence/PrimaryKeyJoinColumns.class deleted file mode 100644 index 2d973d2a..00000000 Binary files a/target/classes/javax/persistence/PrimaryKeyJoinColumns.class and /dev/null differ diff --git a/target/classes/javax/persistence/Query.class b/target/classes/javax/persistence/Query.class deleted file mode 100644 index 67a75fed..00000000 Binary files a/target/classes/javax/persistence/Query.class and /dev/null differ diff --git a/target/classes/javax/persistence/QueryHint.class b/target/classes/javax/persistence/QueryHint.class deleted file mode 100644 index 10651652..00000000 Binary files a/target/classes/javax/persistence/QueryHint.class and /dev/null differ diff --git a/target/classes/javax/persistence/QueryTimeoutException.class b/target/classes/javax/persistence/QueryTimeoutException.class deleted file mode 100644 index b1bb8aa8..00000000 Binary files a/target/classes/javax/persistence/QueryTimeoutException.class and /dev/null differ diff --git a/target/classes/javax/persistence/RollbackException.class b/target/classes/javax/persistence/RollbackException.class deleted file mode 100644 index 9fd143f1..00000000 Binary files a/target/classes/javax/persistence/RollbackException.class and /dev/null differ diff --git a/target/classes/javax/persistence/SecondaryTable.class b/target/classes/javax/persistence/SecondaryTable.class deleted file mode 100644 index 25ff14ab..00000000 Binary files a/target/classes/javax/persistence/SecondaryTable.class and /dev/null differ diff --git a/target/classes/javax/persistence/SecondaryTables.class b/target/classes/javax/persistence/SecondaryTables.class deleted file mode 100644 index f2045dbc..00000000 Binary files a/target/classes/javax/persistence/SecondaryTables.class and /dev/null differ diff --git a/target/classes/javax/persistence/SequenceGenerator.class b/target/classes/javax/persistence/SequenceGenerator.class deleted file mode 100644 index 0314693f..00000000 Binary files a/target/classes/javax/persistence/SequenceGenerator.class and /dev/null differ diff --git a/target/classes/javax/persistence/SharedCacheMode.class b/target/classes/javax/persistence/SharedCacheMode.class deleted file mode 100644 index 1cf1c906..00000000 Binary files a/target/classes/javax/persistence/SharedCacheMode.class and /dev/null differ diff --git a/target/classes/javax/persistence/SqlResultSetMapping.class b/target/classes/javax/persistence/SqlResultSetMapping.class deleted file mode 100644 index a829cc14..00000000 Binary files a/target/classes/javax/persistence/SqlResultSetMapping.class and /dev/null differ diff --git a/target/classes/javax/persistence/SqlResultSetMappings.class b/target/classes/javax/persistence/SqlResultSetMappings.class deleted file mode 100644 index 69fa346b..00000000 Binary files a/target/classes/javax/persistence/SqlResultSetMappings.class and /dev/null differ diff --git a/target/classes/javax/persistence/StoredProcedureParameter.class b/target/classes/javax/persistence/StoredProcedureParameter.class deleted file mode 100644 index a3838139..00000000 Binary files a/target/classes/javax/persistence/StoredProcedureParameter.class and /dev/null differ diff --git a/target/classes/javax/persistence/StoredProcedureQuery.class b/target/classes/javax/persistence/StoredProcedureQuery.class deleted file mode 100644 index 3f023425..00000000 Binary files a/target/classes/javax/persistence/StoredProcedureQuery.class and /dev/null differ diff --git a/target/classes/javax/persistence/Subgraph.class b/target/classes/javax/persistence/Subgraph.class deleted file mode 100644 index 7a505975..00000000 Binary files a/target/classes/javax/persistence/Subgraph.class and /dev/null differ diff --git a/target/classes/javax/persistence/SynchronizationType.class b/target/classes/javax/persistence/SynchronizationType.class deleted file mode 100644 index 58fa3da4..00000000 Binary files a/target/classes/javax/persistence/SynchronizationType.class and /dev/null differ diff --git a/target/classes/javax/persistence/Table.class b/target/classes/javax/persistence/Table.class deleted file mode 100644 index 6ddd268a..00000000 Binary files a/target/classes/javax/persistence/Table.class and /dev/null differ diff --git a/target/classes/javax/persistence/TableGenerator.class b/target/classes/javax/persistence/TableGenerator.class deleted file mode 100644 index 0598e179..00000000 Binary files a/target/classes/javax/persistence/TableGenerator.class and /dev/null differ diff --git a/target/classes/javax/persistence/Temporal.class b/target/classes/javax/persistence/Temporal.class deleted file mode 100644 index 8bc8a023..00000000 Binary files a/target/classes/javax/persistence/Temporal.class and /dev/null differ diff --git a/target/classes/javax/persistence/TemporalType.class b/target/classes/javax/persistence/TemporalType.class deleted file mode 100644 index a7774298..00000000 Binary files a/target/classes/javax/persistence/TemporalType.class and /dev/null differ diff --git a/target/classes/javax/persistence/TransactionRequiredException.class b/target/classes/javax/persistence/TransactionRequiredException.class deleted file mode 100644 index 625cacf6..00000000 Binary files a/target/classes/javax/persistence/TransactionRequiredException.class and /dev/null differ diff --git a/target/classes/javax/persistence/Transient.class b/target/classes/javax/persistence/Transient.class deleted file mode 100644 index 35e8b935..00000000 Binary files a/target/classes/javax/persistence/Transient.class and /dev/null differ diff --git a/target/classes/javax/persistence/Tuple.class b/target/classes/javax/persistence/Tuple.class deleted file mode 100644 index a65f2ff1..00000000 Binary files a/target/classes/javax/persistence/Tuple.class and /dev/null differ diff --git a/target/classes/javax/persistence/TupleElement.class b/target/classes/javax/persistence/TupleElement.class deleted file mode 100644 index c8a7eb8e..00000000 Binary files a/target/classes/javax/persistence/TupleElement.class and /dev/null differ diff --git a/target/classes/javax/persistence/TypedQuery.class b/target/classes/javax/persistence/TypedQuery.class deleted file mode 100644 index a5ee035d..00000000 Binary files a/target/classes/javax/persistence/TypedQuery.class and /dev/null differ diff --git a/target/classes/javax/persistence/UniqueConstraint.class b/target/classes/javax/persistence/UniqueConstraint.class deleted file mode 100644 index bfbf8ec5..00000000 Binary files a/target/classes/javax/persistence/UniqueConstraint.class and /dev/null differ diff --git a/target/classes/javax/persistence/ValidationMode.class b/target/classes/javax/persistence/ValidationMode.class deleted file mode 100644 index f23a9435..00000000 Binary files a/target/classes/javax/persistence/ValidationMode.class and /dev/null differ diff --git a/target/classes/javax/persistence/Version.class b/target/classes/javax/persistence/Version.class deleted file mode 100644 index c9ccc65b..00000000 Binary files a/target/classes/javax/persistence/Version.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/AbstractQuery.class b/target/classes/javax/persistence/criteria/AbstractQuery.class deleted file mode 100644 index b2633408..00000000 Binary files a/target/classes/javax/persistence/criteria/AbstractQuery.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CollectionJoin.class b/target/classes/javax/persistence/criteria/CollectionJoin.class deleted file mode 100644 index 10c9a00e..00000000 Binary files a/target/classes/javax/persistence/criteria/CollectionJoin.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CommonAbstractCriteria.class b/target/classes/javax/persistence/criteria/CommonAbstractCriteria.class deleted file mode 100644 index e9d8ebaa..00000000 Binary files a/target/classes/javax/persistence/criteria/CommonAbstractCriteria.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CompoundSelection.class b/target/classes/javax/persistence/criteria/CompoundSelection.class deleted file mode 100644 index 38db8d78..00000000 Binary files a/target/classes/javax/persistence/criteria/CompoundSelection.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaBuilder$Case.class b/target/classes/javax/persistence/criteria/CriteriaBuilder$Case.class deleted file mode 100644 index 41219452..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaBuilder$Case.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaBuilder$Coalesce.class b/target/classes/javax/persistence/criteria/CriteriaBuilder$Coalesce.class deleted file mode 100644 index 97bc13f4..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaBuilder$Coalesce.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaBuilder$In.class b/target/classes/javax/persistence/criteria/CriteriaBuilder$In.class deleted file mode 100644 index f4e33a3b..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaBuilder$In.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaBuilder$SimpleCase.class b/target/classes/javax/persistence/criteria/CriteriaBuilder$SimpleCase.class deleted file mode 100644 index 78820970..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaBuilder$SimpleCase.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaBuilder$Trimspec.class b/target/classes/javax/persistence/criteria/CriteriaBuilder$Trimspec.class deleted file mode 100644 index 88384db6..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaBuilder$Trimspec.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaBuilder.class b/target/classes/javax/persistence/criteria/CriteriaBuilder.class deleted file mode 100644 index 8bb80097..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaBuilder.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaDelete.class b/target/classes/javax/persistence/criteria/CriteriaDelete.class deleted file mode 100644 index 79332ef9..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaDelete.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaQuery.class b/target/classes/javax/persistence/criteria/CriteriaQuery.class deleted file mode 100644 index 8a215a38..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaQuery.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/CriteriaUpdate.class b/target/classes/javax/persistence/criteria/CriteriaUpdate.class deleted file mode 100644 index 9c10afa2..00000000 Binary files a/target/classes/javax/persistence/criteria/CriteriaUpdate.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Expression.class b/target/classes/javax/persistence/criteria/Expression.class deleted file mode 100644 index cee78c4b..00000000 Binary files a/target/classes/javax/persistence/criteria/Expression.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Fetch.class b/target/classes/javax/persistence/criteria/Fetch.class deleted file mode 100644 index dde2b8e5..00000000 Binary files a/target/classes/javax/persistence/criteria/Fetch.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/FetchParent.class b/target/classes/javax/persistence/criteria/FetchParent.class deleted file mode 100644 index 8dd4ee83..00000000 Binary files a/target/classes/javax/persistence/criteria/FetchParent.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/From.class b/target/classes/javax/persistence/criteria/From.class deleted file mode 100644 index 7d3fb72e..00000000 Binary files a/target/classes/javax/persistence/criteria/From.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Join.class b/target/classes/javax/persistence/criteria/Join.class deleted file mode 100644 index 6c6aad2b..00000000 Binary files a/target/classes/javax/persistence/criteria/Join.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/JoinType.class b/target/classes/javax/persistence/criteria/JoinType.class deleted file mode 100644 index 9a48da89..00000000 Binary files a/target/classes/javax/persistence/criteria/JoinType.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/ListJoin.class b/target/classes/javax/persistence/criteria/ListJoin.class deleted file mode 100644 index 1d821306..00000000 Binary files a/target/classes/javax/persistence/criteria/ListJoin.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/MapJoin.class b/target/classes/javax/persistence/criteria/MapJoin.class deleted file mode 100644 index f83b2fb8..00000000 Binary files a/target/classes/javax/persistence/criteria/MapJoin.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Order.class b/target/classes/javax/persistence/criteria/Order.class deleted file mode 100644 index fb37d579..00000000 Binary files a/target/classes/javax/persistence/criteria/Order.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/ParameterExpression.class b/target/classes/javax/persistence/criteria/ParameterExpression.class deleted file mode 100644 index d41b02ee..00000000 Binary files a/target/classes/javax/persistence/criteria/ParameterExpression.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Path.class b/target/classes/javax/persistence/criteria/Path.class deleted file mode 100644 index 19495013..00000000 Binary files a/target/classes/javax/persistence/criteria/Path.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/PluralJoin.class b/target/classes/javax/persistence/criteria/PluralJoin.class deleted file mode 100644 index 4d51c0eb..00000000 Binary files a/target/classes/javax/persistence/criteria/PluralJoin.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Predicate$BooleanOperator.class b/target/classes/javax/persistence/criteria/Predicate$BooleanOperator.class deleted file mode 100644 index 6c0039e6..00000000 Binary files a/target/classes/javax/persistence/criteria/Predicate$BooleanOperator.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Predicate.class b/target/classes/javax/persistence/criteria/Predicate.class deleted file mode 100644 index fa8d95c7..00000000 Binary files a/target/classes/javax/persistence/criteria/Predicate.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Root.class b/target/classes/javax/persistence/criteria/Root.class deleted file mode 100644 index 635fb407..00000000 Binary files a/target/classes/javax/persistence/criteria/Root.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Selection.class b/target/classes/javax/persistence/criteria/Selection.class deleted file mode 100644 index 073218a0..00000000 Binary files a/target/classes/javax/persistence/criteria/Selection.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/SetJoin.class b/target/classes/javax/persistence/criteria/SetJoin.class deleted file mode 100644 index 46187871..00000000 Binary files a/target/classes/javax/persistence/criteria/SetJoin.class and /dev/null differ diff --git a/target/classes/javax/persistence/criteria/Subquery.class b/target/classes/javax/persistence/criteria/Subquery.class deleted file mode 100644 index 40a754ce..00000000 Binary files a/target/classes/javax/persistence/criteria/Subquery.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/Attribute$PersistentAttributeType.class b/target/classes/javax/persistence/metamodel/Attribute$PersistentAttributeType.class deleted file mode 100644 index 413a1365..00000000 Binary files a/target/classes/javax/persistence/metamodel/Attribute$PersistentAttributeType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/Attribute.class b/target/classes/javax/persistence/metamodel/Attribute.class deleted file mode 100644 index 61b07954..00000000 Binary files a/target/classes/javax/persistence/metamodel/Attribute.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/BasicType.class b/target/classes/javax/persistence/metamodel/BasicType.class deleted file mode 100644 index 98daacf3..00000000 Binary files a/target/classes/javax/persistence/metamodel/BasicType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/Bindable$BindableType.class b/target/classes/javax/persistence/metamodel/Bindable$BindableType.class deleted file mode 100644 index 32534c31..00000000 Binary files a/target/classes/javax/persistence/metamodel/Bindable$BindableType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/Bindable.class b/target/classes/javax/persistence/metamodel/Bindable.class deleted file mode 100644 index f1f6622d..00000000 Binary files a/target/classes/javax/persistence/metamodel/Bindable.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/CollectionAttribute.class b/target/classes/javax/persistence/metamodel/CollectionAttribute.class deleted file mode 100644 index f644a9fa..00000000 Binary files a/target/classes/javax/persistence/metamodel/CollectionAttribute.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/EmbeddableType.class b/target/classes/javax/persistence/metamodel/EmbeddableType.class deleted file mode 100644 index 4a6b422c..00000000 Binary files a/target/classes/javax/persistence/metamodel/EmbeddableType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/EntityType.class b/target/classes/javax/persistence/metamodel/EntityType.class deleted file mode 100644 index 66b5e9e4..00000000 Binary files a/target/classes/javax/persistence/metamodel/EntityType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/IdentifiableType.class b/target/classes/javax/persistence/metamodel/IdentifiableType.class deleted file mode 100644 index 78e23b0c..00000000 Binary files a/target/classes/javax/persistence/metamodel/IdentifiableType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/ListAttribute.class b/target/classes/javax/persistence/metamodel/ListAttribute.class deleted file mode 100644 index 56faaaa1..00000000 Binary files a/target/classes/javax/persistence/metamodel/ListAttribute.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/ManagedType.class b/target/classes/javax/persistence/metamodel/ManagedType.class deleted file mode 100644 index 691ae178..00000000 Binary files a/target/classes/javax/persistence/metamodel/ManagedType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/MapAttribute.class b/target/classes/javax/persistence/metamodel/MapAttribute.class deleted file mode 100644 index 245c9ad3..00000000 Binary files a/target/classes/javax/persistence/metamodel/MapAttribute.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/MappedSuperclassType.class b/target/classes/javax/persistence/metamodel/MappedSuperclassType.class deleted file mode 100644 index 574a9f7e..00000000 Binary files a/target/classes/javax/persistence/metamodel/MappedSuperclassType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/Metamodel.class b/target/classes/javax/persistence/metamodel/Metamodel.class deleted file mode 100644 index b7e1f9aa..00000000 Binary files a/target/classes/javax/persistence/metamodel/Metamodel.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/PluralAttribute$CollectionType.class b/target/classes/javax/persistence/metamodel/PluralAttribute$CollectionType.class deleted file mode 100644 index d21ef236..00000000 Binary files a/target/classes/javax/persistence/metamodel/PluralAttribute$CollectionType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/PluralAttribute.class b/target/classes/javax/persistence/metamodel/PluralAttribute.class deleted file mode 100644 index e54f0adb..00000000 Binary files a/target/classes/javax/persistence/metamodel/PluralAttribute.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/SetAttribute.class b/target/classes/javax/persistence/metamodel/SetAttribute.class deleted file mode 100644 index c4e28f85..00000000 Binary files a/target/classes/javax/persistence/metamodel/SetAttribute.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/SingularAttribute.class b/target/classes/javax/persistence/metamodel/SingularAttribute.class deleted file mode 100644 index c01a1972..00000000 Binary files a/target/classes/javax/persistence/metamodel/SingularAttribute.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/StaticMetamodel.class b/target/classes/javax/persistence/metamodel/StaticMetamodel.class deleted file mode 100644 index 37f69245..00000000 Binary files a/target/classes/javax/persistence/metamodel/StaticMetamodel.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/Type$PersistenceType.class b/target/classes/javax/persistence/metamodel/Type$PersistenceType.class deleted file mode 100644 index 836224b6..00000000 Binary files a/target/classes/javax/persistence/metamodel/Type$PersistenceType.class and /dev/null differ diff --git a/target/classes/javax/persistence/metamodel/Type.class b/target/classes/javax/persistence/metamodel/Type.class deleted file mode 100644 index 2c744203..00000000 Binary files a/target/classes/javax/persistence/metamodel/Type.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/ClassTransformer.class b/target/classes/javax/persistence/spi/ClassTransformer.class deleted file mode 100644 index 8cf27f80..00000000 Binary files a/target/classes/javax/persistence/spi/ClassTransformer.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/LoadState.class b/target/classes/javax/persistence/spi/LoadState.class deleted file mode 100644 index 18d23d1b..00000000 Binary files a/target/classes/javax/persistence/spi/LoadState.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceProvider.class b/target/classes/javax/persistence/spi/PersistenceProvider.class deleted file mode 100644 index afa45a55..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceProvider.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceProviderResolver.class b/target/classes/javax/persistence/spi/PersistenceProviderResolver.class deleted file mode 100644 index 4c974fd3..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceProviderResolver.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$1.class b/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$1.class deleted file mode 100644 index 9265016a..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$1.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$PersistenceProviderResolverPerClassLoader$CachingPersistenceProviderResolver.class b/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$PersistenceProviderResolverPerClassLoader$CachingPersistenceProviderResolver.class deleted file mode 100644 index 9df40ad9..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$PersistenceProviderResolverPerClassLoader$CachingPersistenceProviderResolver.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$PersistenceProviderResolverPerClassLoader.class b/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$PersistenceProviderResolverPerClassLoader.class deleted file mode 100644 index 9cd028ed..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder$PersistenceProviderResolverPerClassLoader.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder.class b/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder.class deleted file mode 100644 index 8f3bdd2f..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceProviderResolverHolder.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceUnitInfo.class b/target/classes/javax/persistence/spi/PersistenceUnitInfo.class deleted file mode 100644 index 85d92d2e..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceUnitInfo.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/PersistenceUnitTransactionType.class b/target/classes/javax/persistence/spi/PersistenceUnitTransactionType.class deleted file mode 100644 index d4323e7b..00000000 Binary files a/target/classes/javax/persistence/spi/PersistenceUnitTransactionType.class and /dev/null differ diff --git a/target/classes/javax/persistence/spi/ProviderUtil.class b/target/classes/javax/persistence/spi/ProviderUtil.class deleted file mode 100644 index 1c8ff8b1..00000000 Binary files a/target/classes/javax/persistence/spi/ProviderUtil.class and /dev/null differ diff --git a/target/classes/javax/transaction/HeuristicCommitException.class b/target/classes/javax/transaction/HeuristicCommitException.class deleted file mode 100644 index a6fa1647..00000000 Binary files a/target/classes/javax/transaction/HeuristicCommitException.class and /dev/null differ diff --git a/target/classes/javax/transaction/HeuristicMixedException.class b/target/classes/javax/transaction/HeuristicMixedException.class deleted file mode 100644 index f76b320f..00000000 Binary files a/target/classes/javax/transaction/HeuristicMixedException.class and /dev/null differ diff --git a/target/classes/javax/transaction/HeuristicRollbackException.class b/target/classes/javax/transaction/HeuristicRollbackException.class deleted file mode 100644 index 716d04e1..00000000 Binary files a/target/classes/javax/transaction/HeuristicRollbackException.class and /dev/null differ diff --git a/target/classes/javax/transaction/InvalidTransactionException.class b/target/classes/javax/transaction/InvalidTransactionException.class deleted file mode 100644 index 2128ac0b..00000000 Binary files a/target/classes/javax/transaction/InvalidTransactionException.class and /dev/null differ diff --git a/target/classes/javax/transaction/NotSupportedException.class b/target/classes/javax/transaction/NotSupportedException.class deleted file mode 100644 index d4f4d87c..00000000 Binary files a/target/classes/javax/transaction/NotSupportedException.class and /dev/null differ diff --git a/target/classes/javax/transaction/RollbackException.class b/target/classes/javax/transaction/RollbackException.class deleted file mode 100644 index 7c790f58..00000000 Binary files a/target/classes/javax/transaction/RollbackException.class and /dev/null differ diff --git a/target/classes/javax/transaction/Status.class b/target/classes/javax/transaction/Status.class deleted file mode 100644 index d0b14bcf..00000000 Binary files a/target/classes/javax/transaction/Status.class and /dev/null differ diff --git a/target/classes/javax/transaction/Synchronization.class b/target/classes/javax/transaction/Synchronization.class deleted file mode 100644 index aeb36293..00000000 Binary files a/target/classes/javax/transaction/Synchronization.class and /dev/null differ diff --git a/target/classes/javax/transaction/SystemException.class b/target/classes/javax/transaction/SystemException.class deleted file mode 100644 index b31c6726..00000000 Binary files a/target/classes/javax/transaction/SystemException.class and /dev/null differ diff --git a/target/classes/javax/transaction/Transaction.class b/target/classes/javax/transaction/Transaction.class deleted file mode 100644 index c8ace098..00000000 Binary files a/target/classes/javax/transaction/Transaction.class and /dev/null differ diff --git a/target/classes/javax/transaction/TransactionManager.class b/target/classes/javax/transaction/TransactionManager.class deleted file mode 100644 index bacf6779..00000000 Binary files a/target/classes/javax/transaction/TransactionManager.class and /dev/null differ diff --git a/target/classes/javax/transaction/TransactionRequiredException.class b/target/classes/javax/transaction/TransactionRequiredException.class deleted file mode 100644 index d39221f6..00000000 Binary files a/target/classes/javax/transaction/TransactionRequiredException.class and /dev/null differ diff --git a/target/classes/javax/transaction/TransactionRolledbackException.class b/target/classes/javax/transaction/TransactionRolledbackException.class deleted file mode 100644 index 148260cd..00000000 Binary files a/target/classes/javax/transaction/TransactionRolledbackException.class and /dev/null differ diff --git a/target/classes/javax/transaction/TransactionSynchronizationRegistry.class b/target/classes/javax/transaction/TransactionSynchronizationRegistry.class deleted file mode 100644 index b008dbdf..00000000 Binary files a/target/classes/javax/transaction/TransactionSynchronizationRegistry.class and /dev/null differ diff --git a/target/classes/javax/transaction/UserTransaction.class b/target/classes/javax/transaction/UserTransaction.class deleted file mode 100644 index b48f6d9c..00000000 Binary files a/target/classes/javax/transaction/UserTransaction.class and /dev/null differ diff --git a/target/classes/javax/transaction/xa/XAException.class b/target/classes/javax/transaction/xa/XAException.class deleted file mode 100644 index 81413901..00000000 Binary files a/target/classes/javax/transaction/xa/XAException.class and /dev/null differ diff --git a/target/classes/javax/transaction/xa/XAResource.class b/target/classes/javax/transaction/xa/XAResource.class deleted file mode 100644 index 0bc1b37a..00000000 Binary files a/target/classes/javax/transaction/xa/XAResource.class and /dev/null differ diff --git a/target/classes/javax/transaction/xa/Xid.class b/target/classes/javax/transaction/xa/Xid.class deleted file mode 100644 index f8117b3e..00000000 Binary files a/target/classes/javax/transaction/xa/Xid.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/DocumentBuilder.class b/target/classes/javax/xml/parsers/DocumentBuilder.class deleted file mode 100644 index 79307ffa..00000000 Binary files a/target/classes/javax/xml/parsers/DocumentBuilder.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/DocumentBuilderFactory.class b/target/classes/javax/xml/parsers/DocumentBuilderFactory.class deleted file mode 100644 index bc44dcd2..00000000 Binary files a/target/classes/javax/xml/parsers/DocumentBuilderFactory.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/FactoryConfigurationError.class b/target/classes/javax/xml/parsers/FactoryConfigurationError.class deleted file mode 100644 index 8cbbea84..00000000 Binary files a/target/classes/javax/xml/parsers/FactoryConfigurationError.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/FactoryFinder$ConfigurationError.class b/target/classes/javax/xml/parsers/FactoryFinder$ConfigurationError.class deleted file mode 100644 index 7826a155..00000000 Binary files a/target/classes/javax/xml/parsers/FactoryFinder$ConfigurationError.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/FactoryFinder.class b/target/classes/javax/xml/parsers/FactoryFinder.class deleted file mode 100644 index fe4659b8..00000000 Binary files a/target/classes/javax/xml/parsers/FactoryFinder.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/ParserConfigurationException.class b/target/classes/javax/xml/parsers/ParserConfigurationException.class deleted file mode 100644 index e4e3c1f3..00000000 Binary files a/target/classes/javax/xml/parsers/ParserConfigurationException.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/SAXParser.class b/target/classes/javax/xml/parsers/SAXParser.class deleted file mode 100644 index 1bf512d9..00000000 Binary files a/target/classes/javax/xml/parsers/SAXParser.class and /dev/null differ diff --git a/target/classes/javax/xml/parsers/SAXParserFactory.class b/target/classes/javax/xml/parsers/SAXParserFactory.class deleted file mode 100644 index 3d0ac705..00000000 Binary files a/target/classes/javax/xml/parsers/SAXParserFactory.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/ErrorListener.class b/target/classes/javax/xml/transform/ErrorListener.class deleted file mode 100644 index e99d3eef..00000000 Binary files a/target/classes/javax/xml/transform/ErrorListener.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/FactoryFinder$ConfigurationError.class b/target/classes/javax/xml/transform/FactoryFinder$ConfigurationError.class deleted file mode 100644 index 124b2676..00000000 Binary files a/target/classes/javax/xml/transform/FactoryFinder$ConfigurationError.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/FactoryFinder.class b/target/classes/javax/xml/transform/FactoryFinder.class deleted file mode 100644 index c8c25e65..00000000 Binary files a/target/classes/javax/xml/transform/FactoryFinder.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/OutputKeys.class b/target/classes/javax/xml/transform/OutputKeys.class deleted file mode 100644 index 248a767b..00000000 Binary files a/target/classes/javax/xml/transform/OutputKeys.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/Result.class b/target/classes/javax/xml/transform/Result.class deleted file mode 100644 index c9b60344..00000000 Binary files a/target/classes/javax/xml/transform/Result.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/Source.class b/target/classes/javax/xml/transform/Source.class deleted file mode 100644 index 33148dae..00000000 Binary files a/target/classes/javax/xml/transform/Source.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/SourceLocator.class b/target/classes/javax/xml/transform/SourceLocator.class deleted file mode 100644 index 236efc12..00000000 Binary files a/target/classes/javax/xml/transform/SourceLocator.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/Templates.class b/target/classes/javax/xml/transform/Templates.class deleted file mode 100644 index 165b48c9..00000000 Binary files a/target/classes/javax/xml/transform/Templates.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/Transformer.class b/target/classes/javax/xml/transform/Transformer.class deleted file mode 100644 index ad0f8035..00000000 Binary files a/target/classes/javax/xml/transform/Transformer.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/TransformerConfigurationException.class b/target/classes/javax/xml/transform/TransformerConfigurationException.class deleted file mode 100644 index 94cb64d3..00000000 Binary files a/target/classes/javax/xml/transform/TransformerConfigurationException.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/TransformerException.class b/target/classes/javax/xml/transform/TransformerException.class deleted file mode 100644 index 8f29ab2c..00000000 Binary files a/target/classes/javax/xml/transform/TransformerException.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/TransformerFactory.class b/target/classes/javax/xml/transform/TransformerFactory.class deleted file mode 100644 index cf535754..00000000 Binary files a/target/classes/javax/xml/transform/TransformerFactory.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/TransformerFactoryConfigurationError.class b/target/classes/javax/xml/transform/TransformerFactoryConfigurationError.class deleted file mode 100644 index f6edaaad..00000000 Binary files a/target/classes/javax/xml/transform/TransformerFactoryConfigurationError.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/URIResolver.class b/target/classes/javax/xml/transform/URIResolver.class deleted file mode 100644 index 286f28da..00000000 Binary files a/target/classes/javax/xml/transform/URIResolver.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/dom/DOMLocator.class b/target/classes/javax/xml/transform/dom/DOMLocator.class deleted file mode 100644 index 3290a6be..00000000 Binary files a/target/classes/javax/xml/transform/dom/DOMLocator.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/dom/DOMResult.class b/target/classes/javax/xml/transform/dom/DOMResult.class deleted file mode 100644 index 446a9715..00000000 Binary files a/target/classes/javax/xml/transform/dom/DOMResult.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/dom/DOMSource.class b/target/classes/javax/xml/transform/dom/DOMSource.class deleted file mode 100644 index 54daee89..00000000 Binary files a/target/classes/javax/xml/transform/dom/DOMSource.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/sax/SAXResult.class b/target/classes/javax/xml/transform/sax/SAXResult.class deleted file mode 100644 index f94f52db..00000000 Binary files a/target/classes/javax/xml/transform/sax/SAXResult.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/sax/SAXSource.class b/target/classes/javax/xml/transform/sax/SAXSource.class deleted file mode 100644 index e6fea034..00000000 Binary files a/target/classes/javax/xml/transform/sax/SAXSource.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/sax/SAXTransformerFactory.class b/target/classes/javax/xml/transform/sax/SAXTransformerFactory.class deleted file mode 100644 index 8f4683be..00000000 Binary files a/target/classes/javax/xml/transform/sax/SAXTransformerFactory.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/sax/TemplatesHandler.class b/target/classes/javax/xml/transform/sax/TemplatesHandler.class deleted file mode 100644 index 790b28fc..00000000 Binary files a/target/classes/javax/xml/transform/sax/TemplatesHandler.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/sax/TransformerHandler.class b/target/classes/javax/xml/transform/sax/TransformerHandler.class deleted file mode 100644 index a01d298f..00000000 Binary files a/target/classes/javax/xml/transform/sax/TransformerHandler.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/stream/StreamResult.class b/target/classes/javax/xml/transform/stream/StreamResult.class deleted file mode 100644 index 861ad930..00000000 Binary files a/target/classes/javax/xml/transform/stream/StreamResult.class and /dev/null differ diff --git a/target/classes/javax/xml/transform/stream/StreamSource.class b/target/classes/javax/xml/transform/stream/StreamSource.class deleted file mode 100644 index f4325dfd..00000000 Binary files a/target/classes/javax/xml/transform/stream/StreamSource.class and /dev/null differ diff --git a/target/classes/license/LICENSE.dom-documentation.txt b/target/classes/license/LICENSE.dom-documentation.txt deleted file mode 100644 index 29fa2b0f..00000000 --- a/target/classes/license/LICENSE.dom-documentation.txt +++ /dev/null @@ -1,86 +0,0 @@ -xml-commons/java/external/LICENSE.dom-documentation.txt $Id: LICENSE.dom-documentation.txt,v 1.1 2002/01/31 23:13:42 curcuru Exp $ - - -This license came from: http://www.w3.org/Consortium/Legal/copyright-documents-19990405 - - -W3C DOCUMENT NOTICE AND LICENSE -Copyright 1994-2001 World -Wide Web Consortium, World -Wide Web Consortium, (Massachusetts Institute of -Technology, Institut National de -Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. -http://www.w3.org/Consortium/Legal/ - -Public documents on the W3C site are provided by the copyright -holders under the following license. The software or Document Type -Definitions (DTDs) associated with W3C specifications are governed -by the Software Notice. By using and/or copying this document, or the -W3C document from which this statement is linked, you (the -licensee) agree that you have read, understood, and will comply -with the following terms and conditions: - -Permission to use, copy, and distribute the contents of this -document, or the W3C document from which this statement is linked, -in any medium for any purpose and without fee or royalty is hereby -granted, provided that you include the following on ALL -copies of the document, or portions thereof, that you use: - -A link or URL to the original W3C document. - -The pre-existing copyright notice of the original author, or if -it doesn't exist, a notice of the form: "Copyright [$date-of-document] World Wide Web -Consortium, (Massachusetts -Institute of Technology, Institut National de Recherche en Informatique et en -Automatique, Keio -University). All Rights Reserved. -http://www.w3.org/Consortium/Legal/" (Hypertext is preferred, but a -textual representation is permitted.) - -If it exists, the STATUS of the W3C document. - -When space permits, inclusion of the full text of this NOTICE -should be provided. We request that authorship -attribution be provided in any software, documents, or other items -or products that you create pursuant to the implementation of the -contents of this document, or any portion thereof. - -No right to create modifications or derivatives of W3C documents -is granted pursuant to this license. However, if additional -requirements (documented in the Copyright -FAQ) are satisfied, the right to create modifications or -derivatives issometimes granted by the W3C to individuals -complying with those requirements. - -THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO -REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT -NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS -OF THE DOCUMENT ARE SUITABLE FOR ANY PURPOSE; NOR THAT THE -IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY -PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, -SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE -DOCUMENT OR THE PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS -THEREOF. - -The name and trademarks of copyright holders may NOT be used in -advertising or publicity pertaining to this document or its -contents without specific, written prior permission. Title to -copyright in this document will at all times remain with copyright -holders. - ----------------------------------------------------------------------------- -This formulation of W3C's notice and license became active on -April 05 1999 so as to account for the treatment of DTDs, schema's and -bindings. See the older formulation for the policy prior to this date. -Please see -our Copyright FAQ for common questions -about using materials from our site, including specific terms and -conditions for packages like libwww, Amaya, and Jigsaw. -Other questions about this notice can be directed to site-policy@w3.org. - -webmaster -(last updated by reagle on 1999/04/99.) \ No newline at end of file diff --git a/target/classes/license/LICENSE.dom-software.txt b/target/classes/license/LICENSE.dom-software.txt deleted file mode 100644 index 8d19a1d2..00000000 --- a/target/classes/license/LICENSE.dom-software.txt +++ /dev/null @@ -1,74 +0,0 @@ -xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.1 2002/01/31 23:13:42 curcuru Exp $ - - -This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720 - - -W3C SOFTWARE NOTICE AND LICENSE -Copyright 1994-2001 World -Wide Web Consortium, World -Wide Web Consortium, (Massachusetts Institute of -Technology, Institut National de -Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. -http://www.w3.org/Consortium/Legal/ - -This W3C work (including software, documents, or other related -items) is being provided by the copyright holders under the -following license. By obtaining, using and/or copying this work, -you (the licensee) agree that you have read, understood, and will -comply with the following terms and conditions: -Permission to use, copy, modify, and distribute this software -and its documentation, with or without modification, for any -purpose and without fee or royalty is hereby granted, provided that -you include the following on ALL copies of the software and -documentation or portions thereof, including modifications, that -you make: - -The full text of this NOTICE in a location viewable to users of -the redistributed or derivative work. - -Any pre-existing intellectual property disclaimers, notices, or -terms and conditions. If none exist, a short notice of the -following form (hypertext is preferred, text is permitted) should -be used within the body of any redistributed or derivative code: -"Copyright [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of -Technology, Institut National de -Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. -http://www.w3.org/Consortium/Legal/" - -Notice of any changes or modifications to the W3C files, -including the date changes were made. (We recommend you provide -URIs to the location from which the code is derived.) - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND -COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF -MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE -USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD -PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. -COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, -SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE -SOFTWARE OR DOCUMENTATION. - -The name and trademarks of copyright holders may NOT be used in -advertising or publicity pertaining to the software without -specific, written prior permission. Title to copyright in this -software and any associated documentation will at all times remain -with copyright holders. -____________________________________ -This formulation of W3C's notice and license became active on -August 14 1998 so as to improve compatibility with GPL. This -version ensures that W3C software licensing terms are no more -restrictive than GPL and consequently W3C software may be -distributed in GPL packages. See the older formulation for the -policy prior to this date. Please see our Copyright FAQ for common -questions about using materials from -our site, including specific terms and conditions for packages like -libwww, Amaya, and Jigsaw. -Other questions about this notice can be -directed to site-policy@w3.org. - -webmaster -(last updated $Date: 2002/01/31 23:13:42 $) \ No newline at end of file diff --git a/target/classes/license/LICENSE.sax.txt b/target/classes/license/LICENSE.sax.txt deleted file mode 100644 index b1f9be00..00000000 --- a/target/classes/license/LICENSE.sax.txt +++ /dev/null @@ -1,23 +0,0 @@ -xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.1 2002/01/31 23:26:48 curcuru Exp $ - - -This license came from: http://www.megginson.com/SAX/copying.html - However please note future versions of SAX may be covered - under http://saxproject.org/?selected=pd - - -This page is now out of date -- see the new SAX site at -http://www.saxproject.org/ for more up-to-date -releases and other information. Please change your bookmarks. - - -SAX2 is Free! - -I hereby abandon any property rights to SAX 2.0 (the Simple API for -XML), and release all of the SAX 2.0 source code, compiled code, and -documentation contained in this distribution into the Public Domain. -SAX comes with NO WARRANTY or guarantee of fitness for any -purpose. - -David Megginson, david@megginson.com -2000-05-05 \ No newline at end of file diff --git a/target/classes/license/LICENSE.txt b/target/classes/license/LICENSE.txt deleted file mode 100644 index e0b207d7..00000000 --- a/target/classes/license/LICENSE.txt +++ /dev/null @@ -1,56 +0,0 @@ -xml-commons/LICENSE.txt $Id: LICENSE.txt,v 1.1 2002/01/31 23:42:49 curcuru Exp $ -See README.txt for additional licensing information. - -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2001-2002 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The end-user documentation included with the redistribution, - * if any, must include the following acknowledgment: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowledgment may appear in the software itself, - * if and wherever such third-party acknowledgments normally appear. - * - * 4. The names "Apache" and "Apache Software Foundation" must - * not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache", - * nor may "Apache" appear in their name, without prior written - * permission of the Apache Software Foundation. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . - */ \ No newline at end of file diff --git a/target/classes/license/README.dom.txt b/target/classes/license/README.dom.txt deleted file mode 100644 index e46445cb..00000000 --- a/target/classes/license/README.dom.txt +++ /dev/null @@ -1,33 +0,0 @@ -xml-commons/java/external/README.dom.txt $Id: README.dom.txt,v 1.1 2002/01/31 23:13:42 curcuru Exp $ - - -HEAR YE, HEAR YE! - - -All of the .java software and associated documentation about -the DOM in this repository are distributed under the license -from the W3C, which is provided herein. - - -LICENSE.dom-software.txt covers all software from the W3C -including the following items in the xml-commons project: - - xml-commons/java/external/src/org/w3c - and all subdirectories - -LICENSE.dom-documentation.txt covers all documentation from the W3C -including the following items in the xml-commons project: - - xml-commons/java/external/xdocs/dom - and all subdirectories - -The actual DOM Java Language Binding classes in xml-commons came from: - http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/java-binding.html - The original versions are tagged 'DOM_LEVEL_2' - -The specification of DOM Level 2's various parts is at: - http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ - http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/ - http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/ - http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/ - http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113/ \ No newline at end of file diff --git a/target/classes/license/README.sax.txt b/target/classes/license/README.sax.txt deleted file mode 100644 index 9c482165..00000000 --- a/target/classes/license/README.sax.txt +++ /dev/null @@ -1,24 +0,0 @@ -xml-commons/java/external/README.sax.txt $Id: README.sax.txt,v 1.1 2002/01/31 23:26:48 curcuru Exp $ - - -HEAR YE, HEAR YE! - - -All of the .java software and associated documentation about -SAX in this repository are distributed freely in the -public domain. - - -LICENSE.sax.txt covers all software and documentation from the -megginson.com including the following in the xml-commons project: - - xml-commons/java/external/src/org/xml/sax - and all subdirectories - xml-commons/java/external/xdocs/sax - and all subdirectories - - -The actual SAX classes in xml-commons came from: - http://www.megginson.com/Software/index.html - The original versions are tagged 'SAX-2_0-r2-prerelease' - diff --git a/target/classes/license/README.txt b/target/classes/license/README.txt deleted file mode 100644 index 38eedcd6..00000000 --- a/target/classes/license/README.txt +++ /dev/null @@ -1,22 +0,0 @@ -xml-commons/README.txt $Id: README.txt,v 1.1 2002/01/31 23:42:49 curcuru Exp $ - - -HEAR YE, HEAR YE! - - -Software and documentation in this repository are covered under -a number of different licenses. - - -Most files under xml-commons/java/external/ are covered -under their respective LICENSE.*.txt files; see the matching -README.*.txt files for descriptions. - -Note that xml-commons/java/external/build.xml and -xml-commons/java/external/src/manifest.commons are -both covered under the Apache Software License. - - -All files not otherwise noted are covered under the -Apache Software License in LICENSE.txt including all -files under xml-commons/java/src diff --git a/target/classes/org/apache/commons/codec/BinaryDecoder.class b/target/classes/org/apache/commons/codec/BinaryDecoder.class deleted file mode 100644 index 03c4ec96..00000000 Binary files a/target/classes/org/apache/commons/codec/BinaryDecoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/BinaryEncoder.class b/target/classes/org/apache/commons/codec/BinaryEncoder.class deleted file mode 100644 index 6b98d1cc..00000000 Binary files a/target/classes/org/apache/commons/codec/BinaryEncoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/CharEncoding.class b/target/classes/org/apache/commons/codec/CharEncoding.class deleted file mode 100644 index 29491598..00000000 Binary files a/target/classes/org/apache/commons/codec/CharEncoding.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/Charsets.class b/target/classes/org/apache/commons/codec/Charsets.class deleted file mode 100644 index f8295e7a..00000000 Binary files a/target/classes/org/apache/commons/codec/Charsets.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/Decoder.class b/target/classes/org/apache/commons/codec/Decoder.class deleted file mode 100644 index 88893844..00000000 Binary files a/target/classes/org/apache/commons/codec/Decoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/DecoderException.class b/target/classes/org/apache/commons/codec/DecoderException.class deleted file mode 100644 index e3774ad1..00000000 Binary files a/target/classes/org/apache/commons/codec/DecoderException.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/Encoder.class b/target/classes/org/apache/commons/codec/Encoder.class deleted file mode 100644 index f1dac9af..00000000 Binary files a/target/classes/org/apache/commons/codec/Encoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/EncoderException.class b/target/classes/org/apache/commons/codec/EncoderException.class deleted file mode 100644 index 3822d2b2..00000000 Binary files a/target/classes/org/apache/commons/codec/EncoderException.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/StringDecoder.class b/target/classes/org/apache/commons/codec/StringDecoder.class deleted file mode 100644 index f8b5ddf0..00000000 Binary files a/target/classes/org/apache/commons/codec/StringDecoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/StringEncoder.class b/target/classes/org/apache/commons/codec/StringEncoder.class deleted file mode 100644 index ba0fc187..00000000 Binary files a/target/classes/org/apache/commons/codec/StringEncoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/StringEncoderComparator.class b/target/classes/org/apache/commons/codec/StringEncoderComparator.class deleted file mode 100644 index e76150af..00000000 Binary files a/target/classes/org/apache/commons/codec/StringEncoderComparator.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/Base32.class b/target/classes/org/apache/commons/codec/binary/Base32.class deleted file mode 100644 index 82a06639..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/Base32.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/Base32InputStream.class b/target/classes/org/apache/commons/codec/binary/Base32InputStream.class deleted file mode 100644 index 5e50a8ee..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/Base32InputStream.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/Base32OutputStream.class b/target/classes/org/apache/commons/codec/binary/Base32OutputStream.class deleted file mode 100644 index 5386b7a6..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/Base32OutputStream.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/Base64.class b/target/classes/org/apache/commons/codec/binary/Base64.class deleted file mode 100644 index 50a6d7f7..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/Base64.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/Base64InputStream.class b/target/classes/org/apache/commons/codec/binary/Base64InputStream.class deleted file mode 100644 index 81a63394..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/Base64InputStream.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/Base64OutputStream.class b/target/classes/org/apache/commons/codec/binary/Base64OutputStream.class deleted file mode 100644 index 3d4a0c0e..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/Base64OutputStream.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/BaseNCodec$Context.class b/target/classes/org/apache/commons/codec/binary/BaseNCodec$Context.class deleted file mode 100644 index 3f2cd238..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/BaseNCodec$Context.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/BaseNCodec.class b/target/classes/org/apache/commons/codec/binary/BaseNCodec.class deleted file mode 100644 index 274a11c5..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/BaseNCodec.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/BaseNCodecInputStream.class b/target/classes/org/apache/commons/codec/binary/BaseNCodecInputStream.class deleted file mode 100644 index ba1c2f54..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/BaseNCodecInputStream.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/BaseNCodecOutputStream.class b/target/classes/org/apache/commons/codec/binary/BaseNCodecOutputStream.class deleted file mode 100644 index e85f8f63..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/BaseNCodecOutputStream.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/BinaryCodec.class b/target/classes/org/apache/commons/codec/binary/BinaryCodec.class deleted file mode 100644 index fe04ff58..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/BinaryCodec.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/CharSequenceUtils.class b/target/classes/org/apache/commons/codec/binary/CharSequenceUtils.class deleted file mode 100644 index 63f61969..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/CharSequenceUtils.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/Hex.class b/target/classes/org/apache/commons/codec/binary/Hex.class deleted file mode 100644 index 9d74479a..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/Hex.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/binary/StringUtils.class b/target/classes/org/apache/commons/codec/binary/StringUtils.class deleted file mode 100644 index dbb4fcc8..00000000 Binary files a/target/classes/org/apache/commons/codec/binary/StringUtils.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/B64.class b/target/classes/org/apache/commons/codec/digest/B64.class deleted file mode 100644 index dedb4c32..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/B64.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/Crypt.class b/target/classes/org/apache/commons/codec/digest/Crypt.class deleted file mode 100644 index 623efcf0..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/Crypt.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/DigestUtils.class b/target/classes/org/apache/commons/codec/digest/DigestUtils.class deleted file mode 100644 index 1e38b337..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/DigestUtils.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/HmacAlgorithms.class b/target/classes/org/apache/commons/codec/digest/HmacAlgorithms.class deleted file mode 100644 index baadae33..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/HmacAlgorithms.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/HmacUtils.class b/target/classes/org/apache/commons/codec/digest/HmacUtils.class deleted file mode 100644 index a0133fe8..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/HmacUtils.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/Md5Crypt.class b/target/classes/org/apache/commons/codec/digest/Md5Crypt.class deleted file mode 100644 index 295c6bb5..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/Md5Crypt.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/MessageDigestAlgorithms.class b/target/classes/org/apache/commons/codec/digest/MessageDigestAlgorithms.class deleted file mode 100644 index c06db182..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/MessageDigestAlgorithms.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/Sha2Crypt.class b/target/classes/org/apache/commons/codec/digest/Sha2Crypt.class deleted file mode 100644 index 296adfd9..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/Sha2Crypt.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/digest/UnixCrypt.class b/target/classes/org/apache/commons/codec/digest/UnixCrypt.class deleted file mode 100644 index a1ab6048..00000000 Binary files a/target/classes/org/apache/commons/codec/digest/UnixCrypt.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/AbstractCaverphone.class b/target/classes/org/apache/commons/codec/language/AbstractCaverphone.class deleted file mode 100644 index 7a3c2f5a..00000000 Binary files a/target/classes/org/apache/commons/codec/language/AbstractCaverphone.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/Caverphone.class b/target/classes/org/apache/commons/codec/language/Caverphone.class deleted file mode 100644 index e87b1343..00000000 Binary files a/target/classes/org/apache/commons/codec/language/Caverphone.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/Caverphone1.class b/target/classes/org/apache/commons/codec/language/Caverphone1.class deleted file mode 100644 index ab497b61..00000000 Binary files a/target/classes/org/apache/commons/codec/language/Caverphone1.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/Caverphone2.class b/target/classes/org/apache/commons/codec/language/Caverphone2.class deleted file mode 100644 index 88c750db..00000000 Binary files a/target/classes/org/apache/commons/codec/language/Caverphone2.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneBuffer.class b/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneBuffer.class deleted file mode 100644 index ab9caffb..00000000 Binary files a/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneBuffer.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneInputBuffer.class b/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneInputBuffer.class deleted file mode 100644 index a68c8ad7..00000000 Binary files a/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneInputBuffer.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneOutputBuffer.class b/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneOutputBuffer.class deleted file mode 100644 index ab797bc3..00000000 Binary files a/target/classes/org/apache/commons/codec/language/ColognePhonetic$CologneOutputBuffer.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/ColognePhonetic.class b/target/classes/org/apache/commons/codec/language/ColognePhonetic.class deleted file mode 100644 index 3b9e6241..00000000 Binary files a/target/classes/org/apache/commons/codec/language/ColognePhonetic.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$1.class b/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$1.class deleted file mode 100644 index b2e6d9ac..00000000 Binary files a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$1.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$Branch.class b/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$Branch.class deleted file mode 100644 index 2b16c03d..00000000 Binary files a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$Branch.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$Rule.class b/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$Rule.class deleted file mode 100644 index ae46358c..00000000 Binary files a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex$Rule.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex.class b/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex.class deleted file mode 100644 index 57c6a5ca..00000000 Binary files a/target/classes/org/apache/commons/codec/language/DaitchMokotoffSoundex.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/DoubleMetaphone$DoubleMetaphoneResult.class b/target/classes/org/apache/commons/codec/language/DoubleMetaphone$DoubleMetaphoneResult.class deleted file mode 100644 index 94130337..00000000 Binary files a/target/classes/org/apache/commons/codec/language/DoubleMetaphone$DoubleMetaphoneResult.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/DoubleMetaphone.class b/target/classes/org/apache/commons/codec/language/DoubleMetaphone.class deleted file mode 100644 index 0fba1820..00000000 Binary files a/target/classes/org/apache/commons/codec/language/DoubleMetaphone.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/MatchRatingApproachEncoder.class b/target/classes/org/apache/commons/codec/language/MatchRatingApproachEncoder.class deleted file mode 100644 index ff57545b..00000000 Binary files a/target/classes/org/apache/commons/codec/language/MatchRatingApproachEncoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/Metaphone.class b/target/classes/org/apache/commons/codec/language/Metaphone.class deleted file mode 100644 index c4fbd6ea..00000000 Binary files a/target/classes/org/apache/commons/codec/language/Metaphone.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/Nysiis.class b/target/classes/org/apache/commons/codec/language/Nysiis.class deleted file mode 100644 index b5347e96..00000000 Binary files a/target/classes/org/apache/commons/codec/language/Nysiis.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/RefinedSoundex.class b/target/classes/org/apache/commons/codec/language/RefinedSoundex.class deleted file mode 100644 index bd8554da..00000000 Binary files a/target/classes/org/apache/commons/codec/language/RefinedSoundex.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/Soundex.class b/target/classes/org/apache/commons/codec/language/Soundex.class deleted file mode 100644 index 3cbea841..00000000 Binary files a/target/classes/org/apache/commons/codec/language/Soundex.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/SoundexUtils.class b/target/classes/org/apache/commons/codec/language/SoundexUtils.class deleted file mode 100644 index 35a7e9f2..00000000 Binary files a/target/classes/org/apache/commons/codec/language/SoundexUtils.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/BeiderMorseEncoder.class b/target/classes/org/apache/commons/codec/language/bm/BeiderMorseEncoder.class deleted file mode 100644 index 5965209b..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/BeiderMorseEncoder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Lang$1.class b/target/classes/org/apache/commons/codec/language/bm/Lang$1.class deleted file mode 100644 index fdb89b03..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Lang$1.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Lang$LangRule.class b/target/classes/org/apache/commons/codec/language/bm/Lang$LangRule.class deleted file mode 100644 index d0a88b18..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Lang$LangRule.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Lang.class b/target/classes/org/apache/commons/codec/language/bm/Lang.class deleted file mode 100644 index a7c665dc..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Lang.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Languages$1.class b/target/classes/org/apache/commons/codec/language/bm/Languages$1.class deleted file mode 100644 index 6acf2d3f..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Languages$1.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Languages$2.class b/target/classes/org/apache/commons/codec/language/bm/Languages$2.class deleted file mode 100644 index 4fd995ae..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Languages$2.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Languages$LanguageSet.class b/target/classes/org/apache/commons/codec/language/bm/Languages$LanguageSet.class deleted file mode 100644 index 6f1337c2..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Languages$LanguageSet.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Languages$SomeLanguages.class b/target/classes/org/apache/commons/codec/language/bm/Languages$SomeLanguages.class deleted file mode 100644 index 141d7009..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Languages$SomeLanguages.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Languages.class b/target/classes/org/apache/commons/codec/language/bm/Languages.class deleted file mode 100644 index f61bf82a..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Languages.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/NameType.class b/target/classes/org/apache/commons/codec/language/bm/NameType.class deleted file mode 100644 index bb577246..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/NameType.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$1.class b/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$1.class deleted file mode 100644 index bb11794d..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$1.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$PhonemeBuilder.class b/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$PhonemeBuilder.class deleted file mode 100644 index 1697a265..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$PhonemeBuilder.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$RulesApplication.class b/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$RulesApplication.class deleted file mode 100644 index 2e5543b3..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine$RulesApplication.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine.class b/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine.class deleted file mode 100644 index 0944dc6a..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/PhoneticEngine.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/ResourceConstants.class b/target/classes/org/apache/commons/codec/language/bm/ResourceConstants.class deleted file mode 100644 index abb00a26..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/ResourceConstants.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$1.class b/target/classes/org/apache/commons/codec/language/bm/Rule$1.class deleted file mode 100644 index 067b74ed..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$1.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$10.class b/target/classes/org/apache/commons/codec/language/bm/Rule$10.class deleted file mode 100644 index 5fe5aff3..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$10.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$2.class b/target/classes/org/apache/commons/codec/language/bm/Rule$2.class deleted file mode 100644 index aa551ae5..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$2.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$3.class b/target/classes/org/apache/commons/codec/language/bm/Rule$3.class deleted file mode 100644 index 4c809eb0..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$3.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$4.class b/target/classes/org/apache/commons/codec/language/bm/Rule$4.class deleted file mode 100644 index 4f45d7d0..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$4.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$5.class b/target/classes/org/apache/commons/codec/language/bm/Rule$5.class deleted file mode 100644 index 953bcaac..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$5.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$6.class b/target/classes/org/apache/commons/codec/language/bm/Rule$6.class deleted file mode 100644 index c3e945c9..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$6.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$7.class b/target/classes/org/apache/commons/codec/language/bm/Rule$7.class deleted file mode 100644 index adeab924..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$7.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$8.class b/target/classes/org/apache/commons/codec/language/bm/Rule$8.class deleted file mode 100644 index 6f7cbf1d..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$8.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$9.class b/target/classes/org/apache/commons/codec/language/bm/Rule$9.class deleted file mode 100644 index 4135023c..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$9.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$Phoneme$1.class b/target/classes/org/apache/commons/codec/language/bm/Rule$Phoneme$1.class deleted file mode 100644 index 69edc0c2..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$Phoneme$1.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$Phoneme.class b/target/classes/org/apache/commons/codec/language/bm/Rule$Phoneme.class deleted file mode 100644 index f648ce30..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$Phoneme.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$PhonemeExpr.class b/target/classes/org/apache/commons/codec/language/bm/Rule$PhonemeExpr.class deleted file mode 100644 index ddb78447..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$PhonemeExpr.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$PhonemeList.class b/target/classes/org/apache/commons/codec/language/bm/Rule$PhonemeList.class deleted file mode 100644 index 23304456..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$PhonemeList.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule$RPattern.class b/target/classes/org/apache/commons/codec/language/bm/Rule$RPattern.class deleted file mode 100644 index 86c423e3..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule$RPattern.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/Rule.class b/target/classes/org/apache/commons/codec/language/bm/Rule.class deleted file mode 100644 index 24ddd74b..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/Rule.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/RuleType.class b/target/classes/org/apache/commons/codec/language/bm/RuleType.class deleted file mode 100644 index 81802124..00000000 Binary files a/target/classes/org/apache/commons/codec/language/bm/RuleType.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_any.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_any.txt deleted file mode 100644 index 4d38e22e..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_any.txt +++ /dev/null @@ -1,155 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// ASHKENAZIC - -// A, E, I, O, P, U should create variants, but a, e, i, o, u should not create any new variant -// Q = ü ; Y = ä = ö -// H = initial "H" in German/English - -// CONSONANTS -"b" "" "" "(b|v[spanish])" -"J" "" "" "z" // Argentina Spanish: "ll" = /Z/, but approximately /Z/ = /z/ - -// VOWELS -// "ALL" DIPHTHONGS are interchangeable BETWEEN THEM and with monophthongs of which they are composed ("D" means "diphthong") -// {a,o} are totally interchangeable if non-stressed; in German "a/o" can actually be from "ä/ö" (that are equivalent to "e") -// {i,e} are interchangeable if non-stressed, while in German "u" can actually be from "ü" (that is equivalent to "i") - -"aiB" "" "[bp]" "(D|Dm)" -"AiB" "" "[bp]" "(D|Dm)" -"oiB" "" "[bp]" "(D|Dm)" -"OiB" "" "[bp]" "(D|Dm)" -"uiB" "" "[bp]" "(D|Dm)" -"UiB" "" "[bp]" "(D|Dm)" -"eiB" "" "[bp]" "(D|Dm)" -"EiB" "" "[bp]" "(D|Dm)" -"iiB" "" "[bp]" "(D|Dm)" -"IiB" "" "[bp]" "(D|Dm)" - -"aiB" "" "[dgkstvz]" "(D|Dn)" -"AiB" "" "[dgkstvz]" "(D|Dn)" -"oiB" "" "[dgkstvz]" "(D|Dn)" -"OiB" "" "[dgkstvz]" "(D|Dn)" -"uiB" "" "[dgkstvz]" "(D|Dn)" -"UiB" "" "[dgkstvz]" "(D|Dn)" -"eiB" "" "[dgkstvz]" "(D|Dn)" -"EiB" "" "[dgkstvz]" "(D|Dn)" -"iiB" "" "[dgkstvz]" "(D|Dn)" -"IiB" "" "[dgkstvz]" "(D|Dn)" - -"B" "" "[bp]" "(o|om[polish]|im[polish])" -"B" "" "[dgkstvz]" "(a|o|on[polish]|in[polish])" -"B" "" "" "(a|o)" - -"aiF" "" "[bp]" "(D|Dm)" -"AiF" "" "[bp]" "(D|Dm)" -"oiF" "" "[bp]" "(D|Dm)" -"OiF" "" "[bp]" "(D|Dm)" -"uiF" "" "[bp]" "(D|Dm)" -"UiF" "" "[bp]" "(D|Dm)" -"eiF" "" "[bp]" "(D|Dm)" -"EiF" "" "[bp]" "(D|Dm)" -"iiF" "" "[bp]" "(D|Dm)" -"IiF" "" "[bp]" "(D|Dm)" - -"aiF" "" "[dgkstvz]" "(D|Dn)" -"AiF" "" "[dgkstvz]" "(D|Dn)" -"oiF" "" "[dgkstvz]" "(D|Dn)" -"OiF" "" "[dgkstvz]" "(D|Dn)" -"uiF" "" "[dgkstvz]" "(D|Dn)" -"UiF" "" "[dgkstvz]" "(D|Dn)" -"eiF" "" "[dgkstvz]" "(D|Dn)" -"EiF" "" "[dgkstvz]" "(D|Dn)" -"iiF" "" "[dgkstvz]" "(D|Dn)" -"IiF" "" "[dgkstvz]" "(D|Dn)" - -"F" "" "[bp]" "(i|im[polish]|om[polish])" -"F" "" "[dgkstvz]" "(i|in[polish]|on[polish])" -"F" "" "" "i" - -"P" "" "" "(o|u)" - -"I" "[aeiouAEIBFOUQY]" "" "i" -"I" "" "[^aeiouAEBFIOU]e" "(Q[german]|i|D[english])" // "line" -"I" "" "$" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk[german])" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts[german])" -"Its" "" "$" "its" -"I" "" "" "(Q[german]|i)" - -"lE" "[bdfgkmnprsStvzZ]" "$" "(li|il[english])" // Apple < Appel -"lE" "[bdfgkmnprsStvzZ]" "" "(li|il[english]|lY[german])" // Applebaum < Appelbaum - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" - -"ai" "" "" "(D|a|i)" -"Ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"Oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" -"Ui" "" "" "(D|u|i)" -"ei" "" "" "(D|i)" -"Ei" "" "" "(D|i)" - -"iA" "" "$" "(ia|io)" -"iA" "" "" "(ia|io|iY[german])" -"A" "" "[^aeiouAEBFIOU]e" "(a|o|Y[german]|D[english])" // "plane" - -"E" "i[^aeiouAEIOU]" "" "(i|Y[german]|[english])" // Wineberg (vineberg/vajneberg) --> vajnberg -"E" "a[^aeiouAEIOU]" "" "(i|Y[german]|[english])" // Shaneberg (shaneberg/shejneberg) --> shejnberg - -"e" "" "[fklmnprstv]$" "i" -"e" "" "ts$" "i" -"e" "" "$" "i" -"e" "[DaoiuAOIUQY]" "" "i" -"e" "" "[aoAOQY]" "i" -"e" "" "" "(i|Y[german])" - -"E" "" "[fklmnprst]$" "i" -"E" "" "ts$" "i" -"E" "" "$" "i" -"E" "[DaoiuAOIUQY]" "" "i" -"E" "" "[aoAOQY]" "i" -"E" "" "" "(i|Y[german])" - -"a" "" "" "(a|o)" - -"O" "" "[fklmnprstv]$" "o" -"O" "" "ts$" "o" -"O" "" "$" "o" -"O" "[oeiuQY]" "" "o" -"O" "" "" "(o|Y[german])" - -"A" "" "[fklmnprst]$" "(a|o)" -"A" "" "ts$" "(a|o)" -"A" "" "$" "(a|o)" -"A" "[oeiuQY]" "" "(a|o)" -"A" "" "" "(a|o|Y[german])" - -"U" "" "$" "u" -"U" "[DoiuQY]" "" "u" -"U" "" "[^k]$" "u" -"Uk" "[lr]" "$" "(uk|Qk[german])" -"Uk" "" "$" "uk" - -"sUts" "" "$" "(suts|sQts[german])" -"Uts" "" "$" "uts" -"U" "" "" "(u|Q[german])" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_common.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_common.txt deleted file mode 100644 index 7af7a6ee..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_common.txt +++ /dev/null @@ -1,225 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_approx_common - -// REGRESSIVE ASSIMILATION OF CONSONANTS -"n" "" "[bp]" "m" - -// PECULIARITY OF "h" -"h" "" "" "" -"H" "" "" "(x|)" - -// POLISH OGONEK IMPOSSIBLE -"F" "" "[bdgkpstvzZ]h" "e" -"F" "" "[bdgkpstvzZ]x" "e" -"B" "" "[bdgkpstvzZ]h" "a" -"B" "" "[bdgkpstvzZ]x" "a" - -// "e" and "i" ARE TO BE OMITTED BEFORE (SYLLABIC) n & l: Halperin=Halpern; Frankel = Frankl, Finkelstein = Finklstein -"e" "[bdfgklmnprsStvzZ]" "[ln]$" "" -"i" "[bdfgklmnprsStvzZ]" "[ln]$" "" -"E" "[bdfgklmnprsStvzZ]" "[ln]$" "" -"I" "[bdfgklmnprsStvzZ]" "[ln]$" "" -"F" "[bdfgklmnprsStvzZ]" "[ln]$" "" -"Q" "[bdfgklmnprsStvzZ]" "[ln]$" "" -"Y" "[bdfgklmnprsStvzZ]" "[ln]$" "" - -"e" "[bdfgklmnprsStvzZ]" "[ln][bdfgklmnprsStvzZ]" "" -"i" "[bdfgklmnprsStvzZ]" "[ln][bdfgklmnprsStvzZ]" "" -"E" "[bdfgklmnprsStvzZ]" "[ln][bdfgklmnprsStvzZ]" "" -"I" "[bdfgklmnprsStvzZ]" "[ln][bdfgklmnprsStvzZ]" "" -"F" "[bdfgklmnprsStvzZ]" "[ln][bdfgklmnprsStvzZ]" "" -"Q" "[bdfgklmnprsStvzZ]" "[ln][bdfgklmnprsStvzZ]" "" -"Y" "[bdfgklmnprsStvzZ]" "[ln][bdfgklmnprsStvzZ]" "" - -"lEs" "" "" "(lEs|lz)" // Applebaum < Appelbaum (English + blend English-something forms as Finklestein) -"lE" "[bdfgkmnprStvzZ]" "" "(lE|l)" // Applebaum < Appelbaum (English + blend English-something forms as Finklestein) - -// SIMPLIFICATION: (TRIPHTHONGS & DIPHTHONGS) -> ONE GENERIC DIPHTHONG "D" -"aue" "" "" "D" -"oue" "" "" "D" - -"AvE" "" "" "(D|AvE)" -"Ave" "" "" "(D|Ave)" -"avE" "" "" "(D|avE)" -"ave" "" "" "(D|ave)" - -"OvE" "" "" "(D|OvE)" -"Ove" "" "" "(D|Ove)" -"ovE" "" "" "(D|ovE)" -"ove" "" "" "(D|ove)" - -"ea" "" "" "(D|ea)" -"EA" "" "" "(D|EA)" -"Ea" "" "" "(D|Ea)" -"eA" "" "" "(D|eA)" - -"aji" "" "" "D" -"ajI" "" "" "D" -"aje" "" "" "D" -"ajE" "" "" "D" - -"Aji" "" "" "D" -"AjI" "" "" "D" -"Aje" "" "" "D" -"AjE" "" "" "D" - -"oji" "" "" "D" -"ojI" "" "" "D" -"oje" "" "" "D" -"ojE" "" "" "D" - -"Oji" "" "" "D" -"OjI" "" "" "D" -"Oje" "" "" "D" -"OjE" "" "" "D" - -"eji" "" "" "D" -"ejI" "" "" "D" -"eje" "" "" "D" -"ejE" "" "" "D" - -"Eji" "" "" "D" -"EjI" "" "" "D" -"Eje" "" "" "D" -"EjE" "" "" "D" - -"uji" "" "" "D" -"ujI" "" "" "D" -"uje" "" "" "D" -"ujE" "" "" "D" - -"Uji" "" "" "D" -"UjI" "" "" "D" -"Uje" "" "" "D" -"UjE" "" "" "D" - -"iji" "" "" "D" -"ijI" "" "" "D" -"ije" "" "" "D" -"ijE" "" "" "D" - -"Iji" "" "" "D" -"IjI" "" "" "D" -"Ije" "" "" "D" -"IjE" "" "" "D" - -"aja" "" "" "D" -"ajA" "" "" "D" -"ajo" "" "" "D" -"ajO" "" "" "D" -"aju" "" "" "D" -"ajU" "" "" "D" - -"Aja" "" "" "D" -"AjA" "" "" "D" -"Ajo" "" "" "D" -"AjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"oja" "" "" "D" -"ojA" "" "" "D" -"ojo" "" "" "D" -"ojO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Oja" "" "" "D" -"OjA" "" "" "D" -"Ojo" "" "" "D" -"OjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"eja" "" "" "D" -"ejA" "" "" "D" -"ejo" "" "" "D" -"ejO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Eja" "" "" "D" -"EjA" "" "" "D" -"Ejo" "" "" "D" -"EjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"uja" "" "" "D" -"ujA" "" "" "D" -"ujo" "" "" "D" -"ujO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Uja" "" "" "D" -"UjA" "" "" "D" -"Ujo" "" "" "D" -"UjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"ija" "" "" "D" -"ijA" "" "" "D" -"ijo" "" "" "D" -"ijO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Ija" "" "" "D" -"IjA" "" "" "D" -"Ijo" "" "" "D" -"IjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"j" "" "" "i" - -// lander = lender = länder -"lYndEr" "" "$" "lYnder" -"lander" "" "$" "lYnder" -"lAndEr" "" "$" "lYnder" -"lAnder" "" "$" "lYnder" -"landEr" "" "$" "lYnder" -"lender" "" "$" "lYnder" -"lEndEr" "" "$" "lYnder" -"lendEr" "" "$" "lYnder" -"lEnder" "" "$" "lYnder" - -// burg = berg -"bUrk" "" "$" "(burk|berk)" -"burk" "" "$" "(burk|berk)" -"bUrg" "" "$" "(burk|berk)" -"burg" "" "$" "(burk|berk)" - -// CONSONANTS {z & Z; s & S} are approximately interchangeable -"s" "" "[rmnl]" "z" -"S" "" "[rmnl]" "z" -"s" "[rmnl]" "" "z" -"S" "[rmnl]" "" "z" - -"dS" "" "$" "S" -"dZ" "" "$" "S" -"Z" "" "$" "S" -"S" "" "$" "(S|s)" -"z" "" "$" "(S|s)" - -"S" "" "" "s" -"dZ" "" "" "z" -"Z" "" "" "z" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_cyrillic.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_cyrillic.txt deleted file mode 100644 index 42101731..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_cyrillic.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_approx_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_english.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_english.txt deleted file mode 100644 index 84d8174e..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_english.txt +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// VOWELS -"I" "" "[^aEIeiou]e" "(Q|i|D)" // like in "five" -"I" "" "$" "i" -"I" "[aEIeiou]" "" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "" "" "(i|Q)" - -"lE" "[bdfgkmnprsStvzZ]" "" "(il|li|lY)" // Applebaum < Appelbaum - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"E" "D[^aeiEIou]" "" "(i|)" // Weinberg, Shaneberg (shaneberg/shejneberg) --> shejnberg -"e" "D[^aeiEIou]" "" "(i|)" - -"e" "" "" "i" -"E" "" "[fklmnprsStv]$" "i" -"E" "" "ts$" "i" -"E" "[DaoiEuQY]" "" "i" -"E" "" "[aoQY]" "i" -"E" "" "" "(Y|i)" - -"a" "" "" "(a|o)" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_french.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_french.txt deleted file mode 100644 index fa8ee995..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_french.txt +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"I" "" "$" "i" -"I" "[aEIeiou]" "" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "" "" "(i|Q)" - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"a" "" "" "(a|o)" -"e" "" "" "i" - -"E" "" "[fklmnprsStv]$" "i" -"E" "" "ts$" "i" -"E" "[aoiuQ]" "" "i" -"E" "" "[aoQ]" "i" -"E" "" "" "(Y|i)" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_german.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_german.txt deleted file mode 100644 index 78cc0f83..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_german.txt +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"I" "" "$" "i" -"I" "[aeiAEIOUouQY]" "" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "" "" "(Q|i)" - -"AU" "" "" "(D|a|u)" -"aU" "" "" "(D|a|u)" -"Au" "" "" "(D|a|u)" -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"OU" "" "" "(D|o|u)" -"oU" "" "" "(D|o|u)" -"Ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"Ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"Oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" -"Ui" "" "" "(D|u|i)" - -"e" "" "" "i" - -"E" "" "[fklmnprst]$" "i" -"E" "" "ts$" "i" -"E" "" "$" "i" -"E" "[DaoAOUiuQY]" "" "i" -"E" "" "[aoAOQY]" "i" -"E" "" "" "(Y|i)" - -"O" "" "$" "o" -"O" "" "[fklmnprst]$" "o" -"O" "" "ts$" "o" -"O" "[aoAOUeiuQY]" "" "o" -"O" "" "" "(o|Y)" - -"a" "" "" "(a|o)" - -"A" "" "$" "(a|o)" -"A" "" "[fklmnprst]$" "(a|o)" -"A" "" "ts$" "(a|o)" -"A" "[aoeOUiuQY]" "" "(a|o)" -"A" "" "" "(a|o|Y)" - -"U" "" "$" "u" -"U" "[DaoiuUQY]" "" "u" -"U" "" "[^k]$" "u" -"Uk" "[lr]" "$" "(uk|Qk)" -"Uk" "" "$" "uk" -"sUts" "" "$" "(suts|sQts)" -"Uts" "" "$" "uts" -"U" "" "" "(u|Q)" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_hebrew.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_hebrew.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_hungarian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_hungarian.txt deleted file mode 100644 index bb950fb0..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_hungarian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_polish.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_polish.txt deleted file mode 100644 index 7f49817f..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_polish.txt +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"aiB" "" "[bp]" "(D|Dm)" -"oiB" "" "[bp]" "(D|Dm)" -"uiB" "" "[bp]" "(D|Dm)" -"eiB" "" "[bp]" "(D|Dm)" -"EiB" "" "[bp]" "(D|Dm)" -"iiB" "" "[bp]" "(D|Dm)" -"IiB" "" "[bp]" "(D|Dm)" - -"aiB" "" "[dgkstvz]" "(D|Dn)" -"oiB" "" "[dgkstvz]" "(D|Dn)" -"uiB" "" "[dgkstvz]" "(D|Dn)" -"eiB" "" "[dgkstvz]" "(D|Dn)" -"EiB" "" "[dgkstvz]" "(D|Dn)" -"iiB" "" "[dgkstvz]" "(D|Dn)" -"IiB" "" "[dgkstvz]" "(D|Dn)" - -"B" "" "[bp]" "(o|om|im)" -"B" "" "[dgkstvz]" "(o|on|in)" -"B" "" "" "o" - -"aiF" "" "[bp]" "(D|Dm)" -"oiF" "" "[bp]" "(D|Dm)" -"uiF" "" "[bp]" "(D|Dm)" -"eiF" "" "[bp]" "(D|Dm)" -"EiF" "" "[bp]" "(D|Dm)" -"iiF" "" "[bp]" "(D|Dm)" -"IiF" "" "[bp]" "(D|Dm)" - -"aiF" "" "[dgkstvz]" "(D|Dn)" -"oiF" "" "[dgkstvz]" "(D|Dn)" -"uiF" "" "[dgkstvz]" "(D|Dn)" -"eiF" "" "[dgkstvz]" "(D|Dn)" -"EiF" "" "[dgkstvz]" "(D|Dn)" -"iiF" "" "[dgkstvz]" "(D|Dn)" -"IiF" "" "[dgkstvz]" "(D|Dn)" - -"F" "" "[bp]" "(i|im|om)" -"F" "" "[dgkstvz]" "(i|in|on)" -"F" "" "" "i" - -"P" "" "" "(o|u)" - -"I" "" "$" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "[aeiAEBFIou]" "" "i" -"I" "" "" "(i|Q)" - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"a" "" "" "(a|o)" -"e" "" "" "i" - -"E" "" "[fklmnprst]$" "i" -"E" "" "ts$" "i" -"E" "" "$" "i" -"E" "[DaoiuQ]" "" "i" -"E" "" "[aoQ]" "i" -"E" "" "" "(Y|i)" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_romanian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_romanian.txt deleted file mode 100644 index 295debf8..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_romanian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_approx_polish \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_russian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_russian.txt deleted file mode 100644 index 46d6a8c9..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_russian.txt +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"I" "" "$" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "[aeiEIou]" "" "i" -"I" "" "" "(i|Q)" - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"om" "" "[bp]" "(om|im)" -"on" "" "[dgkstvz]" "(on|in)" -"em" "" "[bp]" "(im|om)" -"en" "" "[dgkstvz]" "(in|on)" -"Em" "" "[bp]" "(im|Ym|om)" -"En" "" "[dgkstvz]" "(in|Yn|on)" - -"a" "" "" "(a|o)" -"e" "" "" "i" - -"E" "" "[fklmnprsStv]$" "i" -"E" "" "ts$" "i" -"E" "[DaoiuQ]" "" "i" -"E" "" "[aoQ]" "i" -"E" "" "" "(Y|i)" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_approx_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/ash_approx_spanish.txt deleted file mode 100644 index bb950fb0..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_approx_spanish.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_any.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_any.txt deleted file mode 100644 index e6abc2d2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_any.txt +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// These rules are applied after the word has been transliterated into the phonetic alphabet -// These rules are substitution rules within the phonetic character space rather than mapping rules - -// format of each entry rule in the table -// (pattern, left context, right context, phonetic) -// where -// pattern is a sequence of characters that might appear after a word has been transliterated into phonetic alphabet -// left context is the context that precedes the pattern -// right context is the context that follows the pattern -// phonetic is the result that this rule generates -// -// note that both left context and right context can be regular expressions -// ex: left context of ^ would mean start of word -// right context of $ means end of word -// -// match occurs if all of the following are true: -// portion of word matches the pattern -// that portion satisfies the context - -// A, E, I, O, P, U should create variants, but a, e, i, o, u should not create any new variant -// Q = ü ; Y = ä = ö - - -"A" "" "" "a" -"B" "" "" "a" - -"E" "" "" "e" -"F" "" "" "e" - -"I" "" "" "i" -"O" "" "" "o" -"P" "" "" "o" -"U" "" "" "u" - -"J" "" "" "l" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_approx_common.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_approx_common.txt deleted file mode 100644 index 0a8d1218..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_approx_common.txt +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Ashkenazic - -"h" "" "$" "" -// VOICED - UNVOICED CONSONANTS -"b" "" "[fktSs]" "p" -"b" "" "p" "" -"b" "" "$" "p" -"p" "" "[gdZz]" "b" -"p" "" "b" "" - -"v" "" "[pktSs]" "f" -"v" "" "f" "" -"v" "" "$" "f" -"f" "" "[bgdZz]" "v" -"f" "" "v" "" - -"g" "" "[pftSs]" "k" -"g" "" "k" "" -"g" "" "$" "k" -"k" "" "[bdZz]" "g" -"k" "" "g" "" - -"d" "" "[pfkSs]" "t" -"d" "" "t" "" -"d" "" "$" "t" -"t" "" "[bgZz]" "d" -"t" "" "d" "" - -"s" "" "dZ" "" -"s" "" "tS" "" - -"z" "" "[pfkSt]" "s" -"z" "" "[sSzZ]" "" -"s" "" "[sSzZ]" "" -"Z" "" "[sSzZ]" "" -"S" "" "[sSzZ]" "" - -// SIMPLIFICATION OF CONSONANT CLUSTERS - -"jnm" "" "" "jm" - -// DOUBLE --> SINGLE - -"ji" "^" "" "i" -"jI" "^" "" "I" - -"a" "" "[aAB]" "" -"a" "[AB]" "" "" -"A" "" "A" "" -"B" "" "B" "" - -"b" "" "b" "" -"d" "" "d" "" -"f" "" "f" "" -"g" "" "g" "" -"k" "" "k" "" -"l" "" "l" "" -"m" "" "m" "" -"n" "" "n" "" -"p" "" "p" "" -"r" "" "r" "" -"t" "" "t" "" -"v" "" "v" "" -"z" "" "z" "" - \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_common.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_common.txt deleted file mode 100644 index 7e6ff953..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_common.txt +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_approx_common - -"H" "" "" "h" - -// VOICED - UNVOICED CONSONANTS - -"s" "[^t]" "[bgZd]" "z" -"Z" "" "[pfkst]" "S" -"Z" "" "$" "S" -"S" "" "[bgzd]" "Z" -"z" "" "$" "s" - -"ji" "[aAoOeEiIuU]" "" "j" -"jI" "[aAoOeEiIuU]" "" "j" -"je" "[aAoOeEiIuU]" "" "j" -"jE" "[aAoOeEiIuU]" "" "j" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_cyrillic.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_cyrillic.txt deleted file mode 100644 index d309ead2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_cyrillic.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_english.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_english.txt deleted file mode 100644 index d309ead2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_english.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_french.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_french.txt deleted file mode 100644 index d309ead2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_french.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_german.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_german.txt deleted file mode 100644 index a60f8cc5..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_german.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_any \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_hebrew.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_hebrew.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_hungarian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_hungarian.txt deleted file mode 100644 index d309ead2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_hungarian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_polish.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_polish.txt deleted file mode 100644 index ba32ce7e..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_polish.txt +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"B" "" "" "a" -"F" "" "" "e" -"P" "" "" "o" - -"E" "" "" "e" -"I" "" "" "i" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_romanian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_romanian.txt deleted file mode 100644 index d309ead2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_romanian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_russian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_russian.txt deleted file mode 100644 index 0a016e0d..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_russian.txt +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"E" "" "" "e" -"I" "" "" "i" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_exact_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/ash_exact_spanish.txt deleted file mode 100644 index d309ead2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_exact_spanish.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_hebrew_common.txt b/target/classes/org/apache/commons/codec/language/bm/ash_hebrew_common.txt deleted file mode 100644 index 08f43b38..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_hebrew_common.txt +++ /dev/null @@ -1,123 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include ash_exact_approx_common - -"ts" "" "" "C" // for not confusion Gutes [=guts] and Guts [=guc] -"tS" "" "" "C" // same reason -"S" "" "" "s" -"p" "" "" "f" -"b" "^" "" "b" -"b" "" "" "(b|v)" - -"J" "" "" "l" -"ja" "" "" "i" -"jA" "" "" "i" -"jB" "" "" "i" -"je" "" "" "i" -"jE" "" "" "i" -"jF" "" "" "i" -"aj" "" "" "i" -"Aj" "" "" "i" -"Bj" "" "" "i" -"Fj" "" "" "i" -"I" "" "" "i" -"Q" "" "" "i" -"j" "" "" "i" - -"a" "^" "" "1" -"A" "^" "" "1" -"B" "^" "" "1" -"e" "^" "" "1" -"E" "^" "" "1" -"F" "^" "" "1" -"Y" "^" "" "1" - -"a" "" "$" "1" -"A" "" "$" "1" -"B" "" "$" "1" -"e" "" "$" "1" -"E" "" "$" "1" -"F" "" "$" "1" -"Y" "" "$" "1" - -"a" "" "" "" -"A" "" "" "" -"B" "" "" "" -"e" "" "" "" -"E" "" "" "" -"F" "" "" "" -"Y" "" "" "" - -"oj" "^" "" "(u|vi)" -"Oj" "^" "" "(u|vi)" -"uj" "^" "" "(u|vi)" -"Uj" "^" "" "(u|vi)" - -"oj" "" "" "u" -"Oj" "" "" "u" -"uj" "" "" "u" -"Uj" "" "" "u" - -"ou" "^" "" "(u|v|1)" -"o" "^" "" "(u|v|1)" -"O" "^" "" "(u|v|1)" -"P" "^" "" "(u|v|1)" -"U" "^" "" "(u|v|1)" -"u" "^" "" "(u|v|1)" - -"o" "" "$" "(u|1)" -"O" "" "$" "(u|1)" -"P" "" "$" "(u|1)" -"u" "" "$" "(u|1)" -"U" "" "$" "(u|1)" - -"ou" "" "" "u" -"o" "" "" "u" -"O" "" "" "u" -"P" "" "" "u" -"U" "" "" "u" - -"VV" "" "" "u" // alef/ayin + vov from ruleshebrew -"V" "" "" "v" // tsvey-vov from ruleshebrew;; only Ashkenazic -"L" "^" "" "1" // alef/ayin from ruleshebrew -"L" "" "$" "1" // alef/ayin from ruleshebrew -"L" "" "" " " // alef/ayin from ruleshebrew -"WW" "^" "" "(vi|u)" // vav-yod from ruleshebrew -"WW" "" "" "u" // vav-yod from ruleshebrew -"W" "^" "" "(u|v)" // vav from ruleshebrew -"W" "" "" "u" // vav from ruleshebrew - - //"g" "" "" "(g|Z)" - //"z" "" "" "(z|Z)" - //"d" "" "" "(d|dZ)" - -"TB" "^" "" "t" // tav from ruleshebrew; only Ashkenazic -"TB" "" "$" "s" // tav from ruleshebrew; only Ashkenazic -"TB" "" "" "(t|s)" // tav from ruleshebrew; only Ashkenazic -"T" "" "" "t" // tet from ruleshebrew - - //"k" "" "" "(k|x)" - //"x" "" "" "(k|x)" -"K" "" "" "k" // kof and initial kaf from ruleshebrew -"X" "" "" "x" // khet and final kaf from ruleshebrew - -"H" "^" "" "(x|1)" -"H" "" "$" "(x|1)" -"H" "" "" "(x|)" -"h" "^" "" "1" -"h" "" "" "" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_lang.txt b/target/classes/org/apache/commons/codec/language/bm/ash_lang.txt deleted file mode 100644 index 59b802fb..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_lang.txt +++ /dev/null @@ -1,206 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// ASHKENAZIC - -// 1. following are rules to accept the language -// 1.1 Special letter combinations -zh polish+russian+german+english true -eau french true -[aoeiuäöü]h german true -^vogel german, true -vogel$ german true -witz german true -tz$ german+russian+english true -^tz russian+english true -güe spanish true -güi spanish true -ghe romanian true -ghi romanian true -vici$ romanian true -schi$ romanian true -chsch german true -tsch german true -ssch german true -sch$ german+russian true -^sch german+russian true -^rz polish true -rz$ polish+german true -[^aoeiuäöü]rz polish true -rz[^aoeiuäöü] polish true -cki$ polish true -ska$ polish true -cka$ polish true -ue german+russian true -ae german+russian+english true -oe german+french+russian+english true -th$ german true -^th german true -th[^aoeiu] german true -mann german true -cz polish true -cy polish true -niew polish true -stein german true -heim$ german true -heimer$ german true -ii$ russian true -iy$ russian true -yy$ russian true -yi$ russian true -yj$ russian true -ij$ russian true -gaus$ russian true -gauz$ russian true -gauz$ russian true -goltz$ russian true -gol'tz$ russian true -golts$ russian true -gol'ts$ russian true -^goltz russian true -^gol'tz russian true -^golts russian true -^gol'ts russian true -gendler$ russian true -gejmer$ russian true -gejm$ russian true -geimer$ russian true -geim$ russian true -geymer russian true -geym$ russian true -gof$ russian true -thal german true -zweig german true -ck$ german+english true -c$ polish+romanian+hungarian true -sz polish+hungarian true -gue spanish+french true -gui spanish+french true -guy french true -cs$ hungarian true -^cs hungarian true -dzs hungarian true -zs$ hungarian true -^zs hungarian true -^wl polish true -^wr polish+english+german true - -gy$ hungarian true -gy[aeou] hungarian true -gy hungarian+russian true -ly hungarian+russian+polish true -ny hungarian+russian+polish true -ty hungarian+russian+polish true - -// 1.2 special characters -â romanian+french true -ă romanian true -à french true -ä german true -á hungarian+spanish true -ą polish true -ć polish true -ç french true -ę polish true -é french+hungarian+spanish true -è french true -ê french true -í hungarian+spanish true -î romanian+french true -ł polish true -ń polish true -ñ spanish true -ó polish+hungarian+spanish true -ö german+hungarian true -õ hungarian true -ş romanian true -ś polish true -ţ romanian true -ü german+hungarian true -ù french true -ű hungarian true -ú hungarian+spanish true -ź polish true -ż polish true - -ß german true - -// Every Cyrillic word has at least one Cyrillic vowel (аёеоиуыэюя) -а cyrillic true -ё cyrillic true -о cyrillic true -е cyrillic true -и cyrillic true -у cyrillic true -ы cyrillic true -э cyrillic true -ю cyrillic true -я cyrillic true - -// Hebrew -א hebrew true -ב hebrew true -ג ebrew true -ד hebrew true -ה hebrew true -ו hebrew true -ז hebrew true -ח hebrew true -ט hebrew true -י hebrew true -כ hebrew true -ל hebrew true -מ hebrew true -נ hebrew true -ס hebrew true -ע hebrew true -פ hebrew true -צ hebrew true -ק hebrew true -ר hebrew true -ש hebrew true -ת hebrew true - - -// 2. following are rules to reject the language -// Every Latin character word has at least one Latin vowel -a cyrillic+hebrew false -o cyrillic+hebrew false -e cyrillic+hebrew false -i cyrillic+hebrew false -y cyrillic+hebrew+romanian false -u cyrillic+hebrew false - -v[^aoeiuäüö] german false // in german "v" can be found before a vowel only -y[^aoeiu] german false // in german "y" usually appears only in the last position; sometimes before a vowel -c[^aohk] german false -dzi german+english+french false -ou german false -aj german+english+french false -ej german+english+french false -oj german+english+french false -uj german+english+french false -k romanian false -v polish false -ky polish false -eu russian+polish false -w french+romanian+spanish+hungarian+russian false -kie french+spanish false -gie french+romanian+spanish false -q hungarian+polish+russian+romanian false -sch hungarian+polish+french+spanish false -^h russian false diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_languages.txt b/target/classes/org/apache/commons/codec/language/bm/ash_languages.txt deleted file mode 100644 index 8c84c51a..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_languages.txt +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -any -cyrillic -english -french -german -hebrew -hungarian -polish -romanian -russian -spanish diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_any.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_any.txt deleted file mode 100644 index fd973115..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_any.txt +++ /dev/null @@ -1,332 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -//ASHKENAZIC - -// CONVERTING FEMININE TO MASCULINE -"yna" "" "$" "(in[russian]|ina)" -"ina" "" "$" "(in[russian]|ina)" -"liova" "" "$" "(lof[russian]|lef[russian]|lova)" -"lova" "" "$" "(lof[russian]|lef[russian]|lova)" -"ova" "" "$" "(of[russian]|ova)" -"eva" "" "$" "(ef[russian]|eva)" -"aia" "" "$" "(aja|i[russian])" -"aja" "" "$" "(aja|i[russian])" -"aya" "" "$" "(aja|i[russian])" - -"lowa" "" "$" "(lova|lof[polish]|l[polish]|el[polish])" -"kowa" "" "$" "(kova|kof[polish]|k[polish]|ek[polish])" -"owa" "" "$" "(ova|of[polish]|)" -"lowna" "" "$" "(lovna|levna|l[polish]|el[polish])" -"kowna" "" "$" "(kovna|k[polish]|ek[polish])" -"owna" "" "$" "(ovna|[polish])" -"lówna" "" "$" "(l|el[polish])" // polish -"kówna" "" "$" "(k|ek[polish])" // polish -"ówna" "" "$" "" // polish - -"a" "" "$" "(a|i[polish])" - -// CONSONANTS (integrated: German, Polish, Russian, Romanian and English) - -"rh" "^" "" "r" -"ssch" "" "" "S" -"chsch" "" "" "xS" -"tsch" "" "" "tS" - -"sch" "" "[ei]" "(sk[romanian]|S|StS[russian])" // german -"sch" "" "" "(S|StS[russian])" // german - -"ssh" "" "" "S" - -"sh" "" "[äöü]" "sh" // german -"sh" "" "[aeiou]" "(S[russian+english]|sh)" -"sh" "" "" "S" // russian+english - -"kh" "" "" "(x[russian+english]|kh)" - -"chs" "" "" "(ks[german]|xs|tSs[russian+english])" - - // French "ch" is currently disabled - //array("ch" "" "[ei]" "(x|tS|k[romanian]|S[french])" - //array("ch" "" "" "(x|tS[russian+english]|S[french])" - -"ch" "" "[ei]" "(x|k[romanian]|tS[russian+english])" -"ch" "" "" "(x|tS[russian+english])" - -"ck" "" "" "(k|tsk[polish])" - -"czy" "" "" "tSi" -"cze" "" "[bcdgkpstwzż]" "(tSe|tSF)" -"ciewicz" "" "" "(tsevitS|tSevitS)" -"siewicz" "" "" "(sevitS|SevitS)" -"ziewicz" "" "" "(zevitS|ZevitS)" -"riewicz" "" "" "rjevitS" -"diewicz" "" "" "djevitS" -"tiewicz" "" "" "tjevitS" -"iewicz" "" "" "evitS" -"ewicz" "" "" "evitS" -"owicz" "" "" "ovitS" -"icz" "" "" "itS" -"cz" "" "" "tS" // Polish - -"cia" "" "[bcdgkpstwzż]" "(tSB[polish]|tsB)" -"cia" "" "" "(tSa[polish]|tsa)" -"cią" "" "[bp]" "(tSom[polish]|tsom)" -"cią" "" "" "(tSon[polish]|tson)" -"cię" "" "[bp]" "(tSem[polish]|tsem)" -"cię" "" "" "(tSen[polish]|tsen)" -"cie" "" "[bcdgkpstwzż]" "(tSF[polish]|tsF)" -"cie" "" "" "(tSe[polish]|tse)" -"cio" "" "" "(tSo[polish]|tso)" -"ciu" "" "" "(tSu[polish]|tsu)" - -"ci" "" "$" "(tsi[polish]|tSi[polish+romanian]|tS[romanian]|si)" -"ci" "" "" "(tsi[polish]|tSi[polish+romanian]|si)" -"ce" "" "[bcdgkpstwzż]" "(tsF[polish]|tSe[polish+romanian]|se)" -"ce" "" "" "(tSe[polish+romanian]|tse[polish]|se)" -"cy" "" "" "(si|tsi[polish])" - -"ssz" "" "" "S" // Polish -"sz" "" "" "S" // Polish; actually could also be Hungarian /s/, disabled here - -"ssp" "" "" "(Sp[german]|sp)" -"sp" "" "" "(Sp[german]|sp)" -"sst" "" "" "(St[german]|st)" -"st" "" "" "(St[german]|st)" -"ss" "" "" "s" - -"sia" "" "[bcdgkpstwzż]" "(SB[polish]|sB[polish]|sja)" -"sia" "" "" "(Sa[polish]|sja)" -"sią" "" "[bp]" "(Som[polish]|som)" -"sią" "" "" "(Son[polish]|son)" -"się" "" "[bp]" "(Sem[polish]|sem)" -"się" "" "" "(Sen[polish]|sen)" -"sie" "" "[bcdgkpstwzż]" "(SF[polish]|sF|zi[german])" -"sie" "" "" "(se|Se[polish]|zi[german])" -"sio" "" "" "(So[polish]|so)" -"siu" "" "" "(Su[polish]|sju)" -"si" "" "" "(Si[polish]|si|zi[german])" -"s" "" "[aeiouäöë]" "(s|z[german])" - -"gue" "" "" "ge" -"gui" "" "" "gi" -"guy" "" "" "gi" -"gh" "" "[ei]" "(g[romanian]|gh)" - -"gauz" "" "$" "haus" -"gaus" "" "$" "haus" -"gol'ts" "" "$" "holts" -"golts" "" "$" "holts" -"gol'tz" "" "$" "holts" -"goltz" "" "" "holts" -"gol'ts" "^" "" "holts" -"golts" "^" "" "holts" -"gol'tz" "^" "" "holts" -"goltz" "^" "" "holts" -"gendler" "" "$" "hendler" -"gejmer" "" "$" "hajmer" -"gejm" "" "$" "hajm" -"geymer" "" "$" "hajmer" -"geym" "" "$" "hajm" -"geimer" "" "$" "hajmer" -"geim" "" "$" "hajm" -"gof" "" "$" "hof" - -"ger" "" "$" "ger" -"gen" "" "$" "gen" -"gin" "" "$" "gin" - -"gie" "" "$" "(ge|gi[german]|ji[french])" -"gie" "" "" "ge" -"ge" "[yaeiou]" "" "(gE|xe[spanish]|dZe[english+romanian])" -"gi" "[yaeiou]" "" "(gI|xi[spanish]|dZi[english+romanian])" -"ge" "" "" "(gE|dZe[english+romanian]|hE[russian]|xe[spanish])" -"gi" "" "" "(gI|dZi[english+romanian]|hI[russian]|xi[spanish])" -"gy" "" "[aeouáéóúüöőű]" "(gi|dj[hungarian])" -"gy" "" "" "(gi|d[hungarian])" -"g" "[jyaeiou]" "[aouyei]" "g" -"g" "" "[aouei]" "(g|h[russian])" - -"ej" "" "" "(aj|eZ[french+romanian]|ex[spanish])" -"ej" "" "" "aj" - -"ly" "" "[au]" "l" -"li" "" "[au]" "l" -"lj" "" "[au]" "l" -"lio" "" "" "(lo|le[russian])" -"lyo" "" "" "(lo|le[russian])" -"ll" "" "" "(l|J[spanish])" - -"j" "" "[aoeiuy]" "(j|dZ[english]|x[spanish]|Z[french+romanian])" -"j" "" "" "(j|x[spanish])" - -"pf" "" "" "(pf|p|f)" -"ph" "" "" "(ph|f)" - -"qu" "" "" "(kv[german]|k)" - -"rze" "t" "" "(Se[polish]|re)" // polish -"rze" "" "" "(rze|rtsE[german]|Ze[polish]|re[polish]|rZe[polish])" -"rzy" "t" "" "(Si[polish]|ri)" // polish -"rzy" "" "" "(Zi[polish]|ri[polish]|rZi)" -"rz" "t" "" "(S[polish]|r)" // polish -"rz" "" "" "(rz|rts[german]|Z[polish]|r[polish]|rZ[polish])" // polish - -"tz" "" "$" "(ts|tS[english+german])" -"tz" "^" "" "(ts|tS[english+german])" -"tz" "" "" "(ts[english+german+russian]|tz)" - -"zh" "" "" "(Z|zh[polish]|tsh[german])" - -"zia" "" "[bcdgkpstwzż]" "(ZB[polish]|zB[polish]|zja)" -"zia" "" "" "(Za[polish]|zja)" -"zią" "" "[bp]" "(Zom[polish]|zom)" -"zią" "" "" "(Zon[polish]|zon)" -"zię" "" "[bp]" "(Zem[polish]|zem)" -"zię" "" "" "(Zen[polish]|zen)" -"zie" "" "[bcdgkpstwzż]" "(ZF[polish]|zF[polish]|ze|tsi[german])" -"zie" "" "" "(ze|Ze[polish]|tsi[german])" -"zio" "" "" "(Zo[polish]|zo)" -"ziu" "" "" "(Zu[polish]|zju)" -"zi" "" "" "(Zi[polish]|zi|tsi[german])" - -"thal" "" "$" "tal" -"th" "^" "" "t" -"th" "" "[aeiou]" "(t[german]|th)" -"th" "" "" "t" // german -"vogel" "" "" "(vogel|fogel[german])" -"v" "^" "" "(v|f[german])" - -"h" "[aeiouyäöü]" "" "" //german -"h" "" "" "(h|x[romanian+polish])" -"h" "^" "" "(h|H[english+german])" // H can be exact "h" or approximate "kh" - - // VOWELS -"yi" "^" "" "i" - - //"e" "" "$" "(e|)" // French & English rule disabled except for final -ine -"e" "in" "$" "(e|[french])" - -"ii" "" "$" "i" // russian -"iy" "" "$" "i" // russian -"yy" "" "$" "i" // russian -"yi" "" "$" "i" // russian -"yj" "" "$" "i" // russian -"ij" "" "$" "i" // russian - -"aue" "" "" "aue" -"oue" "" "" "oue" - -"au" "" "" "(au|o[french])" -"ou" "" "" "(ou|u[french])" - -"ue" "" "" "(Q|uje[russian])" -"ae" "" "" "(Y[german]|aje[russian]|ae)" -"oe" "" "" "(Y[german]|oje[russian]|oe)" -"ee" "" "" "(i[english]|aje[russian]|e)" - -"ei" "" "" "aj" -"ey" "" "" "aj" -"eu" "" "" "(aj[german]|oj[german]|eu)" - -"i" "[aou]" "" "j" -"y" "[aou]" "" "j" - -"ie" "" "[bcdgkpstwzż]" "(i[german]|e[polish]|ije[russian]|je)" -"ie" "" "" "(i[german]|e[polish]|ije[russian]|je)" -"ye" "" "" "(je|ije[russian])" - -"i" "" "[au]" "j" -"y" "" "[au]" "j" -"io" "" "" "(jo|e[russian])" -"yo" "" "" "(jo|e[russian])" - -"ea" "" "" "(ea|ja[romanian])" -"e" "^" "" "(e|je[russian])" -"oo" "" "" "(u[english]|o)" -"uu" "" "" "u" - -// LANGUAGE SPECIFIC CHARACTERS -"ć" "" "" "(tS[polish]|ts)" // polish -"ł" "" "" "l" // polish -"ń" "" "" "n" // polish -"ñ" "" "" "(n|nj[spanish])" -"ś" "" "" "(S[polish]|s)" // polish -"ş" "" "" "S" // romanian -"ţ" "" "" "ts" // romanian -"ż" "" "" "Z" // polish -"ź" "" "" "(Z[polish]|z)" // polish - -"où" "" "" "u" // french - -"ą" "" "[bp]" "om" // polish -"ą" "" "" "on" // polish -"ä" "" "" "(Y|e)" // german -"á" "" "" "a" // hungarian -"ă" "" "" "(e[romanian]|a)" //romanian -"à" "" "" "a" // french -"â" "" "" "a" //french+romanian -"é" "" "" "e" -"è" "" "" "e" // french -"ê" "" "" "e" // french -"ę" "" "[bp]" "em" // polish -"ę" "" "" "en" // polish -"í" "" "" "i" -"î" "" "" "i" -"ö" "" "" "Y" -"ő" "" "" "Y" // hungarian -"ó" "" "" "(u[polish]|o)" -"ű" "" "" "Q" -"ü" "" "" "Q" -"ú" "" "" "u" -"ű" "" "" "Q" // hungarian - -"ß" "" "" "s" // german -"'" "" "" "" -"\"" "" "" "" - -"a" "" "[bcdgkpstwzż]" "(A|B[polish])" -"e" "" "[bcdgkpstwzż]" "(E|F[polish])" -"o" "" "[bcćdgklłmnńrsśtwzźż]" "(O|P[polish])" - - // LATIN ALPHABET -"a" "" "" "A" -"b" "" "" "b" -"c" "" "" "(k|ts[polish])" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "O" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "U" -"v" "" "" "v" -"w" "" "" "v" // English disabled -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "(ts[german]|z)" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_cyrillic.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_cyrillic.txt deleted file mode 100644 index d2625877..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_cyrillic.txt +++ /dev/null @@ -1,100 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"ця" "" "" "tsa" -"цю" "" "" "tsu" -"циа" "" "" "tsa" -"цие" "" "" "tse" -"цио" "" "" "tso" -"циу" "" "" "tsu" -"сие" "" "" "se" -"сио" "" "" "so" -"зие" "" "" "ze" -"зио" "" "" "zo" - -"гауз" "" "$" "haus" -"гаус" "" "$" "haus" -"гольц" "" "$" "holts" -"геймер" "" "$" "hajmer" -"гейм" "" "$" "hajm" -"гоф" "" "$" "hof" -"гер" "" "$" "ger" -"ген" "" "$" "gen" -"гин" "" "$" "gin" -"г" "(й|ё|я|ю|ы|а|е|о|и|у)" "(а|е|о|и|у)" "g" -"г" "" "(а|е|о|и|у)" "(g|h)" - -"ля" "" "" "la" -"лю" "" "" "lu" -"лё" "" "" "(le|lo)" -"лио" "" "" "(le|lo)" -"ле" "" "" "(lE|lo)" - -"ийе" "" "" "je" -"ие" "" "" "je" -"ыйе" "" "" "je" -"ые" "" "" "je" -"ий" "" "(а|о|у)" "j" -"ый" "" "(а|о|у)" "j" - -"ий" "" "$" "i" -"ый" "" "$" "i" - -"ё" "" "" "(e|jo)" - -"ей" "^" "" "(jaj|aj)" -"е" "(а|е|о|у)" "" "je" -"е" "^" "" "je" -"эй" "" "" "aj" -"ей" "" "" "aj" - -"ауе" "" "" "aue" -"ауэ" "" "" "aue" - -"а" "" "" "a" -"б" "" "" "b" -"в" "" "" "v" -"г" "" "" "g" -"д" "" "" "d" -"е" "" "" "E" -"ж" "" "" "Z" -"з" "" "" "z" -"и" "" "" "I" -"й" "" "" "j" -"к" "" "" "k" -"л" "" "" "l" -"м" "" "" "m" -"н" "" "" "n" -"о" "" "" "o" -"п" "" "" "p" -"р" "" "" "r" -"с" "" "с" "" -"с" "" "" "s" -"т" "" "" "t" -"у" "" "" "u" -"ф" "" "" "f" -"х" "" "" "x" -"ц" "" "" "ts" -"ч" "" "" "tS" -"ш" "" "" "S" -"щ" "" "" "StS" -"ъ" "" "" "" -"ы" "" "" "I" -"ь" "" "" "" -"э" "" "" "E" -"ю" "" "" "ju" -"я" "" "" "ja" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_english.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_english.txt deleted file mode 100644 index f84e53f6..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_english.txt +++ /dev/null @@ -1,107 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// CONSONANTS -"tch" "" "" "tS" -"ch" "" "" "(tS|x)" -"ck" "" "" "k" -"cc" "" "[iey]" "ks" // success, accent -"c" "" "c" "" -"c" "" "[iey]" "s" // circle -"c" "" "" "k" // candy -"gh" "^" "" "g" // ghost -"gh" "" "" "(g|f|w)" // burgh | tough | bough -"gn" "" "" "(gn|n)" -"g" "" "[iey]" "(g|dZ)" // get, gem, giant, gigabyte -// "th" "" "" "(6|8|t)" -"th" "" "" "t" -"kh" "" "" "x" -"ph" "" "" "f" -"sch" "" "" "(S|sk)" -"sh" "" "" "S" -"who" "^" "" "hu" -"wh" "^" "" "w" - -"h" "" "$" "" // hard to find an example that isn't in a name -"h" "" "[^aeiou]" "" // hard to find an example that isn't in a name -"h" "^" "" "H" -"h" "" "" "h" - -"j" "" "" "dZ" -"kn" "^" "" "n" // knight -"mb" "" "$" "m" -"ng" "" "$" "(N|ng)" -"pn" "^" "" "(pn|n)" -"ps" "^" "" "(ps|s)" -"qu" "" "" "kw" -"q" "" "" "k" -"tia" "" "" "(So|Sa)" -"tio" "" "" "So" -"wr" "^" "" "r" -"w" "" "" "(w|v)" // the variant "v" is for spellings coming from German/Polish -"x" "^" "" "z" -"x" "" "" "ks" - -// VOWELS -"y" "^" "" "j" -"y" "^" "[aeiouy]" "j" -"yi" "^" "" "i" -"aue" "" "" "aue" -"oue" "" "" "(aue|oue)" -"ai" "" "" "(aj|e)" // rain | said -"ay" "" "" "aj" -"a" "" "[^aeiou]e" "aj" // plane (actually "ej") -"a" "" "" "(e|o|a)" // hat | call | part -"ei" "" "" "(aj|i)" // weigh | receive -"ey" "" "" "(aj|i)" // hey | barley -"ear" "" "" "ia" // tear -"ea" "" "" "(i|e)" // reason | treasure -"ee" "" "" "i" // between -"e" "" "[^aeiou]e" "i" // meter -"e" "" "$" "(|E)" // blame, badge -"e" "" "" "E" // bed -"ie" "" "" "i" // believe -"i" "" "[^aeiou]e" "aj" // five -"i" "" "" "I" // hit -- Morse disagrees, feels it should go to I -"oa" "" "" "ou" // toad -"oi" "" "" "oj" // join -"oo" "" "" "u" // food -"ou" "" "" "(u|ou)" // through | tough | could -"oy" "" "" "oj" // boy -"o" "" "[^aeiou]e" "ou" // rode -"o" "" "" "(o|a)" // hot -- Morse disagrees, feels it should go to 9 -"u" "" "[^aeiou]e" "(ju|u)" // cute | flute -"u" "" "r" "(e|u)" // turn -- Morse disagrees, feels it should go to E -"u" "" "" "(u|a)" // put -"y" "" "" "i" - -// TRIVIAL -"b" "" "" "b" -"d" "" "" "d" -"f" "" "" "f" -"g" "" "" "g" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"p" "" "" "p" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"v" "" "" "v" -"z" "" "" "z" - diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_french.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_french.txt deleted file mode 100644 index 668645f3..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_french.txt +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Ashkenazic - -// CONSONANTS -"kh" "" "" "x" // foreign -"ph" "" "" "f" - -"ç" "" "" "s" -"x" "" "" "ks" -"ch" "" "" "S" -"c" "" "[eiyéèê]" "s" -"c" "" "" "k" -"gn" "" "" "(n|gn)" -"g" "" "[eiy]" "Z" -"gue" "" "$" "k" -"gu" "" "[eiy]" "g" - //array("aill" "" "e" "aj" // non Jewish - //array("ll" "" "e" "(l|j)" // non Jewish -"que" "" "$" "k" -"qu" "" "" "k" -"q" "" "" "k" -"s" "[aeiouyéèê]" "[aeiouyéèê]" "z" -"h" "[bdgt]" "" "" // translit from Arabic -"h" "" "$" "" // foreign -"j" "" "" "Z" -"w" "" "" "v" -"ouh" "" "[aioe]" "(v|uh)" -"ou" "" "[aeio]" "v" -"uo" "" "" "(vo|o)" -"u" "" "[aeio]" "v" - -// VOWELS -"aue" "" "" "aue" -"eau" "" "" "o" - //array("au" "" "" "(o|au)" // non Jewish -"ai" "" "" "aj" // [e] is non Jewish -"ay" "" "" "aj" // [e] is non Jewish -"é" "" "" "e" -"ê" "" "" "e" -"è" "" "" "e" -"à" "" "" "a" -"â" "" "" "a" -"où" "" "" "u" -"ou" "" "" "u" -"oi" "" "" "oj" // [ua] is non Jewish -"ei" "" "" "aj" // [e] is non Jewish -"ey" "" "" "aj" // [e] non Jewish - //array("eu" "" "" "(e|o)" // non Jewish -"y" "[ou]" "" "j" -"e" "" "$" "(e|)" -"i" "" "[aou]" "j" -"y" "" "[aoeu]" "j" -"y" "" "" "i" - - // TRIVIAL -"a" "" "" "a" -"b" "" "" "b" -"d" "" "" "d" -"e" "" "" "E" // only Ashkenazic -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" // only Ashkenazic -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_german.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_german.txt deleted file mode 100644 index b650995c..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_german.txt +++ /dev/null @@ -1,128 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Ashkenazic - -// CONSONANTS -"ziu" "" "" "tsu" -"zia" "" "" "tsa" -"zio" "" "" "tso" - -"ssch" "" "" "S" -"chsch" "" "" "xS" -"ewitsch" "" "$" "evitS" -"owitsch" "" "$" "ovitS" -"evitsch" "" "$" "evitS" -"ovitsch" "" "$" "ovitS" -"witsch" "" "$" "vitS" -"vitsch" "" "$" "vitS" -"sch" "" "" "S" - -"chs" "" "" "ks" -"ch" "" "" "x" -"ck" "" "" "k" -"c" "" "[eiy]" "ts" - -"sp" "^" "" "Sp" -"st" "^" "" "St" -"ssp" "" "" "(Sp|sp)" -"sp" "" "" "(Sp|sp)" -"sst" "" "" "(St|st)" -"st" "" "" "(St|st)" -"pf" "" "" "(pf|p|f)" -"ph" "" "" "(ph|f)" -"qu" "" "" "kv" - -"ewitz" "" "$" "(evits|evitS)" -"ewiz" "" "$" "(evits|evitS)" -"evitz" "" "$" "(evits|evitS)" -"eviz" "" "$" "(evits|evitS)" -"owitz" "" "$" "(ovits|ovitS)" -"owiz" "" "$" "(ovits|ovitS)" -"ovitz" "" "$" "(ovits|ovitS)" -"oviz" "" "$" "(ovits|ovitS)" -"witz" "" "$" "(vits|vitS)" -"wiz" "" "$" "(vits|vitS)" -"vitz" "" "$" "(vits|vitS)" -"viz" "" "$" "(vits|vitS)" -"tz" "" "" "ts" - -"thal" "" "$" "tal" -"th" "^" "" "t" -"th" "" "[äöüaeiou]" "(t|th)" -"th" "" "" "t" -"rh" "^" "" "r" -"h" "[aeiouyäöü]" "" "" -"h" "^" "" "H" - -"ss" "" "" "s" -"s" "" "[äöüaeiouy]" "(z|s)" -"s" "[aeiouyäöüj]" "[aeiouyäöü]" "z" -"ß" "" "" "s" - - // VOWELS -"ij" "" "$" "i" -"aue" "" "" "aue" -"ue" "" "" "Q" -"ae" "" "" "Y" -"oe" "" "" "Y" -"ü" "" "" "Q" -"ä" "" "" "(Y|e)" -"ö" "" "" "Y" -"ei" "" "" "aj" -"ey" "" "" "aj" -"eu" "" "" "(aj|oj)" -"i" "[aou]" "" "j" -"y" "[aou]" "" "j" -"ie" "" "" "I" -"i" "" "[aou]" "j" -"y" "" "[aoeu]" "j" - - // FOREIGN LETTERs -"ñ" "" "" "n" -"ã" "" "" "a" -"ő" "" "" "o" -"ű" "" "" "u" -"ç" "" "" "s" - - // ALPHABET -"a" "" "" "A" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "O" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "U" -"v" "" "" "(f|v)" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "ts" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_hebrew.txt deleted file mode 100644 index 4c595038..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_hebrew.txt +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Ashkenazic - -"אי" "" "" "i" -"עי" "" "" "i" -"עו" "" "" "VV" -"או" "" "" "VV" - -"ג׳" "" "" "Z" -"ד׳" "" "" "dZ" - -"א" "" "" "L" -"ב" "" "" "b" -"ג" "" "" "g" -"ד" "" "" "d" - -"ה" "^" "" "1" -"ה" "" "$" "1" -"ה" "" "" "" - -"וו" "" "" "V" -"וי" "" "" "WW" -"ו" "" "" "W" -"ז" "" "" "z" -"ח" "" "" "X" -"ט" "" "" "T" -"יי" "" "" "i" -"י" "" "" "i" -"ך" "" "" "X" -"כ" "^" "" "K" -"כ" "" "" "k" -"ל" "" "" "l" -"ם" "" "" "m" -"מ" "" "" "m" -"ן" "" "" "n" -"נ" "" "" "n" -"ס" "" "" "s" -"ע" "" "" "L" -"ף" "" "" "f" -"פ" "" "" "f" -"ץ" "" "" "C" -"צ" "" "" "C" -"ק" "" "" "K" -"ר" "" "" "r" -"ש" "" "" "s" -"ת" "" "" "TB" // only Ashkenazic diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_hungarian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_hungarian.txt deleted file mode 100644 index 1e6f047c..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_hungarian.txt +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// ASHKENAZIC - -// CONSONANTS -"sz" "" "" "s" -"zs" "" "" "Z" -"cs" "" "" "tS" - -"ay" "" "" "(oj|aj)" -"ai" "" "" "(oj|aj)" -"aj" "" "" "(oj|aj)" - -"ei" "" "" "aj" // German element -"ey" "" "" "aj" // German element - -"y" "[áo]" "" "j" -"i" "[áo]" "" "j" -"ee" "" "" "(aj|e)" // actually ej -"ely" "" "" "(aj|eli)" // actually ej -"ly" "" "" "(j|li)" -"gy" "" "[aeouáéóúüöőű]" "dj" -"gy" "" "" "(d|gi)" -"ny" "" "[aeouáéóúüöőű]" "nj" -"ny" "" "" "(n|ni)" -"ty" "" "[aeouáéóúüöőű]" "tj" -"ty" "" "" "(t|ti)" - -"qu" "" "" "(ku|kv)" -"h" "" "$" "" - -// VOWELS -"á" "" "" "a" -"é" "" "" "e" -"í" "" "" "i" -"ó" "" "" "o" -"ö" "" "" "Y" -"ő" "" "" "Y" -"ú" "" "" "u" -"ü" "" "" "Q" -"ű" "" "" "Q" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "ts" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "(S|s)" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_polish.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_polish.txt deleted file mode 100644 index 59a87dd7..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_polish.txt +++ /dev/null @@ -1,185 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Ashkenazic - -// CONVERTING FEMININE TO MASCULINE -"ska" "" "$" "ski" -"cka" "" "$" "tski" -"lowa" "" "$" "(lova|lof|l|el)" -"kowa" "" "$" "(kova|kof|k|ek)" -"owa" "" "$" "(ova|of|)" -"lowna" "" "$" "(lovna|levna|l|el)" -"kowna" "" "$" "(kovna|k|ek)" -"owna" "" "$" "(ovna|)" -"lówna" "" "$" "(l|el)" -"kówna" "" "$" "(k|ek)" -"ówna" "" "$" "" -"a" "" "$" "(a|i)" - - // CONSONANTS -"czy" "" "" "tSi" -"cze" "" "[bcdgkpstwzż]" "(tSe|tSF)" -"ciewicz" "" "" "(tsevitS|tSevitS)" -"siewicz" "" "" "(sevitS|SevitS)" -"ziewicz" "" "" "(zevitS|ZevitS)" -"riewicz" "" "" "rjevitS" -"diewicz" "" "" "djevitS" -"tiewicz" "" "" "tjevitS" -"iewicz" "" "" "evitS" -"ewicz" "" "" "evitS" -"owicz" "" "" "ovitS" -"icz" "" "" "itS" -"cz" "" "" "tS" -"ch" "" "" "x" - -"cia" "" "[bcdgkpstwzż]" "(tSB|tsB)" -"cia" "" "" "(tSa|tsa)" -"cią" "" "[bp]" "(tSom|tsom)" -"cią" "" "" "(tSon|tson)" -"cię" "" "[bp]" "(tSem|tsem)" -"cię" "" "" "(tSen|tsen)" -"cie" "" "[bcdgkpstwzż]" "(tSF|tsF)" -"cie" "" "" "(tSe|tse)" -"cio" "" "" "(tSo|tso)" -"ciu" "" "" "(tSu|tsu)" -"ci" "" "" "(tSi|tsI)" -"ć" "" "" "(tS|ts)" - -"ssz" "" "" "S" -"sz" "" "" "S" -"sia" "" "[bcdgkpstwzż]" "(SB|sB|sja)" -"sia" "" "" "(Sa|sja)" -"sią" "" "[bp]" "(Som|som)" -"sią" "" "" "(Son|son)" -"się" "" "[bp]" "(Sem|sem)" -"się" "" "" "(Sen|sen)" -"sie" "" "[bcdgkpstwzż]" "(SF|sF|se)" -"sie" "" "" "(Se|se)" -"sio" "" "" "(So|so)" -"siu" "" "" "(Su|sju)" -"si" "" "" "(Si|sI)" -"ś" "" "" "(S|s)" - -"zia" "" "[bcdgkpstwzż]" "(ZB|zB|zja)" -"zia" "" "" "(Za|zja)" -"zią" "" "[bp]" "(Zom|zom)" -"zią" "" "" "(Zon|zon)" -"zię" "" "[bp]" "(Zem|zem)" -"zię" "" "" "(Zen|zen)" -"zie" "" "[bcdgkpstwzż]" "(ZF|zF)" -"zie" "" "" "(Ze|ze)" -"zio" "" "" "(Zo|zo)" -"ziu" "" "" "(Zu|zju)" -"zi" "" "" "(Zi|zI)" - -"że" "" "[bcdgkpstwzż]" "(Ze|ZF)" -"że" "" "[bcdgkpstwzż]" "(Ze|ZF|ze|zF)" -"że" "" "" "Ze" -"źe" "" "" "(Ze|ze)" -"ży" "" "" "Zi" -"źi" "" "" "(Zi|zi)" -"ż" "" "" "Z" -"ź" "" "" "(Z|z)" - -"rze" "t" "" "(Se|re)" -"rze" "" "" "(Ze|re|rZe)" -"rzy" "t" "" "(Si|ri)" -"rzy" "" "" "(Zi|ri|rZi)" -"rz" "t" "" "(S|r)" -"rz" "" "" "(Z|r|rZ)" - -"lio" "" "" "(lo|le)" -"ł" "" "" "l" -"ń" "" "" "n" -"qu" "" "" "k" -"s" "" "s" "" - - // VOWELS -"ó" "" "" "(u|o)" -"ą" "" "[bp]" "om" -"ę" "" "[bp]" "em" -"ą" "" "" "on" -"ę" "" "" "en" - -"ije" "" "" "je" -"yje" "" "" "je" -"iie" "" "" "je" -"yie" "" "" "je" -"iye" "" "" "je" -"yye" "" "" "je" - -"ij" "" "[aou]" "j" -"yj" "" "[aou]" "j" -"ii" "" "[aou]" "j" -"yi" "" "[aou]" "j" -"iy" "" "[aou]" "j" -"yy" "" "[aou]" "j" - -"rie" "" "" "rje" -"die" "" "" "dje" -"tie" "" "" "tje" -"ie" "" "[bcdgkpstwzż]" "F" -"ie" "" "" "e" - -"aue" "" "" "aue" -"au" "" "" "au" - -"ei" "" "" "aj" -"ey" "" "" "aj" -"ej" "" "" "aj" - -"ai" "" "" "aj" -"ay" "" "" "aj" -"aj" "" "" "aj" - -"i" "[ou]" "" "j" -"y" "[ou]" "" "j" -"i" "" "[aou]" "j" -"y" "" "[aeou]" "j" - -"a" "" "[bcdgkpstwzż]" "B" -"e" "" "[bcdgkpstwzż]" "(E|F)" -"o" "" "[bcćdgklłmnńrsśtwzźż]" "P" - -// ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "ts" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "(h|x)" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "I" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_romanian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_romanian.txt deleted file mode 100644 index f53e2625..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_romanian.txt +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"j" "" "" "Z" - -"ce" "" "" "tSe" -"ci" "" "" "(tSi|tS)" -"ch" "" "[ei]" "k" -"ch" "" "" "x" // foreign -"c" "" "" "k" - -"gi" "" "" "(dZi|dZ)" -"g" "" "[ei]" "dZ" -"gh" "" "" "g" - -"ei" "" "" "aj" -"i" "[aou]" "" "j" -"i" "" "[aeou]" "j" -"ţ" "" "" "ts" -"ş" "" "" "S" -"h" "" "" "(x|h)" - -"qu" "" "" "k" -"q" "" "" "k" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "i" - -"î" "" "" "i" -"ea" "" "" "ja" -"ă" "" "" "(e|a)" -"aue" "" "" "aue" - -"a" "" "" "a" -"b" "" "" "b" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"i" "" "" "I" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_russian.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_russian.txt deleted file mode 100644 index 817b2c39..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_russian.txt +++ /dev/null @@ -1,164 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -// CONVERTING FEMININE TO MASCULINE -"yna" "" "$" "(in|ina)" -"ina" "" "$" "(in|ina)" -"liova" "" "$" "(lof|lef)" -"lova" "" "$" "(lof|lef|lova)" -"ova" "" "$" "(of|ova)" -"eva" "" "$" "(ef|ova)" -"aia" "" "$" "(aja|i)" -"aja" "" "$" "(aja|i)" -"aya" "" "$" "(aja|i)" - - //SPECIFIC CONSONANTS -"tsya" "" "" "tsa" -"tsyu" "" "" "tsu" -"tsia" "" "" "tsa" -"tsie" "" "" "tse" -"tsio" "" "" "tso" -"tsye" "" "" "tse" -"tsyo" "" "" "tso" -"tsiu" "" "" "tsu" -"sie" "" "" "se" -"sio" "" "" "so" -"zie" "" "" "ze" -"zio" "" "" "zo" -"sye" "" "" "se" -"syo" "" "" "so" -"zye" "" "" "ze" -"zyo" "" "" "zo" - -"gauz" "" "$" "haus" -"gaus" "" "$" "haus" -"gol'ts" "" "$" "holts" -"golts" "" "$" "holts" -"gol'tz" "" "$" "holts" -"goltz" "" "$" "holts" -"gejmer" "" "$" "hajmer" -"gejm" "" "$" "hajm" -"geimer" "" "$" "hajmer" -"geim" "" "$" "hajm" -"geymer" "" "$" "hajmer" -"geym" "" "$" "hajm" -"gendler" "" "$" "hendler" -"gof" "" "$" "hof" -"gojf" "" "$" "hojf" -"goyf" "" "$" "hojf" -"goif" "" "$" "hojf" -"ger" "" "$" "ger" -"gen" "" "$" "gen" -"gin" "" "$" "gin" -"gg" "" "" "g" -"g" "[jaeoiuy]" "[aeoiu]" "g" -"g" "" "[aeoiu]" "(g|h)" - -"kh" "" "" "x" -"ch" "" "" "(tS|x)" // in DJSRE the rule is simpler:"ch" "" "" "tS"); -"sch" "" "" "(StS|S)" -"ssh" "" "" "S" -"sh" "" "" "S" -"zh" "" "" "Z" -"tz" "" "$" "ts" // not in DJSRE -"tz" "" "" "(ts|tz)" // not in DJSRE -"c" "" "[iey]" "s" // not in DJSRE -"c" "" "" "k" // not in DJSRE -"qu" "" "" "(kv|k)" // not in DJSRE -"q" "" "" "k" // not in DJSRE -"s" "" "s" "" - -"w" "" "" "v" // not in DJSRE -"x" "" "" "ks" // not in DJSRE - - //SPECIFIC VOWELS -"lya" "" "" "la" -"lyu" "" "" "lu" -"lia" "" "" "la" // not in DJSRE -"liu" "" "" "lu" // not in DJSRE -"lja" "" "" "la" // not in DJSRE -"lju" "" "" "lu" // not in DJSRE -"le" "" "" "(lo|lE)" //not in DJSRE -"lyo" "" "" "(lo|le)" //not in DJSRE -"lio" "" "" "(lo|le)" - -"ije" "" "" "je" -"ie" "" "" "je" -"iye" "" "" "je" -"iie" "" "" "je" -"yje" "" "" "je" -"ye" "" "" "je" -"yye" "" "" "je" -"yie" "" "" "je" - -"ij" "" "[aou]" "j" -"iy" "" "[aou]" "j" -"ii" "" "[aou]" "j" -"yj" "" "[aou]" "j" -"yy" "" "[aou]" "j" -"yi" "" "[aou]" "j" - -"io" "" "" "(jo|e)" -"i" "" "[au]" "j" -"i" "[aou]" "" "j" // not in DJSRE -"ei" "" "" "aj" // not in DJSRE -"ey" "" "" "aj" // not in DJSRE -"ej" "" "" "aj" -"yo" "" "" "(jo|e)" //not in DJSRE -"y" "" "[au]" "j" -"y" "[aiou]" "" "j" // not in DJSRE - -"ii" "" "$" "i" // not in DJSRE -"iy" "" "$" "i" // not in DJSRE -"yy" "" "$" "i" // not in DJSRE -"yi" "" "$" "i" // not in DJSRE -"yj" "" "$" "i" -"ij" "" "$" "i" - -"e" "^" "" "(je|E)" // in DJSRE the rule is simpler:"e" "^" "" "je"); -"ee" "" "" "(aje|i)" // in DJSRE the rule is simpler:"ee" "" "" "(eje|aje)"); -"e" "[aou]" "" "je" -"y" "" "" "I" -"oo" "" "" "(oo|u)" // not in DJSRE -"'" "" "" "" -"\"" "" "" "" - -"aue" "" "" "aue" - -// TRIVIAL -"a" "" "" "a" -"b" "" "" "b" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" // not in DJSRE -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/ash_rules_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/ash_rules_spanish.txt deleted file mode 100644 index 03dc04ae..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/ash_rules_spanish.txt +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Ashkenazic = Argentina - -// CONSONANTS -"ñ" "" "" "(n|nj)" - -"ch" "" "" "(tS|dZ)" // dZ is typical for Argentina -"h" "[bdgt]" "" "" // translit. from Arabic -"h" "" "$" "" // foreign - -"j" "" "" "x" -"x" "" "" "ks" -"ll" "" "" "(l|Z)" // Z is typical for Argentina, only Ashkenazic -"w" "" "" "v" // foreign words - -"v" "" "" "(b|v)" -"b" "" "" "(b|v)" -"m" "" "[bpvf]" "(m|n)" - -"c" "" "[ei]" "s" -"c" "" "" "k" - -"z" "" "" "(z|s)" // as "c" befoire "e" or "i", in Spain it is like unvoiced English "th" - -"gu" "" "[ei]" "(g|gv)" // "gv" because "u" can actually be "ü" -"g" "" "[ei]" "(x|g)" // "g" only for foreign words - -"qu" "" "" "k" -"q" "" "" "k" - -"uo" "" "" "(vo|o)" -"u" "" "[aei]" "v" - -"y" "" "" "(i|j|S|Z)" // S or Z are peculiar to South America; only Ashkenazic - - // VOWELS -"ü" "" "" "v" -"á" "" "" "a" -"é" "" "" "e" -"í" "" "" "i" -"ó" "" "" "o" -"ú" "" "" "u" - - // TRIVIAL -"a" "" "" "a" -"d" "" "" "d" -"e" "" "" "E" // Only Ashkenazic -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" // Only Ashkenazic -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_any.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_any.txt deleted file mode 100644 index 693a76f4..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_any.txt +++ /dev/null @@ -1,131 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERIC -// A, E, I, O, P, U should create variants, but a, e, i, o, u should not create any new variant -// Q = ü ; Y = ä = ö -// EE = final "e" (english or french) - -// VOWELS - // "ALL" DIPHTHONGS are interchangeable BETWEEN THEM and with monophthongs of which they are composed ("D" means "diphthong") - // {a,o} are totally interchangeable if non-stressed; in German "a/o" can actually be from "ä/ö" (that are equivalent to "e") - // {i,e} are interchangeable if non-stressed, while in German "u" can actually be from "ü" (that is equivalent to "i") - -"mb" "" "" "(mb|b[greeklatin])" -"mp" "" "" "(mp|b[greeklatin])" -"ng" "" "" "(ng|g[greeklatin])" - -"B" "" "[fktSs]" "(p|f[spanish])" -"B" "" "p" "" -"B" "" "$" "(p|f[spanish])" -"V" "" "[pktSs]" "(f|p[spanish])" -"V" "" "f" "" -"V" "" "$" "(f|p[spanish])" -"B" "" "" "(b|v[spanish])" -"V" "" "" "(v|b[spanish])" - - // French word-final and word-part-final letters -"t" "" "$" "(t|[french])" -"g" "n" "$" "(g|[french])" -"k" "n" "$" "(k|[french])" -"p" "" "$" "(p|[french])" -"r" "[Ee]" "$" "(r|[french])" -"s" "" "$" "(s|[french])" -"t" "[aeiouAEIOU]" "[^aeiouAEIOU]" "(t|[french])" // Petitjean -"s" "[aeiouAEIOU]" "[^aeiouAEIOU]" "(s|[french])" // Groslot, Grosleau - //array("p" "[aeiouAEIOU]" "[^aeiouAEIOU]" "(p|[french])" - -"I" "[aeiouAEIBFOUQY]" "" "i" -"I" "" "[^aeiouAEBFIOU]e" "(Q[german]|i|D[english])" // "line" -"I" "" "$" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk[german])" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts[german])" -"Its" "" "$" "its" -"I" "" "" "(Q[german]|i)" - -"lEE" "[bdfgkmnprsStvzZ]" "" "(li|il[english])" // Apple = Appel -"rEE" "[bdfgkmnprsStvzZ]" "" "(ri|ir[english])" -"lE" "[bdfgkmnprsStvzZ]" "" "(li|il[english]|lY[german])" // Applebaum < Appelbaum -"rE" "[bdfgkmnprsStvzZ]" "" "(ri|ir[english]|rY[german])" - -"EE" "" "" "(i|)" -"ea" "" "" "(D|a|i)" - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"eu" "" "" "(D|e|u)" - -"ai" "" "" "(D|a|i)" -"Ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"Oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" -"Ui" "" "" "(D|u|i)" -"ei" "" "" "(D|i)" -"Ei" "" "" "(D|i)" - -"iA" "" "$" "(ia|io)" -"iA" "" "" "(ia|io|iY[german])" -"A" "" "[^aeiouAEBFIOU]e" "(a|o|Y[german]|D[english])" // "plane" - - -"E" "i[^aeiouAEIOU]" "" "(i|Y[german]|[english])" // Wineberg (vineberg/vajneberg) --> vajnberg -"E" "a[^aeiouAEIOU]" "" "(i|Y[german]|[english])" // Shaneberg (shaneberg/shejneberg) --> shejnberg - -"E" "" "[fklmnprst]$" "i" -"E" "" "ts$" "i" -"E" "" "$" "i" -"E" "[DaoiuAOIUQY]" "" "i" -"E" "" "[aoAOQY]" "i" -"E" "" "" "(i|Y[german])" - -"P" "" "" "(o|u)" - -"O" "" "[fklmnprstv]$" "o" -"O" "" "ts$" "o" -"O" "" "$" "o" -"O" "[oeiuQY]" "" "o" -"O" "" "" "(o|Y[german])" -"O" "" "" "o" - -"A" "" "[fklmnprst]$" "(a|o)" -"A" "" "ts$" "(a|o)" -"A" "" "$" "(a|o)" -"A" "[oeiuQY]" "" "(a|o)" -"A" "" "" "(a|o|Y[german])" -"A" "" "" "(a|o)" - -"U" "" "$" "u" -"U" "[DoiuQY]" "" "u" -"U" "" "[^k]$" "u" -"Uk" "[lr]" "$" "(uk|Qk[german])" -"Uk" "" "$" "uk" -"sUts" "" "$" "(suts|sQts[german])" -"Uts" "" "$" "uts" -"U" "" "" "(u|Q[german])" -"U" "" "" "u" - -"e" "" "[fklmnprstv]$" "i" -"e" "" "ts$" "i" -"e" "" "$" "i" -"e" "[DaoiuAOIUQY]" "" "i" -"e" "" "[aoAOQY]" "i" -"e" "" "" "(i|Y[german])" - -"a" "" "" "(a|o)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_arabic.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_arabic.txt deleted file mode 100644 index 2eda6b85..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_arabic.txt +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"1a" "" "" "(D|a)" -"1i" "" "" "(D|i|e)" -"1u" "" "" "(D|u|o)" -"j1" "" "" "(ja|je|jo|ju|j)" -"1" "" "" "(a|e|i|o|u|)" -"u" "" "" "(o|u)" -"i" "" "" "(i|e)" -"p" "" "$" "p" -"p" "" "" "(p|b)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_common.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_common.txt deleted file mode 100644 index 38537b47..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_common.txt +++ /dev/null @@ -1,233 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERIC - -#include gen_exact_approx_common - -// DUTCH -"van" "^" "[bp]" "(vam|)" -"van" "^" "" "(van|)" - -// REGRESSIVE ASSIMILATION OF CONSONANTS -"n" "" "[bp]" "m" - -// PECULIARITY OF "h" -"h" "" "" "" -"H" "" "" "(x|)" - -// "e" and "i" ARE TO BE OMITTED BEFORE (SYLLABIC) n & l: Halperin=Halpern; Frankel = Frankl, Finkelstein = Finklstein -// but Andersen & Anderson should match -"sen" "[rmnl]" "$" "(zn|zon)" -"sen" "" "$" "(sn|son)" -"sEn" "[rmnl]" "$" "(zn|zon)" -"sEn" "" "$" "(sn|son)" - -"e" "[BbdfgklmnprsStvzZ]" "[ln]$" "" -"i" "[BbdfgklmnprsStvzZ]" "[ln]$" "" -"E" "[BbdfgklmnprsStvzZ]" "[ln]$" "" -"I" "[BbdfgklmnprsStvzZ]" "[ln]$" "" -"Q" "[BbdfgklmnprsStvzZ]" "[ln]$" "" -"Y" "[BbdfgklmnprsStvzZ]" "[ln]$" "" - -"e" "[BbdfgklmnprsStvzZ]" "[ln][BbdfgklmnprsStvzZ]" "" -"i" "[BbdfgklmnprsStvzZ]" "[ln][BbdfgklmnprsStvzZ]" "" -"E" "[BbdfgklmnprsStvzZ]" "[ln][BbdfgklmnprsStvzZ]" "" -"I" "[BbdfgklmnprsStvzZ]" "[ln][BbdfgklmnprsStvzZ]" "" -"Q" "[BbdfgklmnprsStvzZ]" "[ln][BbdfgklmnprsStvzZ]" "" -"Y" "[BbdfgklmnprsStvzZ]" "[ln][BbdfgklmnprsStvzZ]" "" - -"lEs" "" "" "(lEs|lz)" // Applebaum < Appelbaum (English + blend English-something forms as Finklestein) -"lE" "[bdfgkmnprStvzZ]" "" "(lE|l)" // Applebaum < Appelbaum (English + blend English-something forms as Finklestein) - -// SIMPLIFICATION: (TRIPHTHONGS & DIPHTHONGS) -> ONE GENERIC DIPHTHONG "D" -"aue" "" "" "D" -"oue" "" "" "D" - -"AvE" "" "" "(D|AvE)" -"Ave" "" "" "(D|Ave)" -"avE" "" "" "(D|avE)" -"ave" "" "" "(D|ave)" - -"OvE" "" "" "(D|OvE)" -"Ove" "" "" "(D|Ove)" -"ovE" "" "" "(D|ovE)" -"ove" "" "" "(D|ove)" - -"ea" "" "" "(D|ea)" -"EA" "" "" "(D|EA)" -"Ea" "" "" "(D|Ea)" -"eA" "" "" "(D|eA)" - -"aji" "" "" "D" -"ajI" "" "" "D" -"aje" "" "" "D" -"ajE" "" "" "D" - -"Aji" "" "" "D" -"AjI" "" "" "D" -"Aje" "" "" "D" -"AjE" "" "" "D" - -"oji" "" "" "D" -"ojI" "" "" "D" -"oje" "" "" "D" -"ojE" "" "" "D" - -"Oji" "" "" "D" -"OjI" "" "" "D" -"Oje" "" "" "D" -"OjE" "" "" "D" - -"eji" "" "" "D" -"ejI" "" "" "D" -"eje" "" "" "D" -"ejE" "" "" "D" - -"Eji" "" "" "D" -"EjI" "" "" "D" -"Eje" "" "" "D" -"EjE" "" "" "D" - -"uji" "" "" "D" -"ujI" "" "" "D" -"uje" "" "" "D" -"ujE" "" "" "D" - -"Uji" "" "" "D" -"UjI" "" "" "D" -"Uje" "" "" "D" -"UjE" "" "" "D" - -"iji" "" "" "D" -"ijI" "" "" "D" -"ije" "" "" "D" -"ijE" "" "" "D" - -"Iji" "" "" "D" -"IjI" "" "" "D" -"Ije" "" "" "D" -"IjE" "" "" "D" - -"aja" "" "" "D" -"ajA" "" "" "D" -"ajo" "" "" "D" -"ajO" "" "" "D" -"aju" "" "" "D" -"ajU" "" "" "D" - -"Aja" "" "" "D" -"AjA" "" "" "D" -"Ajo" "" "" "D" -"AjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"oja" "" "" "D" -"ojA" "" "" "D" -"ojo" "" "" "D" -"ojO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Oja" "" "" "D" -"OjA" "" "" "D" -"Ojo" "" "" "D" -"OjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"eja" "" "" "D" -"ejA" "" "" "D" -"ejo" "" "" "D" -"ejO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Eja" "" "" "D" -"EjA" "" "" "D" -"Ejo" "" "" "D" -"EjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"uja" "" "" "D" -"ujA" "" "" "D" -"ujo" "" "" "D" -"ujO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Uja" "" "" "D" -"UjA" "" "" "D" -"Ujo" "" "" "D" -"UjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"ija" "" "" "D" -"ijA" "" "" "D" -"ijo" "" "" "D" -"ijO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"Ija" "" "" "D" -"IjA" "" "" "D" -"Ijo" "" "" "D" -"IjO" "" "" "D" -"Aju" "" "" "D" -"AjU" "" "" "D" - -"j" "" "" "i" - -// lander = lender = länder -"lYndEr" "" "$" "lYnder" -"lander" "" "$" "lYnder" -"lAndEr" "" "$" "lYnder" -"lAnder" "" "$" "lYnder" -"landEr" "" "$" "lYnder" -"lender" "" "$" "lYnder" -"lEndEr" "" "$" "lYnder" -"lendEr" "" "$" "lYnder" -"lEnder" "" "$" "lYnder" - -// burg = berg -"burk" "" "$" "(burk|berk)" -"bUrk" "" "$" "(burk|berk)" -"burg" "" "$" "(burk|berk)" -"bUrg" "" "$" "(burk|berk)" -"Burk" "" "$" "(burk|berk)" -"BUrk" "" "$" "(burk|berk)" -"Burg" "" "$" "(burk|berk)" -"BUrg" "" "$" "(burk|berk)" - -// CONSONANTS {z & Z; s & S} are approximately interchangeable -"s" "" "[rmnl]" "z" -"S" "" "[rmnl]" "z" -"s" "[rmnl]" "" "z" -"S" "[rmnl]" "" "z" - -"dS" "" "$" "S" -"dZ" "" "$" "S" -"Z" "" "$" "S" -"S" "" "$" "(S|s)" -"z" "" "$" "(S|s)" - -"S" "" "" "s" -"dZ" "" "" "z" -"Z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_cyrillic.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_cyrillic.txt deleted file mode 100644 index d470aa86..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_cyrillic.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_czech.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_czech.txt deleted file mode 100644 index b542861b..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_czech.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_dutch.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_dutch.txt deleted file mode 100644 index b542861b..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_dutch.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_english.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_english.txt deleted file mode 100644 index 84d8174e..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_english.txt +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// VOWELS -"I" "" "[^aEIeiou]e" "(Q|i|D)" // like in "five" -"I" "" "$" "i" -"I" "[aEIeiou]" "" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "" "" "(i|Q)" - -"lE" "[bdfgkmnprsStvzZ]" "" "(il|li|lY)" // Applebaum < Appelbaum - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"E" "D[^aeiEIou]" "" "(i|)" // Weinberg, Shaneberg (shaneberg/shejneberg) --> shejnberg -"e" "D[^aeiEIou]" "" "(i|)" - -"e" "" "" "i" -"E" "" "[fklmnprsStv]$" "i" -"E" "" "ts$" "i" -"E" "[DaoiEuQY]" "" "i" -"E" "" "[aoQY]" "i" -"E" "" "" "(Y|i)" - -"a" "" "" "(a|o)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_french.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_french.txt deleted file mode 100644 index 93a49805..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_french.txt +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"a" "" "" "(a|o)" -"e" "" "" "i" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_german.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_german.txt deleted file mode 100644 index 14a5db79..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_german.txt +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -"I" "" "$" "i" -"I" "[aeiAEIOUouQY]" "" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "" "" "(Q|i)" - -"AU" "" "" "(D|a|u)" -"aU" "" "" "(D|a|u)" -"Au" "" "" "(D|a|u)" -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"OU" "" "" "(D|o|u)" -"oU" "" "" "(D|o|u)" -"Ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"Ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"Oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" -"Ui" "" "" "(D|u|i)" - -"e" "" "" "i" - -"E" "" "[fklmnprst]$" "i" -"E" "" "ts$" "i" -"E" "" "$" "i" -"E" "[DaoAOUiuQY]" "" "i" -"E" "" "[aoAOQY]" "i" -"E" "" "" "(Y|i)" - -"O" "" "$" "o" -"O" "" "[fklmnprst]$" "o" -"O" "" "ts$" "o" -"O" "[aoAOUeiuQY]" "" "o" -"O" "" "" "(o|Y)" - -"a" "" "" "(a|o)" - -"A" "" "$" "(a|o)" -"A" "" "[fklmnprst]$" "(a|o)" -"A" "" "ts$" "(a|o)" -"A" "[aoeOUiuQY]" "" "(a|o)" -"A" "" "" "(a|o|Y)" - -"U" "" "$" "u" -"U" "[DaoiuUQY]" "" "u" -"U" "" "[^k]$" "u" -"Uk" "[lr]" "$" "(uk|Qk)" -"Uk" "" "$" "uk" -"sUts" "" "$" "(suts|sQts)" -"Uts" "" "$" "uts" -"U" "" "" "(u|Q)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_greek.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_greek.txt deleted file mode 100644 index b542861b..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_greek.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_greeklatin.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_greeklatin.txt deleted file mode 100644 index e492b97b..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_greeklatin.txt +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french - -"N" "" "" "" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_hebrew.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_hebrew.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_hungarian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_hungarian.txt deleted file mode 100644 index 46ebf299..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_hungarian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_italian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_italian.txt deleted file mode 100644 index 46ebf299..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_italian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_polish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_polish.txt deleted file mode 100644 index ce577af6..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_polish.txt +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - -"aiB" "" "[bp]" "(D|Dm)" -"oiB" "" "[bp]" "(D|Dm)" -"uiB" "" "[bp]" "(D|Dm)" -"eiB" "" "[bp]" "(D|Dm)" -"EiB" "" "[bp]" "(D|Dm)" -"iiB" "" "[bp]" "(D|Dm)" -"IiB" "" "[bp]" "(D|Dm)" - -"aiB" "" "[dgkstvz]" "(D|Dn)" -"oiB" "" "[dgkstvz]" "(D|Dn)" -"uiB" "" "[dgkstvz]" "(D|Dn)" -"eiB" "" "[dgkstvz]" "(D|Dn)" -"EiB" "" "[dgkstvz]" "(D|Dn)" -"iiB" "" "[dgkstvz]" "(D|Dn)" -"IiB" "" "[dgkstvz]" "(D|Dn)" - -"B" "" "[bp]" "(o|om|im)" -"B" "" "[dgkstvz]" "(o|on|in)" -"B" "" "" "o" - -"aiF" "" "[bp]" "(D|Dm)" -"oiF" "" "[bp]" "(D|Dm)" -"uiF" "" "[bp]" "(D|Dm)" -"eiF" "" "[bp]" "(D|Dm)" -"EiF" "" "[bp]" "(D|Dm)" -"iiF" "" "[bp]" "(D|Dm)" -"IiF" "" "[bp]" "(D|Dm)" - -"aiF" "" "[dgkstvz]" "(D|Dn)" -"oiF" "" "[dgkstvz]" "(D|Dn)" -"uiF" "" "[dgkstvz]" "(D|Dn)" -"eiF" "" "[dgkstvz]" "(D|Dn)" -"EiF" "" "[dgkstvz]" "(D|Dn)" -"iiF" "" "[dgkstvz]" "(D|Dn)" -"IiF" "" "[dgkstvz]" "(D|Dn)" - -"F" "" "[bp]" "(i|im|om)" -"F" "" "[dgkstvz]" "(i|in|on)" -"F" "" "" "i" - -"P" "" "" "(o|u)" - -"I" "" "$" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "[aeiAEBFIou]" "" "i" -"I" "" "" "(i|Q)" - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"a" "" "" "(a|o)" -"e" "" "" "i" - -"E" "" "[fklmnprst]$" "i" -"E" "" "ts$" "i" -"E" "" "$" "i" -"E" "[DaoiuQ]" "" "i" -"E" "" "[aoQ]" "i" -"E" "" "" "(Y|i)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_portuguese.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_portuguese.txt deleted file mode 100644 index b542861b..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_portuguese.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_romanian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_romanian.txt deleted file mode 100644 index f5c58944..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_romanian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_polish \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_russian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_russian.txt deleted file mode 100644 index 9138487d..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_russian.txt +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// VOWELS -"I" "" "$" "i" -"I" "" "[^k]$" "i" -"Ik" "[lr]" "$" "(ik|Qk)" -"Ik" "" "$" "ik" -"sIts" "" "$" "(sits|sQts)" -"Its" "" "$" "its" -"I" "[aeiEIou]" "" "i" -"I" "" "" "(i|Q)" - -"au" "" "" "(D|a|u)" -"ou" "" "" "(D|o|u)" -"ai" "" "" "(D|a|i)" -"oi" "" "" "(D|o|i)" -"ui" "" "" "(D|u|i)" - -"om" "" "[bp]" "(om|im)" -"on" "" "[dgkstvz]" "(on|in)" -"em" "" "[bp]" "(im|om)" -"en" "" "[dgkstvz]" "(in|on)" -"Em" "" "[bp]" "(im|Ym|om)" -"En" "" "[dgkstvz]" "(in|Yn|on)" - -"a" "" "" "(a|o)" -"e" "" "" "i" - -"E" "" "[fklmnprsStv]$" "i" -"E" "" "ts$" "i" -"E" "[DaoiuQ]" "" "i" -"E" "" "[aoQ]" "i" -"E" "" "" "(Y|i)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_spanish.txt deleted file mode 100644 index fb3e6617..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_spanish.txt +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french - -"B" "" "" "(b|v)" -"V" "" "" "(b|v)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_approx_turkish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_approx_turkish.txt deleted file mode 100644 index b542861b..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_approx_turkish.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_any.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_any.txt deleted file mode 100644 index 25c84183..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_any.txt +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERAL - // A, E, I, O, P, U should create variants, - // EE = final "e" (english & french) - // V, B from Spanish - // but a, e, i, o, u should not create any new variant -"EE" "" "$" "e" - -"A" "" "" "a" -"E" "" "" "e" -"I" "" "" "i" -"O" "" "" "o" -"P" "" "" "o" -"U" "" "" "u" - -"B" "" "[fktSs]" "p" -"B" "" "p" "" -"B" "" "$" "p" -"V" "" "[pktSs]" "f" -"V" "" "f" "" -"V" "" "$" "f" - -"B" "" "" "b" -"V" "" "" "v" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_approx_common.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_approx_common.txt deleted file mode 100644 index 10939127..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_approx_common.txt +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERAL -"h" "" "$" "" - -// VOICED - UNVOICED CONSONANTS -"b" "" "[fktSs]" "p" -"b" "" "p" "" -"b" "" "$" "p" -"p" "" "[vgdZz]" "b" // Ashk: "v" excluded (everythere) -"p" "" "b" "" - -"v" "" "[pktSs]" "f" -"v" "" "f" "" -"v" "" "$" "f" -"f" "" "[vbgdZz]" "v" -"f" "" "v" "" - -"g" "" "[pftSs]" "k" -"g" "" "k" "" -"g" "" "$" "k" -"k" "" "[vbdZz]" "g" -"k" "" "g" "" - -"d" "" "[pfkSs]" "t" -"d" "" "t" "" -"d" "" "$" "t" -"t" "" "[vbgZz]" "d" -"t" "" "d" "" - -"s" "" "dZ" "" -"s" "" "tS" "" - -"z" "" "[pfkSt]" "s" -"z" "" "[sSzZ]" "" -"s" "" "[sSzZ]" "" -"Z" "" "[sSzZ]" "" -"S" "" "[sSzZ]" "" - -// SIMPLIFICATION OF CONSONANT CLUSTERS -"jnm" "" "" "jm" - -// DOUBLE --> SINGLE -"ji" "^" "" "i" -"jI" "^" "" "I" - -"a" "" "[aA]" "" -"a" "A" "" "" -"A" "" "A" "" - -"b" "" "b" "" -"d" "" "d" "" -"f" "" "f" "" -"g" "" "g" "" -"j" "" "j" "" -"k" "" "k" "" -"l" "" "l" "" -"m" "" "m" "" -"n" "" "n" "" -"p" "" "p" "" -"r" "" "r" "" -"t" "" "t" "" -"v" "" "v" "" -"z" "" "z" "" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_arabic.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_arabic.txt deleted file mode 100644 index e8e9d7b4..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_arabic.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"1" "" "" "" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_common.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_common.txt deleted file mode 100644 index 742fc712..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_common.txt +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_exact_approx_common - -"H" "" "" "" - -// VOICED - UNVOICED CONSONANTS -"s" "[^t]" "[bgZd]" "z" -"Z" "" "[pfkst]" "S" -"Z" "" "$" "S" -"S" "" "[bgzd]" "Z" -"z" "" "$" "s" - -"ji" "[aAoOeEiIuU]" "" "j" -"jI" "[aAoOeEiIuU]" "" "j" -"je" "[aAoOeEiIuU]" "" "j" -"jE" "[aAoOeEiIuU]" "" "j" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_cyrillic.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_cyrillic.txt deleted file mode 100644 index 474f61bb..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_cyrillic.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_czech.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_czech.txt deleted file mode 100644 index 474f61bb..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_czech.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_dutch.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_dutch.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_dutch.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_english.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_english.txt deleted file mode 100644 index 474f61bb..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_english.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_exact_russian \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_french.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_french.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_french.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_german.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_german.txt deleted file mode 100644 index 7a648f20..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_german.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_exact_any \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_greek.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_greek.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_greek.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_greeklatin.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_greeklatin.txt deleted file mode 100644 index 325ff344..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_greeklatin.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"N" "" "" "n" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_hebrew.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_hebrew.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_hungarian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_hungarian.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_hungarian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_italian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_italian.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_italian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_polish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_polish.txt deleted file mode 100644 index babed2a6..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_polish.txt +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"B" "" "" "a" -"F" "" "" "e" -"P" "" "" "o" - -"E" "" "" "e" -"I" "" "" "i" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_portuguese.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_portuguese.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_portuguese.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_romanian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_romanian.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_romanian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_russian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_russian.txt deleted file mode 100644 index 0a016e0d..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_russian.txt +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"E" "" "" "e" -"I" "" "" "i" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_spanish.txt deleted file mode 100644 index e555114b..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_spanish.txt +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"B" "" "" "b" -"V" "" "" "v" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_exact_turkish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_exact_turkish.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_exact_turkish.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_hebrew_common.txt b/target/classes/org/apache/commons/codec/language/bm/gen_hebrew_common.txt deleted file mode 100644 index dbd91367..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_hebrew_common.txt +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include gen_exact_approx_common - -"ts" "" "" "C" // for not confusion Gutes [=guts] and Guts [=guc] -"tS" "" "" "C" // same reason -"S" "" "" "s" -"p" "" "" "f" -"b" "^" "" "b" -"b" "" "" "(b|v)" -"B" "" "" "(b|v)" // Spanish "b" -"V" "" "" "v" // Spanish "v" -"EE" "" "" "(1|)" // final "e" (english & french) - -"ja" "" "" "i" -"jA" "" "" "i" -"je" "" "" "i" -"jE" "" "" "i" -"aj" "" "" "i" -"Aj" "" "" "i" -"I" "" "" "i" -"j" "" "" "i" - -"a" "^" "" "1" -"A" "^" "" "1" -"e" "^" "" "1" -"E" "^" "" "1" -"Y" "^" "" "1" - -"a" "" "$" "1" -"A" "" "$" "1" -"e" "" "$" "1" -"E" "" "$" "1" -"Y" "" "$" "1" - -"a" "" "" "" -"A" "" "" "" -"e" "" "" "" -"E" "" "" "" -"Y" "" "" "" - -"oj" "^" "" "(u|vi)" -"Oj" "^" "" "(u|vi)" -"uj" "^" "" "(u|vi)" -"Uj" "^" "" "(u|vi)" - -"oj" "" "" "u" -"Oj" "" "" "u" -"uj" "" "" "u" -"Uj" "" "" "u" - -"ou" "^" "" "(u|v|1)" -"o" "^" "" "(u|v|1)" -"O" "^" "" "(u|v|1)" -"P" "^" "" "(u|v|1)" -"U" "^" "" "(u|v|1)" -"u" "^" "" "(u|v|1)" - -"o" "" "$" "(u|1)" -"O" "" "$" "(u|1)" -"P" "" "$" "(u|1)" -"u" "" "$" "(u|1)" -"U" "" "$" "(u|1)" - -"ou" "" "" "u" -"o" "" "" "u" -"O" "" "" "u" -"P" "" "" "u" -"U" "" "" "u" - -"VV" "" "" "u" // alef/ayin + vov from ruleshebrew -"V" "" "" "v" // tsvey-vov from ruleshebrew;; only Ashkenazic -"L" "^" "" "1" // alef/ayin from ruleshebrew -"L" "" "$" "1" // alef/ayin from ruleshebrew -"L" "" "" " " // alef/ayin from ruleshebrew -"WW" "^" "" "(vi|u)" // vav-yod from ruleshebrew -"WW" "" "" "u" // vav-yod from ruleshebrew -"W" "^" "" "(u|v)" // vav from ruleshebrew -"W" "" "" "u" // vav from ruleshebrew - - //"g" "" "" "(g|Z)" - //"z" "" "" "(z|Z)" - //"d" "" "" "(d|dZ)" - -"TB" "^" "" "t" // tav from ruleshebrew -"TB" "" "" "(t|s)" // tav from ruleshebrew; s is only Ashkenazic -"T" "" "" "t" // tet from ruleshebrew - - //"k" "" "" "(k|x)" - //"x" "" "" "(k|x)" -"K" "" "" "k" // kof and initial kaf from ruleshebrew -"X" "" "" "x" // khet and final kaf from ruleshebrew - -"H" "^" "" "(x|1)" -"H" "" "$" "(x|1)" -"H" "" "" "(x|)" -"h" "^" "" "1" -"h" "" "" "" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_lang.txt b/target/classes/org/apache/commons/codec/language/bm/gen_lang.txt deleted file mode 100644 index 7c66dc1a..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_lang.txt +++ /dev/null @@ -1,295 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERIC - -// 1. following are rules to accept the language -// 1.1 Special letter combinations -^o’ english true -^o' english true -^mc english true -^fitz english true -ceau french+romanian true -eau romanian true -eau$ french true // mp: I've added this -eaux$ french true // mp: I've added this -ault$ french true -oult$ french true -eux$ french true -eix$ french true -glou$ greeklatin true -uu dutch true -tx spanish true -witz german true -tz$ german+russian+english true -^tz russian+english true -poulos$ greeklatin true -pulos$ greeklatin true -iou greeklatin true -sj$ dutch true -^sj dutch true -güe spanish true -güi spanish true -ghe romanian+greeklatin true -ghi romanian+greeklatin true -escu$ romanian true -esco$ romanian true -vici$ romanian true -schi$ romanian true -ii$ russian true -iy$ russian true -yy$ russian true -yi$ russian true -^rz polish true -rz$ polish+german true -[bcdfgklmnpstwz]rz polish true -rz[bcdfghklmnpstw] polish true -cki$ polish true -ska$ polish true -cka$ polish true -ae german+russian+english true -oe german+french+russian+english+dutch true -th$ german+english true -^th german+english+greeklatin true -mann german true -cz polish true -cy polish+greeklatin true -niew polish true -etti$ italian true -eti$ italian true -ati$ italian true -ato$ italian true -[aoei]no$ italian true -[aoei]ni$ italian true -esi$ italian true -oli$ italian true -field$ english true -stein german true -heim$ german true -heimer$ german true -thal german true -zweig german true -[aeou]h german true -äh german true -öh german true -üh german true -[ln]h[ao]$ portuguese true -[ln]h[aou] portuguese+french+german+dutch+czech+spanish+turkish true -chsch german true -tsch german true -sch$ german+russian true -^sch german+russian true -ck$ german+english true -c$ polish+romanian+hungarian+czech+turkish true -sz polish+hungarian true -cs$ hungarian true -^cs hungarian true -dzs hungarian true -zs$ hungarian true -^zs hungarian true -^wl polish true -^wr polish+english+german+dutch true - -gy$ hungarian true -gy[aeou] hungarian true -gy hungarian+russian+french+greeklatin true -guy french true -gu[ei] spanish+french+portuguese true -gu[ao] spanish+portuguese true -gi[aou] italian+greeklatin true - -ly hungarian+russian+polish+greeklatin true -ny hungarian+russian+polish+spanish+greeklatin true -ty hungarian+russian+polish+greeklatin true - -// 1.2 special characters -ć polish true -ç french+spanish+portuguese+turkish true -č czech true -ď czech true -ğ turkish true -ł polish true -ń polish true -ñ spanish true -ň czech true -ř czech true -ś polish true -ş romanian+turkish true -š czech true -ţ romanian true -ť czech true -ź polish true -ż polish true - -ß german true - -ä german true -á hungarian+spanish+portuguese+czech+greeklatin true -â romanian+french+portuguese true -ă romanian true -ą polish true -à portuguese true -ã portuguese true -ę polish true -é french+hungarian+czech+greeklatin true -è french+spanish+italian true -ê french true -ě czech true -ê french+portuguese true -í hungarian+spanish+portuguese+czech+greeklatin true -î romanian+french true -ı turkish true -ó polish+hungarian+spanish+italian+portuguese+czech+greeklatin true -ö german+hungarian+turkish true -ô french+portuguese true -õ portuguese+hungarian true -ò italian+spanish true -ű hungarian true -ú hungarian+spanish+portuguese+czech+greeklatin true -ü german+hungarian+spanish+portuguese+turkish true -ù french true -ů czech true -ý czech+greeklatin true - -// Every Cyrillic word has at least one Cyrillic vowel (аёеоиуыэюя) -а cyrillic true -ё cyrillic true -о cyrillic true -е cyrillic true -и cyrillic true -у cyrillic true -ы cyrillic true -э cyrillic true -ю cyrillic true -я cyrillic true - -// Every Greek word has at least one Greek vowel -α greek true -ε greek true -η greek true -ι greek true -ο greek true -υ greek true -ω greek true - -// Arabic (only initial) -ا arabic true // alif (isol + init) -ب arabic true // ba' -ت arabic true // ta' -ث arabic true // tha' -ج arabic true // jim -ح arabic true // h.a' -خ' arabic true // kha' -د arabic true // dal (isol + init) -ذ arabic true // dhal (isol + init) -ر arabic true // ra' (isol + init) -ز arabic true // za' (isol + init) -س arabic true // sin -ش arabic true // shin -ص arabic true // s.ad -ض arabic true // d.ad -ط arabic true // t.a' -ظ arabic true // z.a' -ع arabic true // 'ayn -غ arabic true // ghayn -ف arabic true // fa' -ق arabic true // qaf -ك arabic true // kaf -ل arabic true // lam -م arabic true // mim -ن arabic true // nun -ه arabic true // ha' -و arabic true // waw (isol + init) -ي arabic true // ya' - -آ arabic true // alif madda -إ arabic true // alif + diacritic -أ arabic true // alif + hamza -ؤ arabic true // waw + hamza -ئ arabic true // ya' + hamza -لا arabic true // ligature l+a - -// Hebrew -א hebrew true -ב hebrew true -ג hebrew true -ד hebrew true -ה hebrew true -ו hebrew true -ז hebrew true -ח hebrew true -ט hebrew true -י hebrew true -כ hebrew true -ל hebrew true -מ hebrew true -נ hebrew true -ס hebrew true -ע hebrew true -פ hebrew true -צ hebrew true -ק hebrew true -ר hebrew true -ש hebrew true -ת hebrew true - -// 2. following are rules to reject the language - -// Every Latin character word has at least one Latin vowel -a cyrillic+hebrew+greek+arabic false -o cyrillic+hebrew+greek+arabic false -e cyrillic+hebrew+greek+arabic false -i cyrillic+hebrew+greek+arabic false -y cyrillic+hebrew+greek+arabic+romanian+dutch false -u cyrillic+hebrew+greek+arabic false - -j italian false -j[^aoeiuy] french+spanish+portuguese+greeklatin false -g czech false -k romanian+spanish+portuguese+french+italian false -q hungarian+polish+russian+romanian+czech+dutch+turkish+greeklatin false -v polish false -w french+romanian+spanish+hungarian+russian+czech+turkish+greeklatin false -x czech+hungarian+dutch+turkish false // polish excluded from the list - -dj spanish+turkish false -v[^aoeiu] german false // in german, "v" can be found before a vowel only -y[^aoeiu] german false // in german, "y" usually appears only in the last position; sometimes before a vowel -c[^aohk] german false -dzi german+english+french+turkish false -ou german false -a[eiou] turkish false // no diphthongs in Turkish -ö[eaiou] turkish false -ü[eaiou] turkish false -e[aiou] turkish false -i[aeou] turkish false -o[aieu] turkish false -u[aieo] turkish false -aj german+english+french+dutch false -ej german+english+french+dutch false -oj german+english+french+dutch false -uj german+english+french+dutch false -eu russian+polish false -ky polish false -kie french+spanish+greeklatin false -gie portuguese+romanian+spanish+greeklatin false -ch[aou] italian false -ch turkish false -son$ german false -sc[ei] french false -sch hungarian+polish+french+spanish false -^h russian false diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_languages.txt b/target/classes/org/apache/commons/codec/language/bm/gen_languages.txt deleted file mode 100644 index 50f1118e..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_languages.txt +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -any -arabic -cyrillic -czech -dutch -english -french -german -greek -greeklatin -hebrew -hungarian -italian -polish -portuguese -romanian -russian -spanish -turkish diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_any.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_any.txt deleted file mode 100644 index e016468d..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_any.txt +++ /dev/null @@ -1,367 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - - // format of each entry rule in the table - // (pattern, left context, right context, phonetic) - // where - // pattern is a sequence of characters that might appear in the word to be transliterated - // left context is the context that precedes the pattern - // right context is the context that follows the pattern - // phonetic is the result that this rule generates - // - // note that both left context and right context can be regular expressions - // ex: left context of ^ would mean start of word - // left context of [aeiouy] means following a vowel - // right context of [^aeiouy] means preceding a consonant - // right context of e$ means preceding a final e - -//GENERIC - -// CONVERTING FEMININE TO MASCULINE -"yna" "" "$" "(in[russian]|ina)" -"ina" "" "$" "(in[russian]|ina)" -"liova" "" "$" "(lova|lof[russian]|lef[russian])" -"lova" "" "$" "(lova|lof[russian]|lef[russian]|l[czech]|el[czech])" -"kova" "" "$" "(kova|kof[russian]|k[czech]|ek[czech])" -"ova" "" "$" "(ova|of[russian]|[czech])" -"ová" "" "$" "(ova|[czech])" -"eva" "" "$" "(eva|ef[russian])" -"aia" "" "$" "(aja|i[russian])" -"aja" "" "$" "(aja|i[russian])" -"aya" "" "$" "(aja|i[russian])" - -"lowa" "" "$" "(lova|lof[polish]|l[polish]|el[polish])" -"kowa" "" "$" "(kova|kof[polish]|k[polish]|ek[polish])" -"owa" "" "$" "(ova|of[polish]|)" -"lowna" "" "$" "(lovna|levna|l[polish]|el[polish])" -"kowna" "" "$" "(kovna|k[polish]|ek[polish])" -"owna" "" "$" "(ovna|[polish])" -"lówna" "" "$" "(l|el)" // polish -"kówna" "" "$" "(k|ek)" // polish -"ówna" "" "$" "" // polish -"á" "" "$" "(a|i[czech])" -"a" "" "$" "(a|i[polish+czech])" - -// CONSONANTS -"pf" "" "" "(pf|p|f)" -"que" "" "$" "(k[french]|ke|kve)" -"qu" "" "" "(kv|k)" - -"m" "" "[bfpv]" "(m|n)" -"m" "[aeiouy]" "[aeiouy]" "m" -"m" "[aeiouy]" "" "(m|n[french+portuguese])" // nasal - -"ly" "" "[au]" "l" -"li" "" "[au]" "l" -"lio" "" "" "(lo|le[russian])" -"lyo" "" "" "(lo|le[russian])" - //array("ll" "" "" "(l|J[spanish])" // Disabled Argentinian rule -"lt" "u" "$" "(lt|[french])" - -"v" "^" "" "(v|f[german]|b[spanish])" - -"ex" "" "[aáuiíoóeéêy]" "(ez[portuguese]|eS[portuguese]|eks|egz)" -"ex" "" "[cs]" "(e[portuguese]|ek)" -"x" "u" "$" "(ks|[french])" - -"ck" "" "" "(k|tsk[polish+czech])" -"cz" "" "" "(tS|tsz[czech])" // Polish - - //Processing of "h" in various combinations -"rh" "^" "" "r" -"dh" "^" "" "d" -"bh" "^" "" "b" - -"ph" "" "" "(ph|f)" -"kh" "" "" "(x[russian+english]|kh)" - -"lh" "" "" "(lh|l[portuguese])" -"nh" "" "" "(nh|nj[portuguese])" - -"ssch" "" "" "S" // german -"chsch" "" "" "xS" // german -"tsch" "" "" "tS" // german - - ///"desch" "^" "" "deS" - ///"desh" "^" "" "(dES|de[french])" - ///"des" "^" "[^aeiouy]" "(dEs|de[french])" - -"sch" "[aeiouy]" "[ei]" "(S|StS[russian]|sk[romanian+italian])" -"sch" "[aeiouy]" "" "(S|StS[russian])" -"sch" "" "[ei]" "(sk[romanian+italian]|S|StS[russian])" -"sch" "" "" "(S|StS[russian])" -"ssh" "" "" "S" - -"sh" "" "[äöü]" "sh" // german -"sh" "" "[aeiou]" "(S[russian+english]|sh)" -"sh" "" "" "S" - -"zh" "" "" "(Z[english+russian]|zh|tsh[german])" - -"chs" "" "" "(ks[german]|xs|tSs[russian+english])" -"ch" "" "[ei]" "(x|tS[spanish+english+russian]|k[romanian+italian]|S[portuguese+french])" -"ch" "" "" "(x|tS[spanish+english+russian]|S[portuguese+french])" - -"th" "^" "" "t" // english+german+greeklatin -"th" "" "[äöüaeiou]" "(t[english+german+greeklatin]|th)" -"th" "" "" "t" // english+german+greeklatin - -"gh" "" "[ei]" "(g[romanian+italian+greeklatin]|gh)" - -"ouh" "" "[aioe]" "(v[french]|uh)" -"uh" "" "[aioe]" "(v|uh)" -"h" "." "$" "" // match h at the end of words, but not as a single letter: difference to the original version -"h" "[aeiouyäöü]" "" "" // german -"h" "^" "" "(h|x[romanian+greeklatin]|H[english+romanian+polish+french+portuguese+italian+spanish])" - - //Processing of "ci" "ce" & "cy" -"cia" "" "" "(tSa[polish]|tsa)" // Polish -"cią" "" "[bp]" "(tSom|tsom)" // Polish -"cią" "" "" "(tSon[polish]|tson)" // Polish -"cię" "" "[bp]" "(tSem[polish]|tsem)" // Polish -"cię" "" "" "(tSen[polish]|tsen)" // Polish -"cie" "" "" "(tSe[polish]|tse)" // Polish -"cio" "" "" "(tSo[polish]|tso)" // Polish -"ciu" "" "" "(tSu[polish]|tsu)" // Polish - -"sci" "" "$" "(Si[italian]|stsi[polish+czech]|dZi[turkish]|tSi[polish+romanian]|tS[romanian]|si)" -"sc" "" "[ei]" "(S[italian]|sts[polish+czech]|dZ[turkish]|tS[polish+romanian]|s)" -"ci" "" "$" "(tsi[polish+czech]|dZi[turkish]|tSi[polish+romanian]|tS[romanian]|si)" -"cy" "" "" "(si|tsi[polish])" -"c" "" "[ei]" "(ts[polish+czech]|dZ[turkish]|tS[polish+romanian]|k[greeklatin]|s)" - - //Processing of "s" -"sç" "" "[aeiou]" "(s|stS[turkish])" -"ssz" "" "" "S" // polish -"sz" "^" "" "(S|s[hungarian])" // polish -"sz" "" "$" "(S|s[hungarian])" // polish -"sz" "" "" "(S|s[hungarian]|sts[german])" // polish -"ssp" "" "" "(Sp[german]|sp)" -"sp" "" "" "(Sp[german]|sp)" -"sst" "" "" "(St[german]|st)" -"st" "" "" "(St[german]|st)" -"ss" "" "" "s" -"sj" "^" "" "S" // dutch -"sj" "" "$" "S" // dutch -"sj" "" "" "(sj|S[dutch]|sx[spanish]|sZ[romanian+turkish])" - -"sia" "" "" "(Sa[polish]|sa[polish]|sja)" -"sią" "" "[bp]" "(Som[polish]|som)" // polish -"sią" "" "" "(Son[polish]|son)" // polish -"się" "" "[bp]" "(Sem[polish]|sem)" // polish -"się" "" "" "(Sen[polish]|sen)" // polish -"sie" "" "" "(se|sje|Se[polish]|zi[german])" - -"sio" "" "" "(So[polish]|so)" -"siu" "" "" "(Su[polish]|sju)" - -"si" "[äöëaáuiíoóeéêy]" "" "(Si[polish]|si|zi[portuguese+french+italian+german])" -"si" "" "" "(Si[polish]|si|zi[german])" -"s" "[aáuiíoóeéêy]" "[aáuíoóeéêy]" "(s|z[portuguese+french+italian+german])" -"s" "" "[aeouäöë]" "(s|z[german])" -"s" "[aeiouy]" "[dglmnrv]" "(s|z|Z[portuguese]|[french])" // Groslot -"s" "" "[dglmnrv]" "(s|z|Z[portuguese])" - - //Processing of "g" -"gue" "" "$" "(k[french]|gve)" // portuguese+spanish -"gu" "" "[ei]" "(g[french]|gv[portuguese+spanish])" // portuguese+spanish -"gu" "" "[ao]" "gv" // portuguese+spanish -"guy" "" "" "gi" // french - -"gli" "" "" "(glI|l[italian])" -"gni" "" "" "(gnI|ni[italian+french])" -"gn" "" "[aeou]" "(n[italian+french]|nj[italian+french]|gn)" - -"ggie" "" "" "(je[greeklatin]|dZe)" // dZ is Italian -"ggi" "" "[aou]" "(j[greeklatin]|dZ)" // dZ is Italian - -"ggi" "[yaeiou]" "[aou]" "(gI|dZ[italian]|j[greeklatin])" -"gge" "[yaeiou]" "" "(gE|xe[spanish]|gZe[portuguese+french]|dZe[english+romanian+italian+spanish]|je[greeklatin])" -"ggi" "[yaeiou]" "" "(gI|xi[spanish]|gZi[portuguese+french]|dZi[english+romanian+italian+spanish]|i[greeklatin])" -"ggi" "" "[aou]" "(gI|dZ[italian]|j[greeklatin])" - -"gie" "" "$" "(ge|gi[german]|ji[french]|dZe[italian])" -"gie" "" "" "(ge|gi[german]|dZe[italian]|je[greeklatin])" -"gi" "" "[aou]" "(i[greeklatin]|dZ)" // dZ is Italian - -"ge" "[yaeiou]" "" "(gE|xe[spanish]|Ze[portuguese+french]|dZe[english+romanian+italian+spanish])" -"gi" "[yaeiou]" "" "(gI|xi[spanish]|Zi[portuguese+french]|dZi[english+romanian+italian+spanish])" -"ge" "" "" "(gE|xe[spanish]|hE[russian]|je[greeklatin]|Ze[portuguese+french]|dZe[english+romanian+italian+spanish])" -"gi" "" "" "(gI|xi[spanish]|hI[russian]|i[greeklatin]|Zi[portuguese+french]|dZi[english+romanian+italian+spanish])" -"gy" "" "[aeouáéóúüöőű]" "(gi|dj[hungarian])" -"gy" "" "" "(gi|d[hungarian])" -"g" "[yaeiou]" "[aouyei]" "g" -"g" "" "[aouei]" "(g|h[russian])" - - //Processing of "j" -"ij" "" "" "(i|ej[dutch]|ix[spanish]|iZ[french+romanian+turkish+portuguese])" -"j" "" "[aoeiuy]" "(j|dZ[english]|x[spanish]|Z[french+romanian+turkish+portuguese])" - - //Processing of "z" -"rz" "t" "" "(S[polish]|r)" // polish -"rz" "" "" "(rz|rts[german]|Z[polish]|r[polish]|rZ[polish])" - -"tz" "" "$" "(ts|tS[english+german])" -"tz" "^" "" "(ts[english+german+russian]|tS[english+german])" -"tz" "" "" "(ts[english+german+russian]|tz)" - -"zia" "" "[bcdgkpstwzż]" "(Za[polish]|za[polish]|zja)" -"zia" "" "" "(Za[polish]|zja)" -"zią" "" "[bp]" "(Zom[polish]|zom)" // polish -"zią" "" "" "(Zon[polish]|zon)" // polish -"zię" "" "[bp]" "(Zem[polish]|zem)" // polish -"zię" "" "" "(Zen[polish]|zen)" // polish -"zie" "" "[bcdgkpstwzż]" "(Ze[polish]|ze[polish]|ze|tsi[german])" -"zie" "" "" "(ze|Ze[polish]|tsi[german])" -"zio" "" "" "(Zo[polish]|zo)" -"ziu" "" "" "(Zu[polish]|zju)" -"zi" "" "" "(Zi[polish]|zi|tsi[german]|dzi[italian]|tsi[italian]|si[spanish])" - -"z" "" "$" "(s|ts[german]|ts[italian]|S[portuguese])" // ts It, s/S/Z Port, s in Sp, z Fr -"z" "" "[bdgv]" "(z|dz[italian]|Z[portuguese])" // dz It, Z/z Port, z Sp & Fr -"z" "" "[ptckf]" "(s|ts[italian]|S[portuguese])" // ts It, s/S/z Port, z/s Sp - - // VOWELS -"aue" "" "" "aue" -"oue" "" "" "(oue|ve[french])" -"eau" "" "" "o" // French - -"ae" "" "" "(Y[german]|aje[russian]|ae)" -"ai" "" "" "aj" -"au" "" "" "(au|o[french])" -"ay" "" "" "aj" -"ão" "" "" "(au|an)" // Port -"ãe" "" "" "(aj|an)" // Port -"ãi" "" "" "(aj|an)" // Port -"ea" "" "" "(ea|ja[romanian])" -"ee" "" "" "(i[english]|aje[russian]|e)" -"ei" "" "" "(aj|ej)" -"eu" "" "" "(eu|Yj[german]|ej[german]|oj[german]|Y[dutch])" -"ey" "" "" "(aj|ej)" -"ia" "" "" "ja" -"ie" "" "" "(i[german]|e[polish]|ije[russian]|Q[dutch]|je)" -"ii" "" "$" "i" // russian -"io" "" "" "(jo|e[russian])" -"iu" "" "" "ju" -"iy" "" "$" "i" // russian -"oe" "" "" "(Y[german]|oje[russian]|u[dutch]|oe)" -"oi" "" "" "oj" -"oo" "" "" "(u[english]|o)" -"ou" "" "" "(ou|u[french+greeklatin]|au[dutch])" -"où" "" "" "u" // french -"oy" "" "" "oj" -"õe" "" "" "(oj|on)" // Port -"ua" "" "" "va" -"ue" "" "" "(Q[german]|uje[russian]|ve)" -"ui" "" "" "(uj|vi|Y[dutch])" -"uu" "" "" "(u|Q[dutch])" -"uo" "" "" "(vo|o)" -"uy" "" "" "uj" -"ya" "" "" "ja" -"ye" "" "" "(je|ije[russian])" -"yi" "^" "" "i" -"yi" "" "$" "i" // russian -"yo" "" "" "(jo|e[russian])" -"yu" "" "" "ju" -"yy" "" "$" "i" // russian - -"i" "[áóéê]" "" "j" -"y" "[áóéê]" "" "j" - -"e" "^" "" "(e|je[russian])" -"e" "" "$" "(e|EE[english+french])" - -// LANGUAGE SPECIFIC CHARACTERS -"ą" "" "[bp]" "om" // polish -"ą" "" "" "on" // polish -"ä" "" "" "(Y|e)" -"á" "" "" "a" // Port & Sp -"à" "" "" "a" -"â" "" "" "a" -"ã" "" "" "(a|an)" // Port -"ă" "" "" "(e[romanian]|a)" // romanian -"č" "" "" "tS" // czech -"ć" "" "" "(tS[polish]|ts)" // polish -"ç" "" "" "(s|tS[turkish])" -"ď" "" "" "(d|dj[czech])" -"ę" "" "[bp]" "em" // polish -"ę" "" "" "en" // polish -"é" "" "" "e" -"è" "" "" "e" -"ê" "" "" "e" -"ě" "" "" "(e|je[czech])" -"ğ" "" "" "" // turkish -"í" "" "" "i" -"î" "" "" "i" -"ı" "" "" "(i|e[turkish]|[turkish])" -"ł" "" "" "l" -"ń" "" "" "(n|nj[polish])" // polish -"ñ" "" "" "(n|nj[spanish])" -"ó" "" "" "(u[polish]|o)" -"ô" "" "" "o" // Port & Fr -"õ" "" "" "(o|on[portuguese]|Y[hungarian])" -"ò" "" "" "o" // Sp & It -"ö" "" "" "Y" -"ř" "" "" "(r|rZ[czech])" -"ś" "" "" "(S[polish]|s)" -"ş" "" "" "S" // romanian+turkish -"š" "" "" "S" // czech -"ţ" "" "" "ts" // romanian -"ť" "" "" "(t|tj[czech])" -"ű" "" "" "Q" // hungarian -"ü" "" "" "(Q|u[portuguese+spanish])" -"ú" "" "" "u" -"ů" "" "" "u" // czech -"ù" "" "" "u" // french -"ý" "" "" "i" // czech -"ż" "" "" "Z" // polish -"ź" "" "" "(Z[polish]|z)" - -"ß" "" "" "s" // german -"'" "" "" "" // russian -"\"" "" "" "" // russian - -"o" "" "[bcćdgklłmnńrsśtwzźż]" "(O|P[polish])" - - // LATIN ALPHABET -"a" "" "" "A" -"b" "" "" "B" -"c" "" "" "(k|ts[polish+czech]|dZ[turkish])" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" - //array("g" "" "" "(g|x[dutch])" // Dutch sound disabled -"g" "" "" "g" -"h" "" "" "(h|x[romanian]|H[french+portuguese+italian+spanish])" -"i" "" "" "I" -"j" "" "" "(j|x[spanish]|Z[french+romanian+turkish+portuguese])" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "O" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "(s|S[portuguese])" -"t" "" "" "t" -"u" "" "" "U" -"v" "" "" "V" -"w" "" "" "(v|w[english+dutch])" -"x" "" "" "(ks|gz|S[portuguese+spanish])" // S/ks Port & Sp, gz Sp, It only ks -"y" "" "" "i" -"z" "" "" "(z|ts[german]|dz[italian]|ts[italian]|s[spanish])" // ts/dz It, z Port & Fr, z/s Sp diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_arabic.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_arabic.txt deleted file mode 100644 index 9d530c07..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_arabic.txt +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// General -"ا" "" "" "a" // alif isol & init -"ب" "" "$" "b" -"ب" "" "" "b1" // ba' isol -"ت" "" "$" "t" -"ت" "" "" "t1" // ta' isol -"ث" "" "$" "t" -"ث" "" "" "t1" // tha' isol -"ج" "" "$" "(dZ|Z)" -"ج" "" "" "(dZ1|Z1)" // jim isol -"ح" "^" "" "1" -"ح" "" "$" "1" -"ح" "" "" "(h1|1)" // h.a' isol -"خ" "" "$" "x" -"خ" "" "" "x1" // kha' isol -"د" "" "$" "d" -"د" "" "" "d1" // dal isol & init -"ذ" "" "$" "d" -"ذ" "" "" "d1" // dhal isol & init -"ر" "" "$" "r" -"ر" "" "" "r1" // ra' isol & init -"ز" "" "$" "z" -"ز" "" "" "z1" // za' isol & init -"س" "" "$" "s" -"س" "" "" "s1" // sin isol -"ش" "" "$" "S" -"ش" "" "" "S1" // shin isol -"ص" "" "$" "s" -"ص" "" "" "s1" // s.ad isol -"ض" "" "$" "d" -"ض" "" "" "d1" // d.ad isol -"ط" "" "$" "t" -"ط" "" "" "t1" // t.a' isol -"ظ" "" "$" "z" -"ظ" "" "" "z1" // z.a' isol -"ع" "^" "" "1" -"ع" "" "$" "1" -"ع" "" "" "(h1|1)" // ayin isol -"غ" "" "$" "g" -"غ" "" "" "g1" // ghayin isol -"ف" "" "$" "f" -"ف" "" "" "f1" // fa' isol -"ق" "" "$" "k" -"ق" "" "" "k1" // qaf isol -"ك" "" "$" "k" -"ك" "" "" "k1" // kaf isol -"ل" "" "$" "l" -"ل" "" "" "l1" // lam isol -"م" "" "$" "m" -"م" "" "" "m1" // mim isol -"ن" "" "$" "n" -"ن" "" "" "n1" // nun isol -"ه" "^" "" "1" -"ه" "" "$" "1" -"ه" "" "" "(h1|1)" // h isol -"و" "" "$" "(u|v)" -"و" "" "" "(u|v1)" // waw, isol + init -"ي‎" "" "$" "(i|j)" -"ي‎" "" "" "(i|j1)" // ya' isol diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_cyrillic.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_cyrillic.txt deleted file mode 100644 index 6237de43..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_cyrillic.txt +++ /dev/null @@ -1,99 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERAL -"ця" "" "" "tsa" -"цю" "" "" "tsu" -"циа" "" "" "tsa" -"цие" "" "" "tse" -"цио" "" "" "tso" -"циу" "" "" "tsu" -"сие" "" "" "se" -"сио" "" "" "so" -"зие" "" "" "ze" -"зио" "" "" "zo" -"с" "" "с" "" - -"гауз" "" "$" "haus" -"гаус" "" "$" "haus" -"гольц" "" "$" "holts" -"геймер" "" "$" "(hejmer|hajmer)" -"гейм" "" "$" "(hejm|hajm)" -"гоф" "" "$" "hof" -"гер" "" "$" "ger" -"ген" "" "$" "gen" -"гин" "" "$" "gin" -"г" "(й|ё|я|ю|ы|а|е|о|и|у)" "(а|е|о|и|у)" "g" -"г" "" "(а|е|о|и|у)" "(g|h)" - -"ля" "" "" "la" -"лю" "" "" "lu" -"лё" "" "" "(le|lo)" -"лио" "" "" "(le|lo)" -"ле" "" "" "(lE|lo)" - -"ийе" "" "" "je" -"ие" "" "" "je" -"ыйе" "" "" "je" -"ые" "" "" "je" -"ий" "" "(а|о|у)" "j" -"ый" "" "(а|о|у)" "j" -"ий" "" "$" "i" -"ый" "" "$" "i" - -"ей" "^" "" "(jej|ej)" -"е" "(а|е|о|у)" "" "je" -"е" "^" "" "je" -"эй" "" "" "ej" -"ей" "" "" "ej" - -"ауе" "" "" "aue" -"ауэ" "" "" "aue" - -"а" "" "" "a" -"б" "" "" "b" -"в" "" "" "v" -"г" "" "" "g" -"д" "" "" "d" -"е" "" "" "E" -"ё" "" "" "(e|jo)" -"ж" "" "" "Z" -"з" "" "" "z" -"и" "" "" "I" -"й" "" "" "j" -"к" "" "" "k" -"л" "" "" "l" -"м" "" "" "m" -"н" "" "" "n" -"о" "" "" "o" -"п" "" "" "p" -"р" "" "" "r" -"с" "" "" "s" -"т" "" "" "t" -"у" "" "" "u" -"ф" "" "" "f" -"х" "" "" "x" -"ц" "" "" "ts" -"ч" "" "" "tS" -"ш" "" "" "S" -"щ" "" "" "StS" -"ъ" "" "" "" -"ы" "" "" "I" -"ь" "" "" "" -"э" "" "" "E" -"ю" "" "" "ju" -"я" "" "" "ja" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_czech.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_czech.txt deleted file mode 100644 index bc7a79c8..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_czech.txt +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"ch" "" "" "x" -"qu" "" "" "(k|kv)" -"aue" "" "" "aue" -"ei" "" "" "(ej|aj)" -"i" "[aou]" "" "j" -"i" "" "[aeou]" "j" - -"č" "" "" "tS" -"š" "" "" "S" -"ň" "" "" "n" -"ť" "" "" "(t|tj)" -"ď" "" "" "(d|dj)" -"ř" "" "" "(r|rZ)" - -"á" "" "" "a" -"é" "" "" "e" -"í" "" "" "i" -"ó" "" "" "o" -"ú" "" "" "u" -"ý" "" "" "i" -"ě" "" "" "(e|je)" -"ů" "" "" "u" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "ts" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "(h|g)" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "(k|kv)" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_dutch.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_dutch.txt deleted file mode 100644 index 2a69a96d..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_dutch.txt +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// CONSONANTS -"ssj" "" "" "S" -"sj" "" "" "S" -"ch" "" "" "x" -"c" "" "[eiy]" "ts" -"ck" "" "" "k" // German -"pf" "" "" "(pf|p|f)" // German -"ph" "" "" "(ph|f)" -"qu" "" "" "kv" -"th" "^" "" "t" // German -"th" "" "[äöüaeiou]" "(t|th)" // German -"th" "" "" "t" // German -"ss" "" "" "s" -"h" "[aeiouy]" "" "" - -// VOWELS -"aue" "" "" "aue" -"ou" "" "" "au" -"ie" "" "" "(Q|i)" -"uu" "" "" "(Q|u)" -"ee" "" "" "e" -"eu" "" "" "(Y|Yj)" // Dutch Y -"aa" "" "" "a" -"oo" "" "" "o" -"oe" "" "" "u" -"ij" "" "" "ej" -"ui" "" "" "(Y|uj)" -"ei" "" "" "(ej|aj)" // Dutch ej - -"i" "" "[aou]" "j" -"y" "" "[aeou]" "j" -"i" "[aou]" "" "j" -"y" "[aeou]" "" "j" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "(g|x)" -"h" "" "" "h" -"i" "" "" "(i|Q)" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "(u|Q)" -"v" "" "" "v" -"w" "" "" "(w|v)" -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_english.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_english.txt deleted file mode 100644 index db9ccecc..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_english.txt +++ /dev/null @@ -1,113 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERAL - -// CONSONANTS -"�" "" "" "" // O�Neill -"'" "" "" "" // O�Neill -"mc" "^" "" "mak" // McDonald -"tz" "" "" "ts" // Fitzgerald -"tch" "" "" "tS" -"ch" "" "" "(tS|x)" -"ck" "" "" "k" -"cc" "" "[iey]" "ks" // success, accent -"c" "" "c" "" -"c" "" "[iey]" "s" // circle - -"gh" "^" "" "g" // ghost -"gh" "" "" "(g|f|w)" // burgh | tough | bough -"gn" "" "" "(gn|n)" -"g" "" "[iey]" "(g|dZ)" // get, gem, giant, gigabyte -// "th" "" "" "(6|8|t)" -"th" "" "" "t" -"kh" "" "" "x" -"ph" "" "" "f" -"sch" "" "" "(S|sk)" -"sh" "" "" "S" -"who" "^" "" "hu" -"wh" "^" "" "w" - -"h" "" "$" "" // hard to find an example that isn't in a name -"h" "" "[^aeiou]" "" // hard to find an example that isn't in a name -"h" "^" "" "H" - -"kn" "^" "" "n" // knight -"mb" "" "$" "m" -"ng" "" "$" "(N|ng)" -"pn" "^" "" "(pn|n)" -"ps" "^" "" "(ps|s)" -"qu" "" "" "kw" -"tia" "" "" "(So|Sa)" -"tio" "" "" "So" -"wr" "^" "" "r" -"x" "^" "" "z" - -// VOWELS -"y" "^" "" "j" -"y" "^" "[aeiouy]" "j" -"yi" "^" "" "i" -"aue" "" "" "aue" -"oue" "" "" "(aue|oue)" -"ai" "" "" "(aj|ej|e)" // rain | said -"ay" "" "" "(aj|ej)" -"a" "" "[^aeiou]e" "ej" // plane -"ei" "" "" "(ej|aj|i)" // weigh | receive -"ey" "" "" "(ej|aj|i)" // hey | barley -"ear" "" "" "ia" // tear -"ea" "" "" "(i|e)" // reason | treasure -"ee" "" "" "i" // between -"e" "" "[^aeiou]e" "i" // meter -"e" "" "$" "(|E)" // blame, badge -"ie" "" "" "i" // believe -"i" "" "[^aeiou]e" "aj" // five -"oa" "" "" "ou" // toad -"oi" "" "" "oj" // join -"oo" "" "" "u" // food -"ou" "" "" "(u|ou)" // through | tough | could -"oy" "" "" "oj" // boy -"o" "" "[^aeiou]e" "ou" // rode -"u" "" "[^aeiou]e" "(ju|u)" // cute | flute -"u" "" "r" "(e|u)" // turn -- Morse disagrees, feels it should go to E - -// LATIN ALPHABET -"a" "" "" "(e|o|a)" // hat | call | part -"b" "" "" "b" -"c" "" "" "k" // candy -"d" "" "" "d" -"e" "" "" "E" // bed -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" -"j" "" "" "dZ" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "(o|a)" // hot -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "(u|a)" // put -"v" "" "" "v" -"w" "" "" "(w|v)" // the variant "v" is for spellings coming from German/Polish -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_french.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_french.txt deleted file mode 100644 index e67a0ec8..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_french.txt +++ /dev/null @@ -1,114 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERAL - -// CONSONANTS -"lt" "u" "$" "(lt|)" // Renault -"c" "n" "$" "(k|)" // Tronc -//"f" "" "" "(f|)" // Clef -"d" "" "$" "(t|)" // Durand -"g" "n" "$" "(k|)" // Gang -"p" "" "$" "(p|)" // Trop, Champ -"r" "e" "$" "(r|)" // Barbier -"t" "" "$" "(t|)" // Murat, Constant -"z" "" "$" "(s|)" - -"ds" "" "$" "(ds|)" -"ps" "" "$" "(ps|)" // Champs -"rs" "e" "$" "(rs|)" -"ts" "" "$" "(ts|)" -"s" "" "$" "(s|)" // Denis - -"x" "u" "$" "(ks|)" // Arnoux - -"s" "[aeéèêiou]" "[^aeéèêiou]" "(s|)" // Deschamps, Malesherbes, Groslot -"t" "[aeéèêiou]" "[^aeéèêiou]" "(t|)" // Petitjean - -"kh" "" "" "x" // foreign -"ph" "" "" "f" - -"ç" "" "" "s" -"x" "" "" "ks" -"ch" "" "" "S" -"c" "" "[eiyéèê]" "s" - -"gn" "" "" "(n|gn)" -"g" "" "[eiy]" "Z" -"gue" "" "$" "k" -"gu" "" "[eiy]" "g" -"aill" "" "e" "aj" // non Jewish -"ll" "" "e" "(l|j)" // non Jewish -"que" "" "$" "k" -"qu" "" "" "k" -"s" "[aeiouyéèê]" "[aeiouyéèê]" "z" -"h" "[bdgt]" "" "" // translit from Arabic - -"m" "[aeiouy]" "[aeiouy]" "m" -"m" "[aeiouy]" "" "(m|n)" // nasal - -"ou" "" "[aeio]" "v" -"u" "" "[aeio]" "v" - -// VOWELS -"aue" "" "" "aue" -"eau" "" "" "o" -"au" "" "" "(o|au)" // non Jewish -"ai" "" "" "(e|aj)" // [e] is non Jewish -"ay" "" "" "(e|aj)" // [e] is non Jewish -"é" "" "" "e" -"ê" "" "" "e" -"è" "" "" "e" -"à" "" "" "a" -"â" "" "" "a" -"où" "" "" "u" -"ou" "" "" "u" -"oi" "" "" "(oj|va)" // [va] (actually "ua") is non Jewish -"ei" "" "" "(aj|ej|e)" // [e] is non Jewish -"ey" "" "" "(aj|ej|e)" // [e] non Jewish -"eu" "" "" "(ej|Y)" // non Jewish -"y" "[ou]" "" "j" -"e" "" "$" "(e|)" -"i" "" "[aou]" "j" -"y" "" "[aoeu]" "j" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "Z" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "(u|Q)" -"v" "" "" "v" -"w" "" "" "v" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_german.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_german.txt deleted file mode 100644 index 4bb40ae2..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_german.txt +++ /dev/null @@ -1,129 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERIC - -// CONSONANTS -"ewitsch" "" "$" "evitS" -"owitsch" "" "$" "ovitS" -"evitsch" "" "$" "evitS" -"ovitsch" "" "$" "ovitS" -"witsch" "" "$" "vitS" -"vitsch" "" "$" "vitS" -"ssch" "" "" "S" -"chsch" "" "" "xS" -"sch" "" "" "S" - -"ziu" "" "" "tsu" -"zia" "" "" "tsa" -"zio" "" "" "tso" - -"chs" "" "" "ks" -"ch" "" "" "x" -"ck" "" "" "k" -"c" "" "[eiy]" "ts" - -"sp" "^" "" "Sp" -"st" "^" "" "St" -"ssp" "" "" "(Sp|sp)" -"sp" "" "" "(Sp|sp)" -"sst" "" "" "(St|st)" -"st" "" "" "(St|st)" -"pf" "" "" "(pf|p|f)" -"ph" "" "" "(ph|f)" -"qu" "" "" "kv" - -"ewitz" "" "$" "(evits|evitS)" -"ewiz" "" "$" "(evits|evitS)" -"evitz" "" "$" "(evits|evitS)" -"eviz" "" "$" "(evits|evitS)" -"owitz" "" "$" "(ovits|ovitS)" -"owiz" "" "$" "(ovits|ovitS)" -"ovitz" "" "$" "(ovits|ovitS)" -"oviz" "" "$" "(ovits|ovitS)" -"witz" "" "$" "(vits|vitS)" -"wiz" "" "$" "(vits|vitS)" -"vitz" "" "$" "(vits|vitS)" -"viz" "" "$" "(vits|vitS)" -"tz" "" "" "ts" - -"thal" "" "$" "tal" -"th" "^" "" "t" -"th" "" "[äöüaeiou]" "(t|th)" -"th" "" "" "t" -"rh" "^" "" "r" -"h" "[aeiouyäöü]" "" "" -"h" "^" "" "H" - -"ss" "" "" "s" -"s" "" "[äöüaeiouy]" "(z|s)" -"s" "[aeiouyäöüj]" "[aeiouyäöü]" "z" -"ß" "" "" "s" - - -// VOWELS -"ij" "" "$" "i" -"aue" "" "" "aue" -"ue" "" "" "Q" -"ae" "" "" "Y" -"oe" "" "" "Y" -"ü" "" "" "Q" -"ä" "" "" "(Y|e)" -"ö" "" "" "Y" -"ei" "" "" "(aj|ej)" -"ey" "" "" "(aj|ej)" -"eu" "" "" "(Yj|ej|aj|oj)" -"i" "[aou]" "" "j" -"y" "[aou]" "" "j" -"ie" "" "" "I" -"i" "" "[aou]" "j" -"y" "" "[aoeu]" "j" - -// FOREIGN LETTERs -"ñ" "" "" "n" -"ã" "" "" "a" -"ő" "" "" "o" -"ű" "" "" "u" -"ç" "" "" "s" - -// LATIN ALPHABET -"a" "" "" "A" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "O" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "U" -"v" "" "" "(f|v)" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "ts" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_greek.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_greek.txt deleted file mode 100644 index f396a65c..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_greek.txt +++ /dev/null @@ -1,97 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"αυ" "" "$" "af" // "av" before vowels and voiced consonants, "af" elsewhere -"αυ" "" "(κ|π|σ|τ|φ|θ|χ|ψ)" "af" -"αυ" "" "" "av" -"ευ" "" "$" "ef" // "ev" before vowels and voiced consonants, "ef" elsewhere -"ευ" "" "(κ|π|σ|τ|φ|θ|χ|ψ)" "ef" -"ευ" "" "" "ev" -"ηυ" "" "$" "if" // "iv" before vowels and voiced consonants, "if" elsewhere -"ηυ" "" "(κ|π|σ|τ|φ|θ|χ|ψ)" "if" -"ηυ" "" "" "iv" -"ου" "" "" "u" // [u:] - -"αι" "" "" "aj" // modern [e] -"ει" "" "" "ej" // modern [i] -"οι" "" "" "oj" // modern [i] -"ωι" "" "" "oj" -"ηι" "" "" "ej" -"υι" "" "" "i" // modern Greek "i" - -"γγ" "(ε|ι|η|α|ο|ω|υ)" "(ε|ι|η)" "(nj|j)" -"γγ" "" "(ε|ι|η)" "j" -"γγ" "(ε|ι|η|α|ο|ω|υ)" "" "(ng|g)" -"γγ" "" "" "g" -"γκ" "^" "" "g" -"γκ" "(ε|ι|η|α|ο|ω|υ)" "(ε|ι|η)" "(nj|j)" -"γκ" "" "(ε|ι|η)" "j" -"γκ" "(ε|ι|η|α|ο|ω|υ)" "" "(ng|g)" -"γκ" "" "" "g" -"γι" "" "(α|ο|ω|υ)" "j" -"γι" "" "" "(gi|i)" -"γε" "" "(α|ο|ω|υ)" "j" -"γε" "" "" "(ge|je)" - -"κζ" "" "" "gz" -"τζ" "" "" "dz" -"σ" "" "(β|γ|δ|μ|ν|ρ)" "z" - -"μβ" "" "" "(mb|b)" -"μπ" "^" "" "b" -"μπ" "(ε|ι|η|α|ο|ω|υ)" "" "mb" -"μπ" "" "" "b" // after any consonant -"ντ" "^" "" "d" -"ντ" "(ε|ι|η|α|ο|ω|υ)" "" "(nd|nt)" // Greek is "nd" -"ντ" "" "" "(nt|d)" // Greek is "d" after any consonant - -"ά" "" "" "a" -"έ" "" "" "e" -"ή" "" "" "(i|e)" -"ί" "" "" "i" -"ό" "" "" "o" -"ύ" "" "" "(Q|i|u)" -"ώ" "" "" "o" -"ΰ" "" "" "(Q|i|u)" -"ϋ" "" "" "(Q|i|u)" -"ϊ" "" "" "j" - -"α" "" "" "a" -"β" "" "" "(v|b)" // modern "v", old "b" -"γ" "" "" "g" -"δ" "" "" "d" // modern like "th" in English "them", old "d" -"ε" "" "" "e" -"ζ" "" "" "z" -"η" "" "" "(i|e)" // modern "i", old "e:" -"ι" "" "" "i" -"κ" "" "" "k" -"λ" "" "" "l" -"μ" "" "" "m" -"ν" "" "" "n" -"ξ" "" "" "ks" -"ο" "" "" "o" -"π" "" "" "p" -"ρ" "" "" "r" -"σ" "" "" "s" -"ς" "" "" "s" -"τ" "" "" "t" -"υ" "" "" "(Q|i|u)" // modern "i", old like German "ü" -"φ" "" "" "f" -"θ" "" "" "t" // old greek like "th" in English "theme" -"χ" "" "" "x" -"ψ" "" "" "ps" -"ω" "" "" "o" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_greeklatin.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_greeklatin.txt deleted file mode 100644 index 43ec3f56..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_greeklatin.txt +++ /dev/null @@ -1,118 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"au" "" "$" "af" -"au" "" "[kpstfh]" "af" -"au" "" "" "av" -"eu" "" "$" "ef" -"eu" "" "[kpstfh]" "ef" -"eu" "" "" "ev" -"ou" "" "" "u" - -"gge" "[aeiouy]" "" "(nje|je)" // aggelopoulos -"ggi" "[aeiouy]" "[aou]" "(nj|j)" -"ggi" "[aeiouy]" "" "(ni|i)" -"gge" "" "" "je" -"ggi" "" "" "i" -"gg" "[aeiouy]" "" "(ng|g)" -"gg" "" "" "g" -"gk" "^" "" "g" -"gke" "[aeiouy]" "" "(nje|je)" -"gki" "[aeiouy]" "" "(ni|i)" -"gke" "" "" "je" -"gki" "" "" "i" -"gk" "[aeiouy]" "" "(ng|g)" -"gk" "" "" "g" -"nghi" "" "[aouy]" "Nj" -"nghi" "" "" "(Ngi|Ni)" -"nghe" "" "[aouy]" "Nj" -"nghe" "" "" "(Nje|Nge)" -"ghi" "" "[aouy]" "j" -"ghi" "" "" "(gi|i)" -"ghe" "" "[aouy]" "j" -"ghe" "" "" "(je|ge)" -"ngh" "" "" "Ng" -"gh" "" "" "g" -"ngi" "" "[aouy]" "Nj" -"ngi" "" "" "(Ngi|Ni)" -"nge" "" "[aouy]" "Nj" -"nge" "" "" "(Nje|Nge)" -"gi" "" "[aouy]" "j" -"gi" "" "" "(gi|i)" // what about Pantazis = Pantagis ??? -"ge" "" "[aouy]" "j" -"ge" "" "" "(je|ge)" -"ng" "" "" "Ng" // fragakis = fraggakis = frangakis; angel = agel = aggel - -"i" "" "[aeou]" "j" -"i" "[aeou]" "" "j" -"y" "" "[aeou]" "j" -"y" "[aeou]" "" "j" -"yi" "" "[aeou]" "j" -"yi" "" "" "i" - -"ch" "" "" "x" -"kh" "" "" "x" -"dh" "" "" "d" // actually as "th" in English "that" -"dj" "" "" "dZ" // Turkish words -"ph" "" "" "f" -"th" "" "" "t" -"kz" "" "" "gz" -"tz" "" "" "dz" -"s" "" "[bgdmnr]" "z" - -"mb" "" "" "(mb|b)" // Liberis = Limperis = Limberis -"mp" "^" "" "b" -"mp" "[aeiouy]" "" "mp" -"mp" "" "" "b" -"nt" "^" "" "d" -"nt" "[aeiouy]" "" "(nd|nt)" // Greek "nd" -"nt" "" "" "(nt|d)" // Greek "d" after any consonant - -"á" "" "" "a" -"é" "" "" "e" -"í" "" "" "i" -"ó" "" "" "o" -"óu" "" "" "u" -"ú" "" "" "u" -"ý" "" "" "(i|Q|u)" // [ü] - -"a" "" "" "a" -"b" "" "" "(b|v)" // beta: modern "v", old "b" -"c" "" "" "k" -"d" "" "" "d" // modern like "th" in English "them", old "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "x" -"i" "" "" "i" -"j" "" "" "(j|Z)" // Panajotti = Panaiotti; Louijos = Louizos; Pantajis = Pantazis = Pantagis -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"ο" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" // foreign -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" // foreign -"x" "" "" "ks" -"y" "" "" "(i|Q|u)" // [ü] -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_hebrew.txt deleted file mode 100644 index 7e039d51..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_hebrew.txt +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// General = Ashkenazic - -"אי" "" "" "i" -"עי" "" "" "i" -"עו" "" "" "VV" -"או" "" "" "VV" - -"ג׳" "" "" "Z" -"ד׳" "" "" "dZ" - -"א" "" "" "L" -"ב" "" "" "b" -"ג" "" "" "g" -"ד" "" "" "d" - -"ה" "^" "" "1" -"ה" "" "$" "1" -"ה" "" "" "" - -"וו" "" "" "V" -"וי" "" "" "WW" -"ו" "" "" "W" -"ז" "" "" "z" -"ח" "" "" "X" -"ט" "" "" "T" -"יי" "" "" "i" -"י" "" "" "i" -"ך" "" "" "X" -"כ" "^" "" "K" -"כ" "" "" "k" -"ל" "" "" "l" -"ם" "" "" "m" -"מ" "" "" "m" -"ן" "" "" "n" -"נ" "" "" "n" -"ס" "" "" "s" -"ע" "" "" "L" -"ף" "" "" "f" -"פ" "" "" "f" -"ץ" "" "" "C" -"צ" "" "" "C" -"ק" "" "" "K" -"ר" "" "" "r" -"ש" "" "" "s" -"ת" "" "" "TB" // only Ashkenazic diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_hungarian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_hungarian.txt deleted file mode 100644 index 615d26a8..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_hungarian.txt +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERAL - -// CONSONANTS -"sz" "" "" "s" -"zs" "" "" "Z" -"cs" "" "" "tS" - -"ay" "" "" "(oj|aj)" -"ai" "" "" "(oj|aj)" -"aj" "" "" "(oj|aj)" - -"ei" "" "" "(aj|ej)" // German element -"ey" "" "" "(aj|ej)" // German element - -"y" "[áo]" "" "j" -"i" "[áo]" "" "j" -"ee" "" "" "(ej|e)" -"ely" "" "" "(ej|eli)" -"ly" "" "" "(j|li)" -"gy" "" "[aeouáéóúüöőű]" "dj" -"gy" "" "" "(d|gi)" -"ny" "" "[aeouáéóúüöőű]" "nj" -"ny" "" "" "(n|ni)" -"ty" "" "[aeouáéóúüöőű]" "tj" -"ty" "" "" "(t|ti)" -"qu" "" "" "(ku|kv)" -"h" "" "$" "" - -// SPECIAL VOWELS -"á" "" "" "a" -"é" "" "" "e" -"í" "" "" "i" -"ó" "" "" "o" -"ú" "" "" "u" -"ö" "" "" "Y" -"ő" "" "" "Y" -"ü" "" "" "Q" -"ű" "" "" "Q" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "ts" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "(S|s)" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_italian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_italian.txt deleted file mode 100644 index 8775eddd..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_italian.txt +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"kh" "" "" "x" // foreign - -"gli" "" "" "(l|gli)" -"gn" "" "[aeou]" "(n|nj|gn)" -"gni" "" "" "(ni|gni)" - -"gi" "" "[aeou]" "dZ" -"gg" "" "[ei]" "dZ" -"g" "" "[ei]" "dZ" -"h" "[bdgt]" "" "g" // gh is It; others from Arabic translit -"h" "" "$" "" // foreign - -"ci" "" "[aeou]" "tS" -"ch" "" "[ei]" "k" -"sc" "" "[ei]" "S" -"cc" "" "[ei]" "tS" -"c" "" "[ei]" "tS" -"s" "[aeiou]" "[aeiou]" "z" - -"i" "[aeou]" "" "j" -"i" "" "[aeou]" "j" -"y" "[aeou]" "" "j" // foreign -"y" "" "[aeou]" "j" // foreign - -"qu" "" "" "k" -"uo" "" "" "(vo|o)" -"u" "" "[aei]" "v" - -"�" "" "" "e" -"�" "" "" "e" -"�" "" "" "o" -"�" "" "" "o" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "(Z|dZ|j)" // foreign -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" // foreign -"x" "" "" "ks" // foreign -"y" "" "" "i" // foreign -"z" "" "" "(ts|dz)" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_polish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_polish.txt deleted file mode 100644 index dd72f6a0..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_polish.txt +++ /dev/null @@ -1,185 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERIC - -// CONVERTING FEMININE TO MASCULINE -"ska" "" "$" "ski" -"cka" "" "$" "tski" -"lowa" "" "$" "(lova|lof|l|el)" -"kowa" "" "$" "(kova|kof|k|ek)" -"owa" "" "$" "(ova|of|)" -"lowna" "" "$" "(lovna|levna|l|el)" -"kowna" "" "$" "(kovna|k|ek)" -"owna" "" "$" "(ovna|)" -"lówna" "" "$" "(l|el)" -"kówna" "" "$" "(k|ek)" -"ówna" "" "$" "" -"a" "" "$" "(a|i)" - -// CONSONANTS -"czy" "" "" "tSi" -"cze" "" "[bcdgkpstwzż]" "(tSe|tSF)" -"ciewicz" "" "" "(tsevitS|tSevitS)" -"siewicz" "" "" "(sevitS|SevitS)" -"ziewicz" "" "" "(zevitS|ZevitS)" -"riewicz" "" "" "rjevitS" -"diewicz" "" "" "djevitS" -"tiewicz" "" "" "tjevitS" -"iewicz" "" "" "evitS" -"ewicz" "" "" "evitS" -"owicz" "" "" "ovitS" -"icz" "" "" "itS" -"cz" "" "" "tS" -"ch" "" "" "x" - -"cia" "" "[bcdgkpstwzż]" "(tSB|tsB)" -"cia" "" "" "(tSa|tsa)" -"cią" "" "[bp]" "(tSom|tsom)" -"cią" "" "" "(tSon|tson)" -"cię" "" "[bp]" "(tSem|tsem)" -"cię" "" "" "(tSen|tsen)" -"cie" "" "[bcdgkpstwzż]" "(tSF|tsF)" -"cie" "" "" "(tSe|tse)" -"cio" "" "" "(tSo|tso)" -"ciu" "" "" "(tSu|tsu)" -"ci" "" "" "(tSi|tsI)" -"ć" "" "" "(tS|ts)" - -"ssz" "" "" "S" -"sz" "" "" "S" -"sia" "" "[bcdgkpstwzż]" "(SB|sB|sja)" -"sia" "" "" "(Sa|sja)" -"sią" "" "[bp]" "(Som|som)" -"sią" "" "" "(Son|son)" -"się" "" "[bp]" "(Sem|sem)" -"się" "" "" "(Sen|sen)" -"sie" "" "[bcdgkpstwzż]" "(SF|sF|se)" -"sie" "" "" "(Se|se)" -"sio" "" "" "(So|so)" -"siu" "" "" "(Su|sju)" -"si" "" "" "(Si|sI)" -"ś" "" "" "(S|s)" - -"zia" "" "[bcdgkpstwzż]" "(ZB|zB|zja)" -"zia" "" "" "(Za|zja)" -"zią" "" "[bp]" "(Zom|zom)" -"zią" "" "" "(Zon|zon)" -"zię" "" "[bp]" "(Zem|zem)" -"zię" "" "" "(Zen|zen)" -"zie" "" "[bcdgkpstwzż]" "(ZF|zF)" -"zie" "" "" "(Ze|ze)" -"zio" "" "" "(Zo|zo)" -"ziu" "" "" "(Zu|zju)" -"zi" "" "" "(Zi|zI)" - -"że" "" "[bcdgkpstwzż]" "(Ze|ZF)" -"że" "" "[bcdgkpstwzż]" "(Ze|ZF|ze|zF)" -"że" "" "" "Ze" -"źe" "" "" "(Ze|ze)" -"ży" "" "" "Zi" -"źi" "" "" "(Zi|zi)" -"ż" "" "" "Z" -"ź" "" "" "(Z|z)" - -"rze" "t" "" "(Se|re)" -"rze" "" "" "(Ze|re|rZe)" -"rzy" "t" "" "(Si|ri)" -"rzy" "" "" "(Zi|ri|rZi)" -"rz" "t" "" "(S|r)" -"rz" "" "" "(Z|r|rZ)" - -"lio" "" "" "(lo|le)" -"ł" "" "" "l" -"ń" "" "" "n" -"qu" "" "" "k" -"s" "" "s" "" - -// VOWELS -"ó" "" "" "(u|o)" -"ą" "" "[bp]" "om" -"ę" "" "[bp]" "em" -"ą" "" "" "on" -"ę" "" "" "en" - -"ije" "" "" "je" -"yje" "" "" "je" -"iie" "" "" "je" -"yie" "" "" "je" -"iye" "" "" "je" -"yye" "" "" "je" - -"ij" "" "[aou]" "j" -"yj" "" "[aou]" "j" -"ii" "" "[aou]" "j" -"yi" "" "[aou]" "j" -"iy" "" "[aou]" "j" -"yy" "" "[aou]" "j" - -"rie" "" "" "rje" -"die" "" "" "dje" -"tie" "" "" "tje" -"ie" "" "[bcdgkpstwzż]" "F" -"ie" "" "" "e" - -"aue" "" "" "aue" -"au" "" "" "au" - -"ei" "" "" "aj" -"ey" "" "" "aj" -"ej" "" "" "aj" - -"ai" "" "" "aj" -"ay" "" "" "aj" -"aj" "" "" "aj" - -"i" "[aeou]" "" "j" -"y" "[aeou]" "" "j" -"i" "" "[aou]" "j" -"y" "" "[aeou]" "j" - -"a" "" "[bcdgkpstwzż]" "B" -"e" "" "[bcdgkpstwzż]" "(E|F)" -"o" "" "[bcćdgklłmnńrsśtwzźż]" "P" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "ts" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "(h|x)" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "I" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_portuguese.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_portuguese.txt deleted file mode 100644 index 74de1d74..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_portuguese.txt +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"kh" "" "" "x" // foreign -"ch" "" "" "S" -"ss" "" "" "s" -"sc" "" "[ei]" "s" -"sç" "" "[aou]" "s" -"ç" "" "" "s" -"c" "" "[ei]" "s" -// "c" "" "[aou]" "(k|C)" - -"s" "^" "" "s" -"s" "[aáuiíoóeéêy]" "[aáuiíoóeéêy]" "z" -"s" "" "[dglmnrv]" "(Z|S)" // Z is Brazil - -"z" "" "$" "(Z|s|S)" // s and S in Brazil -"z" "" "[bdgv]" "(Z|z)" // Z in Brazil -"z" "" "[ptckf]" "(s|S|z)" // s and S in Brazil - -"gu" "" "[eiu]" "g" -"gu" "" "[ao]" "gv" -"g" "" "[ei]" "Z" -"qu" "" "[eiu]" "k" -"qu" "" "[ao]" "kv" - -"uo" "" "" "(vo|o|u)" -"u" "" "[aei]" "v" - -"lh" "" "" "l" -"nh" "" "" "nj" -"h" "[bdgt]" "" "" // translit. from Arabic -"h" "" "$" "" // foreign - -"ex" "" "[aáuiíoóeéêy]" "(ez|eS|eks)" // ez in Brazil -"ex" "" "[cs]" "e" - -"y" "[aáuiíoóeéê]" "" "j" -"y" "" "[aeiíou]" "j" -"m" "" "[bcdfglnprstv]" "(m|n)" // maybe to add a rule for m/n before a consonant that disappears [preceding vowel becomes nasalized] -"m" "" "$" "(m|n)" // maybe to add a rule for final m/n that disappears [preceding vowel becomes nasalized] - -"ão" "" "" "(au|an|on)" -"ãe" "" "" "(aj|an)" -"ãi" "" "" "(aj|an)" -"õe" "" "" "(oj|on)" -"i" "[aáuoóeéê]" "" "j" -"i" "" "[aeou]" "j" - -"â" "" "" "a" -"à" "" "" "a" -"á" "" "" "a" -"ã" "" "" "(a|an|on)" -"é" "" "" "e" -"ê" "" "" "e" -"í" "" "" "i" -"ô" "" "" "o" -"ó" "" "" "o" -"õ" "" "" "(o|on)" -"ú" "" "" "u" -"ü" "" "" "u" - -"aue" "" "" "aue" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "(e|i)" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "Z" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "(o|u)" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "S" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "(S|ks)" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_romanian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_romanian.txt deleted file mode 100644 index a6d0aac8..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_romanian.txt +++ /dev/null @@ -1,64 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"ce" "" "" "tSe" -"ci" "" "" "(tSi|tS)" -"ch" "" "[ei]" "k" -"ch" "" "" "x" // foreign - -"gi" "" "" "(dZi|dZ)" -"g" "" "[ei]" "dZ" -"gh" "" "" "g" - -"i" "[aeou]" "" "j" -"i" "" "[aeou]" "j" -"ţ" "" "" "ts" -"ş" "" "" "S" -"qu" "" "" "k" - -"î" "" "" "i" -"ea" "" "" "ja" -"ă" "" "" "(e|a)" -"aue" "" "" "aue" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "(x|h)" -"i" "" "" "I" -"j" "" "" "Z" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_russian.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_russian.txt deleted file mode 100644 index 310be844..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_russian.txt +++ /dev/null @@ -1,142 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -//GENERAL// CONVERTING FEMININE TO MASCULINE -"yna" "" "$" "(in|ina)" -"ina" "" "$" "(in|ina)" -"liova" "" "$" "(lof|lef)" -"lova" "" "$" "(lof|lef|lova)" -"ova" "" "$" "(of|ova)" -"eva" "" "$" "(ef|ova)" -"aia" "" "$" "(aja|i)" -"aja" "" "$" "(aja|i)" -"aya" "" "$" "(aja|i)" - -//SPECIAL CONSONANTS -"tsya" "" "" "tsa" -"tsyu" "" "" "tsu" -"tsia" "" "" "tsa" -"tsie" "" "" "tse" -"tsio" "" "" "tso" -"tsye" "" "" "tse" -"tsyo" "" "" "tso" -"tsiu" "" "" "tsu" -"sie" "" "" "se" -"sio" "" "" "so" -"zie" "" "" "ze" -"zio" "" "" "zo" -"sye" "" "" "se" -"syo" "" "" "so" -"zye" "" "" "ze" -"zyo" "" "" "zo" - -"ger" "" "$" "ger" -"gen" "" "$" "gen" -"gin" "" "$" "gin" -"gg" "" "" "g" -"g" "[jaeoiuy]" "[aeoiu]" "g" -"g" "" "[aeoiu]" "(g|h)" - -"kh" "" "" "x" -"ch" "" "" "(tS|x)" -"sch" "" "" "(StS|S)" -"ssh" "" "" "S" -"sh" "" "" "S" -"zh" "" "" "Z" -"tz" "" "$" "ts" -"tz" "" "" "(ts|tz)" -"c" "" "[iey]" "s" -"qu" "" "" "(kv|k)" -"s" "" "s" "" - -//SPECIAL VOWELS -"lya" "" "" "la" -"lyu" "" "" "lu" -"lia" "" "" "la" // not in DJSRE -"liu" "" "" "lu" // not in DJSRE -"lja" "" "" "la" // not in DJSRE -"lju" "" "" "lu" // not in DJSRE -"le" "" "" "(lo|lE)" //not in DJSRE -"lyo" "" "" "(lo|le)" //not in DJSRE -"lio" "" "" "(lo|le)" - -"ije" "" "" "je" -"ie" "" "" "je" -"iye" "" "" "je" -"iie" "" "" "je" -"yje" "" "" "je" -"ye" "" "" "je" -"yye" "" "" "je" -"yie" "" "" "je" - -"ij" "" "[aou]" "j" -"iy" "" "[aou]" "j" -"ii" "" "[aou]" "j" -"yj" "" "[aou]" "j" -"yy" "" "[aou]" "j" -"yi" "" "[aou]" "j" - -"io" "" "" "(jo|e)" -"i" "" "[au]" "j" -"i" "[aeou]" "" "j" -"yo" "" "" "(jo|e)" -"y" "" "[au]" "j" -"y" "[aeiou]" "" "j" - -"ii" "" "$" "i" -"iy" "" "$" "i" -"yy" "" "$" "i" -"yi" "" "$" "i" -"yj" "" "$" "i" -"ij" "" "$" "i" - -"e" "^" "" "(je|E)" -"ee" "" "" "(aje|i)" -"e" "[aou]" "" "je" -"oo" "" "" "(oo|u)" -"'" "" "" "" -"\"" "" "" "" - -"aue" "" "" "aue" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "E" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "I" -"j" "" "" "j" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "ks" -"y" "" "" "I" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_spanish.txt deleted file mode 100644 index 3ba26958..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_spanish.txt +++ /dev/null @@ -1,85 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// GENERAL - -// Includes both Spanish (Castillian) & Catalan - -// CONSONANTS -"ñ" "" "" "(n|nj)" -"ny" "" "" "nj" // Catalan -"ç" "" "" "s" // Catalan - -"ig" "[aeiou]" "" "(tS|ig)" // tS is Catalan -"ix" "[aeiou]" "" "S" // Catalan -"tx" "" "" "tS" // Catalan -"tj" "" "$" "tS" // Catalan -"tj" "" "" "dZ" // Catalan -"tg" "" "" "(tg|dZ)" // dZ is Catalan -"ch" "" "" "(tS|dZ)" // dZ is typical for Argentina -"bh" "" "" "b" // translit. from Arabic -"h" "[dgt]" "" "" // translit. from Arabic -"h" "" "$" "" // foreign -//"ll" "" "" "(l|Z)" // Z is typical for Argentina, only Ashkenazic -"m" "" "[bpvf]" "(m|n)" -"c" "" "[ei]" "s" -// "c" "" "[aou]" "(k|C)" -"gu" "" "[ei]" "(g|gv)" // "gv" because "u" can actually be "ü" -"g" "" "[ei]" "(x|g|dZ)" // "g" only for foreign words; dZ is Catalan -"qu" "" "" "k" - -"uo" "" "" "(vo|o)" -"u" "" "[aei]" "v" - -// SPECIAL VOWELS -"ü" "" "" "v" -"á" "" "" "a" -"é" "" "" "e" -"í" "" "" "i" -"ó" "" "" "o" -"ú" "" "" "u" -"à" "" "" "a" // Catalan -"è" "" "" "e" // Catalan -"ò" "" "" "o" // Catalan - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "B" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "(x|Z)" // Z is Catalan -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "V" -"w" "" "" "v" // foreign words -"x" "" "" "(ks|gz|S)" // ks is Spanish, all are Catalan -"y" "" "" "(i|j)" -"z" "" "" "(z|s)" // as "c" befoire "e" or "i", in Spain it is like unvoiced English "th" diff --git a/target/classes/org/apache/commons/codec/language/bm/gen_rules_turkish.txt b/target/classes/org/apache/commons/codec/language/bm/gen_rules_turkish.txt deleted file mode 100644 index c639a133..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/gen_rules_turkish.txt +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"ç" "" "" "tS" -"ğ" "" "" "" // to show that previous vowel is long -"ş" "" "" "S" -"ü" "" "" "Q" -"ö" "" "" "Y" -"ı" "" "" "(e|i|)" // as "e" in English "label" - -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "dZ" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "Z" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" // foreign words -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" // foreign words -"x" "" "" "ks" // foreign words -"y" "" "" "j" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/lang.txt b/target/classes/org/apache/commons/codec/language/bm/lang.txt deleted file mode 100644 index ae6f28c4..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/lang.txt +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_approx_any.txt b/target/classes/org/apache/commons/codec/language/bm/sep_approx_any.txt deleted file mode 100644 index 390419e0..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_approx_any.txt +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// SEPHARDIC - -"E" "" "" "" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_approx_common.txt b/target/classes/org/apache/commons/codec/language/bm/sep_approx_common.txt deleted file mode 100644 index e744d323..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_approx_common.txt +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include sep_exact_approx_common - -"bens" "^" "" "(binz|s)" -"benS" "^" "" "(binz|s)" -"ben" "^" "" "(bin|)" - -"abens" "^" "" "(abinz|binz|s)" -"abenS" "^" "" "(abinz|binz|s)" -"aben" "^" "" "(abin|bin|)" - -"els" "^" "" "(ilz|alz|s)" -"elS" "^" "" "(ilz|alz|s)" -"el" "^" "" "(il|al|)" -"als" "^" "" "(alz|s)" -"alS" "^" "" "(alz|s)" -"al" "^" "" "(al|)" - -//"dels" "^" "" "(dilz|s)" -//"delS" "^" "" "(dilz|s)" -"del" "^" "" "(dil|)" -"dela" "^" "" "(dila|)" -//"delo" "^" "" "(dila|)" -"da" "^" "" "(da|)" -"de" "^" "" "(di|)" -//"des" "^" "" "(dis|dAs|)" -//"di" "^" "" "(di|)" -//"dos" "^" "" "(das|dus|)" - -"oa" "" "" "(va|a|D)" -"oe" "" "" "(vi|D)" -"ae" "" "" "D" - -/// "s" "" "$" "(s|)" // Attia(s) -/// "C" "" "" "s" // "c" could actually be "�" - -"n" "" "[bp]" "m" - -"h" "" "" "(|h|f)" // sound "h" (absent) can be expressed via /x/, Cojab in Spanish = Kohab ; Hakim = Fakim -"x" "" "" "h" - -// DIPHTHONGS ARE APPROXIMATELY equivalent -"aja" "^" "" "(Da|ia)" -"aje" "^" "" "(Di|Da|i|ia)" -"aji" "^" "" "(Di|i)" -"ajo" "^" "" "(Du|Da|iu|ia)" -"aju" "^" "" "(Du|iu)" - -"aj" "" "" "D" -"ej" "" "" "D" -"oj" "" "" "D" -"uj" "" "" "D" -"au" "" "" "D" -"eu" "" "" "D" -"ou" "" "" "D" - -"a" "^" "" "(a|)" // Arabic - -"ja" "^" "" "ia" -"je" "^" "" "i" -"jo" "^" "" "(iu|ia)" -"ju" "^" "" "iu" - -"ja" "" "" "a" -"je" "" "" "i" -"ji" "" "" "i" -"jo" "" "" "u" -"ju" "" "" "u" - -"j" "" "" "i" - -// CONSONANTS {z & Z & dZ; s & S} are approximately interchangeable -"s" "" "[rmnl]" "z" -"S" "" "[rmnl]" "z" -"s" "[rmnl]" "" "z" -"S" "[rmnl]" "" "z" - -"dS" "" "$" "S" -"dZ" "" "$" "S" -"Z" "" "$" "S" -"S" "" "$" "(S|s)" -"z" "" "$" "(S|s)" - -"S" "" "" "s" -"dZ" "" "" "z" -"Z" "" "" "z" - -"i" "" "$" "(i|)" // often in Arabic -"e" "" "" "i" - -"o" "" "$" "(a|u)" -"o" "" "" "u" - -// special character to deal correctly in Hebrew match -"B" "" "" "b" -"V" "" "" "v" - -// Arabic -"p" "^" "" "b" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_approx_french.txt b/target/classes/org/apache/commons/codec/language/bm/sep_approx_french.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_approx_french.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_approx_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/sep_approx_hebrew.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_approx_hebrew.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_approx_italian.txt b/target/classes/org/apache/commons/codec/language/bm/sep_approx_italian.txt deleted file mode 100644 index 58fe459e..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_approx_italian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include sep_approx_french \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_approx_portuguese.txt b/target/classes/org/apache/commons/codec/language/bm/sep_approx_portuguese.txt deleted file mode 100644 index 4bca8462..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_approx_portuguese.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include sep_approx_french diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_approx_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/sep_approx_spanish.txt deleted file mode 100644 index 4bca8462..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_approx_spanish.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include sep_approx_french diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_any.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_any.txt deleted file mode 100644 index d4bf51e6..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_any.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"E" "" "" "e" \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_approx_common.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_approx_common.txt deleted file mode 100644 index 1f4e8641..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_approx_common.txt +++ /dev/null @@ -1,79 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Sephardic - -"h" "" "$" "" - -// VOICED - UNVOICED CONSONANTS -"b" "" "[fktSs]" "p" -"b" "" "p" "" -"b" "" "$" "p" -"p" "" "[vgdZz]" "b" -"p" "" "b" "" - -"v" "" "[pktSs]" "f" -"v" "" "f" "" -"v" "" "$" "f" -"f" "" "[vbgdZz]" "v" -"f" "" "v" "" - -"g" "" "[pftSs]" "k" -"g" "" "k" "" -"g" "" "$" "k" -"k" "" "[vbdZz]" "g" -"k" "" "g" "" - -"d" "" "[pfkSs]" "t" -"d" "" "t" "" -"d" "" "$" "t" -"t" "" "[vbgZz]" "d" -"t" "" "d" "" - -"s" "" "dZ" "" -"s" "" "tS" "" - -"z" "" "[pfkSt]" "s" -"z" "" "[sSzZ]" "" -"s" "" "[sSzZ]" "" -"Z" "" "[sSzZ]" "" -"S" "" "[sSzZ]" "" - -// SIMPLIFICATION OF CONSONANT CLUSTERS -"nm" "" "" "m" - -// DOUBLE --> SINGLE -"ji" "^" "" "i" - -"a" "" "a" "" -"b" "" "b" "" -"d" "" "d" "" -"e" "" "e" "" -"f" "" "f" "" -"g" "" "g" "" -"i" "" "i" "" -"k" "" "k" "" -"l" "" "l" "" -"m" "" "m" "" -"n" "" "n" "" -"o" "" "o" "" -"p" "" "p" "" -"r" "" "r" "" -"t" "" "t" "" -"u" "" "u" "" -"v" "" "v" "" -"z" "" "z" "" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_common.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_common.txt deleted file mode 100644 index b97c5891..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_common.txt +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include sep_exact_approx_common - -"h" "" "" "" -//"C" "" "" "k" // c that can actually be � - -// VOICED - UNVOICED CONSONANTS -"s" "[^t]" "[bgZd]" "z" -"Z" "" "[pfkst]" "S" -"Z" "" "$" "S" -"S" "" "[bgzd]" "Z" -"z" "" "$" "s" - -//special character to deal correctly in Hebrew match -"B" "" "" "b" -"V" "" "" "v" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_french.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_french.txt deleted file mode 100644 index ea75dc4d..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_french.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Sephadic \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_hebrew.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_hebrew.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_italian.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_italian.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_italian.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_portuguese.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_portuguese.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_portuguese.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_exact_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/sep_exact_spanish.txt deleted file mode 100644 index 09900046..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_exact_spanish.txt +++ /dev/null @@ -1,18 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// empty \ No newline at end of file diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_hebrew_common.txt b/target/classes/org/apache/commons/codec/language/bm/sep_hebrew_common.txt deleted file mode 100644 index 00357f9a..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_hebrew_common.txt +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include sep_exact_approx_common - -"E" "" "" "" // final French "e": only in Sephardic - -"ts" "" "" "C" // for not confusion Gutes [=guts] and Guts [=guc] -"tS" "" "" "C" // same reason -"S" "" "" "s" -"p" "" "" "f" -"b" "^" "" "b" -"b" "" "" "(b|v)" - -"ja" "" "" "i" -"je" "" "" "i" -"aj" "" "" "i" -"j" "" "" "i" - -"a" "^" "" "1" -"e" "^" "" "1" -"a" "" "$" "1" -"e" "" "$" "1" - -"a" "" "" "" -"e" "" "" "" - -"oj" "^" "" "(u|vi)" -"uj" "^" "" "(u|vi)" - -"oj" "" "" "u" -"uj" "" "" "u" - -"ou" "^" "" "(u|v|1)" -"o" "^" "" "(u|v|1)" -"u" "^" "" "(u|v|1)" - -"o" "" "$" "(u|1)" -"u" "" "$" "(u|1)" - -"ou" "" "" "u" -"o" "" "" "u" - -"VV" "" "" "u" // alef/ayin + vov from ruleshebrew -"L" "^" "" "1" // alef/ayin from ruleshebrew -"L" "" "$" "1" // alef/ayin from ruleshebrew -"L" "" "" " " // alef/ayin from ruleshebrew -"WW" "^" "" "(vi|u)" // vav-yod from ruleshebrew -"WW" "" "" "u" // vav-yod from ruleshebrew -"W" "^" "" "(u|v)" // vav from ruleshebrew -"W" "" "" "u" // vav from ruleshebrew - -// "g" "" "" "(g|Z)" -// "z" "" "" "(z|Z)" -// "d" "" "" "(d|dZ)" - -"T" "" "" "t" // tet from ruleshebrew - -// "k" "" "" "(k|x)" -// "x" "" "" "(k|x)" -"K" "" "" "k" // kof and initial kaf from ruleshebrew -"X" "" "" "x" // khet and final kaf from ruleshebrew - -// special for Spanish initial B/V -"B" "" "" "v" -"V" "" "" "b" - -"H" "^" "" "(x|1)" -"H" "" "$" "(x|1)" -"H" "" "" "(x|)" -"h" "^" "" "1" -"h" "" "" "" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_lang.txt b/target/classes/org/apache/commons/codec/language/bm/sep_lang.txt deleted file mode 100644 index bd61f465..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_lang.txt +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// SEPHARDIC - -// 1. following are rules to accept the language -// 1.1 Special letter combinations -eau french true -ou french true -gni italian+french true -tx spanish true -tj spanish true -gy french true -guy french true - -sh spanish+portuguese true // English, but no sign for /sh/ in these languages - -lh portuguese true -nh portuguese true -ny spanish true - -gue spanish+french true -gui spanish+french true -gia italian true -gie italian true -gio italian true -giu italian true - -// 1.2 special characters -ñ spanish true -â portuguese+french true -á portuguese+spanish true -à portuguese true -ã portuguese true -ê french+portuguese true -í portuguese+spanish true -î french true -ô french+portuguese true -õ portuguese true -ò italian+spanish true -ú portuguese+spanish true -ù french true -ü portuguese+spanish true - -// Hebrew -א hebrew true -ב hebrew true -ג hebrew true -ד hebrew true -ה hebrew true -ו hebrew true -ז hebrew true -ח hebrew true -ט hebrew true -י hebrew true -כ hebrew true -ל hebrew true -מ hebrew true -נ hebrew true -ס hebrew true -ע hebrew true -פ hebrew true -צ hebrew true -ק hebrew true -ר hebrew true -ש hebrew true -ת hebrew true - -// 2. following are rules to reject the language - -// Every Latin character word has at least one Latin vowel -a hebrew false -o hebrew false -e hebrew false -i hebrew false -y hebrew false -u hebrew false - -kh spanish false -gua italian false -guo italian false -ç italian false -cha italian false -cho italian false -chu italian false -j italian false -dj spanish false -sce french false -sci french false -ó french false -è portuguese false diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_languages.txt b/target/classes/org/apache/commons/codec/language/bm/sep_languages.txt deleted file mode 100644 index 9a1935a8..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_languages.txt +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -any -french -hebrew -italian -portuguese -spanish diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_rules_any.txt b/target/classes/org/apache/commons/codec/language/bm/sep_rules_any.txt deleted file mode 100644 index fc08b5a1..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_rules_any.txt +++ /dev/null @@ -1,155 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// SEPHARDIC: INCORPORATES Portuguese + Italian + Spanish(+Catalan) + French - -// CONSONANTS -"ph" "" "" "f" // foreign -"sh" "" "" "S" // foreign -"kh" "" "" "x" // foreign - -"gli" "" "" "(gli|l[italian])" -"gni" "" "" "(gni|ni[italian+french])" -"gn" "" "[aeou]" "(n[italian+french]|nj[italian+french]|gn)" -"gh" "" "" "g" // It + translit. from Arabic -"dh" "" "" "d" // translit. from Arabic -"bh" "" "" "b" // translit. from Arabic -"th" "" "" "t" // translit. from Arabic -"lh" "" "" "l" // Port -"nh" "" "" "nj" // Port - -"ig" "[aeiou]" "" "(ig|tS[spanish])" -"ix" "[aeiou]" "" "S" // Sp -"tx" "" "" "tS" // Sp -"tj" "" "$" "tS" // Sp -"tj" "" "" "dZ" // Sp -"tg" "" "" "(tg|dZ[spanish])" - -"gi" "" "[aeou]" "dZ" // italian -"g" "" "y" "Z" // french -"gg" "" "[ei]" "(gZ[portuguese+french]|dZ[italian+spanish]|x[spanish])" -"g" "" "[ei]" "(Z[portuguese+french]|dZ[italian+spanish]|x[spanish])" - -"guy" "" "" "gi" -"gue" "" "$" "(k[french]|ge)" -"gu" "" "[ei]" "(g|gv)" // not It -"gu" "" "[ao]" "gv" // not It - -"ñ" "" "" "(n|nj)" -"ny" "" "" "nj" - -"sc" "" "[ei]" "(s|S[italian])" -"sç" "" "[aeiou]" "s" // not It -"ss" "" "" "s" -"ç" "" "" "s" // not It - -"ch" "" "[ei]" "(k[italian]|S[portuguese+french]|tS[spanish]|dZ[spanish])" -"ch" "" "" "(S|tS[spanish]|dZ[spanish])" - -"ci" "" "[aeou]" "(tS[italian]|si)" -"cc" "" "[eiyéèê]" "(tS[italian]|ks[portuguese+french+spanish])" -"c" "" "[eiyéèê]" "(tS[italian]|s[portuguese+french+spanish])" -//"c" "" "[aou]" "(k|C[portuguese+spanish])" // "C" means that the actual letter could be "ç" (cedille omitted) - -"s" "^" "" "s" -"s" "[aáuiíoóeéêy]" "[aáuiíoóeéêy]" "(s[spanish]|z[portuguese+french+italian])" -"s" "" "[dglmnrv]" "(z|Z[portuguese])" - -"z" "" "$" "(s|ts[italian]|S[portuguese])" // ts It, s/S/Z Port, s in Sp, z Fr -"z" "" "[bdgv]" "(z|dz[italian]|Z[portuguese])" // dz It, Z/z Port, z Sp & Fr -"z" "" "[ptckf]" "(s|ts[italian]|S[portuguese])" // ts It, s/S/z Port, z/s Sp -"z" "" "" "(z|dz[italian]|ts[italian]|s[spanish])" // ts/dz It, z Port & Fr, z/s Sp - -"que" "" "$" "(k[french]|ke)" -"qu" "" "[eiu]" "k" -"qu" "" "[ao]" "(kv|k)" // k is It - -"ex" "" "[aáuiíoóeéêy]" "(ez[portuguese]|eS[portuguese]|eks|egz)" -"ex" "" "[cs]" "(e[portuguese]|ek)" - -"m" "" "[cdglnrst]" "(m|n[portuguese])" -"m" "" "[bfpv]" "(m|n[portuguese+spanish])" -"m" "" "$" "(m|n[portuguese])" - -"b" "^" "" "(b|V[spanish])" -"v" "^" "" "(v|B[spanish])" - -// VOWELS -"eau" "" "" "o" // Fr - -"ouh" "" "[aioe]" "(v[french]|uh)" -"uh" "" "[aioe]" "(v|uh)" -"ou" "" "[aioe]" "v" // french -"uo" "" "" "(vo|o)" -"u" "" "[aie]" "v" - -"i" "[aáuoóeéê]" "" "j" -"i" "" "[aeou]" "j" -"y" "[aáuiíoóeéê]" "" "j" -"y" "" "[aeiíou]" "j" -"e" "" "$" "(e|E[french])" - -"ão" "" "" "(au|an)" // Port -"ãe" "" "" "(aj|an)" // Port -"ãi" "" "" "(aj|an)" // Port -"õe" "" "" "(oj|on)" // Port -"où" "" "" "u" // Fr -"ou" "" "" "(ou|u[french])" - -"â" "" "" "a" // Port & Fr -"à" "" "" "a" // Port -"á" "" "" "a" // Port & Sp -"ã" "" "" "(a|an)" // Port -"é" "" "" "e" -"ê" "" "" "e" // Port & Fr -"è" "" "" "e" // Sp & Fr & It -"í" "" "" "i" // Port & Sp -"î" "" "" "i" // Fr -"ô" "" "" "o" // Port & Fr -"ó" "" "" "o" // Port & Sp & It -"õ" "" "" "(o|on)" // Port -"ò" "" "" "o" // Sp & It -"ú" "" "" "u" // Port & Sp -"ü" "" "" "u" // Port & Sp - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "(b|v[spanish])" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "(x[spanish]|Z)" // not It -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "(s|S[portuguese])" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "(v|b[spanish])" -"w" "" "" "v" // foreign -"x" "" "" "(ks|gz|S[portuguese+spanish])" // S/ks Port & Sp, gz Sp, It only ks -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_rules_french.txt b/target/classes/org/apache/commons/codec/language/bm/sep_rules_french.txt deleted file mode 100644 index de636f86..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_rules_french.txt +++ /dev/null @@ -1,91 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Sephardic - -// CONSONANTS -"kh" "" "" "x" // foreign -"ph" "" "" "f" - -"ç" "" "" "s" -"x" "" "" "ks" -"ch" "" "" "S" -"c" "" "[eiyéèê]" "s" -"c" "" "" "k" -"gn" "" "" "(n|gn)" -"g" "" "[eiy]" "Z" -"gue" "" "$" "k" -"gu" "" "[eiy]" "g" -//"aill" "" "e" "aj" // non Jewish -//"ll" "" "e" "(l|j)" // non Jewish -"que" "" "$" "k" -"qu" "" "" "k" -"q" "" "" "k" -"s" "[aeiouyéèê]" "[aeiouyéèê]" "z" -"h" "[bdgt]" "" "" // translit from Arabic -"h" "" "$" "" // foreign -"j" "" "" "Z" -"w" "" "" "v" -"ouh" "" "[aioe]" "(v|uh)" -"ou" "" "[aeio]" "v" -"uo" "" "" "(vo|o)" -"u" "" "[aeio]" "v" - -// VOWELS -"aue" "" "" "aue" -"eau" "" "" "o" -//"au" "" "" "(o|au)" // non Jewish -"ai" "" "" "aj" // [e] is non Jewish -"ay" "" "" "aj" // [e] is non Jewish -"é" "" "" "e" -"ê" "" "" "e" -"è" "" "" "e" -"à" "" "" "a" -"â" "" "" "a" -"où" "" "" "u" -"ou" "" "" "u" -"oi" "" "" "oj" // [ua] is non Jewish -"ei" "" "" "ej" // [e] is non Jewish, in Ashk should be aj -"ey" "" "" "ej" // [e] non Jewish, in Ashk should be aj -//"eu" "" "" "(e|o)" // non Jewish -"y" "[ou]" "" "j" -"e" "" "$" "(e|)" -"i" "" "[aou]" "j" -"y" "" "[aoeu]" "j" -"y" "" "" "i" - -// TRIVIAL -"a" "" "" "a" -"b" "" "" "b" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_rules_hebrew.txt b/target/classes/org/apache/commons/codec/language/bm/sep_rules_hebrew.txt deleted file mode 100644 index 91cf5ba4..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_rules_hebrew.txt +++ /dev/null @@ -1,62 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Sephardic - -"אי" "" "" "i" -"עי" "" "" "i" -"עו" "" "" "VV" -"או" "" "" "VV" - -"ג׳" "" "" "Z" -"ד׳" "" "" "dZ" - -"א" "" "" "L" -"ב" "" "" "b" -"ג" "" "" "g" -"ד" "" "" "d" - -"ה" "^" "" "1" -"ה" "" "$" "1" -"ה" "" "" "" - -"וו" "" "" "V" -"וי" "" "" "WW" -"ו" "" "" "W" -"ז" "" "" "z" -"ח" "" "" "X" -"ט" "" "" "T" -"יי" "" "" "i" -"י" "" "" "i" -"ך" "" "" "X" -"כ" "^" "" "K" -"כ" "" "" "k" -"ל" "" "" "l" -"ם" "" "" "m" -"מ" "" "" "m" -"ן" "" "" "n" -"נ" "" "" "n" -"ס" "" "" "s" -"ע" "" "" "L" -"ף" "" "" "f" -"פ" "" "" "f" -"ץ" "" "" "C" -"צ" "" "" "C" -"ק" "" "" "K" -"ר" "" "" "r" -"ש" "" "" "s" -"ת" "" "" "T" // Special for Sephardim diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_rules_italian.txt b/target/classes/org/apache/commons/codec/language/bm/sep_rules_italian.txt deleted file mode 100644 index 76cf14b1..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_rules_italian.txt +++ /dev/null @@ -1,76 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"kh" "" "" "x" // foreign - -"gli" "" "" "(l|gli)" -"gn" "" "[aeou]" "(n|nj|gn)" -"gni" "" "" "(ni|gni)" - -"gi" "" "[aeou]" "dZ" -"gg" "" "[ei]" "dZ" -"g" "" "[ei]" "dZ" -"h" "[bdgt]" "" "g" // gh is It; others from Arabic translit - -"ci" "" "[aeou]" "tS" -"ch" "" "[ei]" "k" -"sc" "" "[ei]" "S" -"cc" "" "[ei]" "tS" -"c" "" "[ei]" "tS" -"s" "[aeiou]" "[aeiou]" "z" - -"i" "[aeou]" "" "j" -"i" "" "[aeou]" "j" -"y" "[aeou]" "" "j" // foreign -"y" "" "[aeou]" "j" // foreign - -"qu" "" "" "k" -"uo" "" "" "(vo|o)" -"u" "" "[aei]" "v" - -"�" "" "" "e" -"�" "" "" "e" -"�" "" "" "o" -"�" "" "" "o" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "(Z|dZ|j)" // foreign -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" // foreign -"x" "" "" "ks" // foreign -"y" "" "" "i" // foreign -"z" "" "" "(ts|dz)" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_rules_portuguese.txt b/target/classes/org/apache/commons/codec/language/bm/sep_rules_portuguese.txt deleted file mode 100644 index 67cbd9b0..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_rules_portuguese.txt +++ /dev/null @@ -1,104 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -"kh" "" "" "x" // foreign -"ch" "" "" "S" -"ss" "" "" "s" -"sc" "" "[ei]" "s" -"sç" "" "[aou]" "s" -"ç" "" "" "s" -"c" "" "[ei]" "s" -// "c" "" "[aou]" "(k|C)" - -"s" "^" "" "s" -"s" "[aáuiíoóeéêy]" "[aáuiíoóeéêy]" "z" -"s" "" "[dglmnrv]" "(Z|S)" // Z is Brazil - -"z" "" "$" "(Z|s|S)" // s and S in Brazil -"z" "" "[bdgv]" "(Z|z)" // Z in Brazil -"z" "" "[ptckf]" "(s|S|z)" // s and S in Brazil - -"gu" "" "[eiu]" "g" -"gu" "" "[ao]" "gv" -"g" "" "[ei]" "Z" -"qu" "" "[eiu]" "k" -"qu" "" "[ao]" "kv" - -"uo" "" "" "(vo|o|u)" -"u" "" "[aei]" "v" - -"lh" "" "" "l" -"nh" "" "" "nj" -"h" "[bdgt]" "" "" // translit. from Arabic - -"ex" "" "[aáuiíoóeéêy]" "(ez|eS|eks)" // ez in Brazil -"ex" "" "[cs]" "e" - -"y" "[aáuiíoóeéê]" "" "j" -"y" "" "[aeiíou]" "j" -"m" "" "[bcdfglnprstv]" "(m|n)" // maybe to add a rule for m/n before a consonant that disappears [preceding vowel becomes nasalized] -"m" "" "$" "(m|n)" // maybe to add a rule for final m/n that disappears [preceding vowel becomes nasalized] - -"ão" "" "" "(au|an|on)" -"ãe" "" "" "(aj|an)" -"ãi" "" "" "(aj|an)" -"õe" "" "" "(oj|on)" -"i" "[aáuoóeéê]" "" "j" -"i" "" "[aeou]" "j" - -"â" "" "" "a" -"à" "" "" "a" -"á" "" "" "a" -"ã" "" "" "(a|an|on)" -"é" "" "" "e" -"ê" "" "" "e" -"í" "" "" "i" -"ô" "" "" "o" -"ó" "" "" "o" -"õ" "" "" "(o|on)" -"ú" "" "" "u" -"ü" "" "" "u" - -"aue" "" "" "aue" - -// LATIN ALPHABET -"a" "" "" "a" -"b" "" "" "b" -"c" "" "" "k" -"d" "" "" "d" -"e" "" "" "(e|i)" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"j" "" "" "Z" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "(o|u)" -"p" "" "" "p" -"q" "" "" "k" -"r" "" "" "r" -"s" "" "" "S" -"t" "" "" "t" -"u" "" "" "u" -"v" "" "" "v" -"w" "" "" "v" -"x" "" "" "(S|ks)" -"y" "" "" "i" -"z" "" "" "z" diff --git a/target/classes/org/apache/commons/codec/language/bm/sep_rules_spanish.txt b/target/classes/org/apache/commons/codec/language/bm/sep_rules_spanish.txt deleted file mode 100644 index b900e7e8..00000000 --- a/target/classes/org/apache/commons/codec/language/bm/sep_rules_spanish.txt +++ /dev/null @@ -1,95 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -//Sephardic - -// Includes both Spanish (Castillian) & Catalan - -// CONSONANTS -"ñ" "" "" "(n|nj)" -"ny" "" "" "nj" // Catalan -"ç" "" "" "s" // Catalan - -"ig" "[aeiou]" "" "(tS|ig)" // tS is Catalan -"ix" "[aeiou]" "" "S" // Catalan -"tx" "" "" "tS" // Catalan -"tj" "" "$" "tS" // Catalan -"tj" "" "" "dZ" // Catalan -"tg" "" "" "(tg|dZ)" // dZ is Catalan -"ch" "" "" "(tS|dZ)" // dZ is typical for Argentina -"bh" "" "" "b" // translit. from Arabic -"h" "[dgt]" "" "" // translit. from Arabic - -"j" "" "" "(x|Z)" // Z is Catalan -"x" "" "" "(ks|gz|S)" // ks is Spanish, all are Catalan - -//"ll" "" "" "(l|Z)" // Z is typical for Argentina, only Ashkenazic -"w" "" "" "v" // foreign words - -"v" "^" "" "(B|v)" -"b" "^" "" "(b|V)" -"v" "" "" "(b|v)" -"b" "" "" "(b|v)" -"m" "" "[bpvf]" "(m|n)" - -"c" "" "[ei]" "s" -// "c" "" "[aou]" "(k|C)" -"c" "" "" "k" - -"z" "" "" "(z|s)" // as "c" befoire "e" or "i", in Spain it is like unvoiced English "th" - -"gu" "" "[ei]" "(g|gv)" // "gv" because "u" can actually be "ü" -"g" "" "[ei]" "(x|g|dZ)" // "g" only for foreign words; dZ is Catalan - -"qu" "" "" "k" -"q" "" "" "k" - -"uo" "" "" "(vo|o)" -"u" "" "[aei]" "v" - -// "y" "" "" "(i|j|S|Z)" // S or Z are peculiar to South America; only Ashkenazic -"y" "" "" "(i|j)" - -// VOWELS -"ü" "" "" "v" -"á" "" "" "a" -"é" "" "" "e" -"í" "" "" "i" -"ó" "" "" "o" -"ú" "" "" "u" -"à" "" "" "a" // Catalan -"è" "" "" "e" // Catalan -"ò" "" "" "o" // Catalan - -// TRIVIAL -"a" "" "" "a" -"d" "" "" "d" -"e" "" "" "e" -"f" "" "" "f" -"g" "" "" "g" -"h" "" "" "h" -"i" "" "" "i" -"k" "" "" "k" -"l" "" "" "l" -"m" "" "" "m" -"n" "" "" "n" -"o" "" "" "o" -"p" "" "" "p" -"r" "" "" "r" -"s" "" "" "s" -"t" "" "" "t" -"u" "" "" "u" diff --git a/target/classes/org/apache/commons/codec/language/dmrules.txt b/target/classes/org/apache/commons/codec/language/dmrules.txt deleted file mode 100644 index db8367d0..00000000 --- a/target/classes/org/apache/commons/codec/language/dmrules.txt +++ /dev/null @@ -1,200 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -// Format -// "pattern" "replacement at start of word" "replacement before a vowel" "replacement in other cases" - -// Vowels - -"a" "0" "" "" -"e" "0" "" "" -"i" "0" "" "" -"o" "0" "" "" -"u" "0" "" "" - -// Consonants - -"b" "7" "7" "7" -"d" "3" "3" "3" -"f" "7" "7" "7" -"g" "5" "5" "5" -"h" "5" "5" "" -"k" "5" "5" "5" -"l" "8" "8" "8" -"m" "6" "6" "6" -"n" "6" "6" "6" -"p" "7" "7" "7" -"q" "5" "5" "5" -"r" "9" "9" "9" -"s" "4" "4" "4" -"t" "3" "3" "3" -"v" "7" "7" "7" -"w" "7" "7" "7" -"x" "5" "54" "54" -"y" "1" "" "" -"z" "4" "4" "4" - -// Romanian t-cedilla and t-comma should be equivalent -"ţ" "3|4" "3|4" "3|4" -"ț" "3|4" "3|4" "3|4" - -// Polish characters (e-ogonek and a-ogonek): default case branch either not coded or 6 -"ę" "" "" "|6" -"ą" "" "" "|6" - -// Other terms - -"schtsch" "2" "4" "4" -"schtsh" "2" "4" "4" -"schtch" "2" "4" "4" -"shtch" "2" "4" "4" -"shtsh" "2" "4" "4" -"stsch" "2" "4" "4" -"ttsch" "4" "4" "4" -"zhdzh" "2" "4" "4" -"shch" "2" "4" "4" -"scht" "2" "43" "43" -"schd" "2" "43" "43" -"stch" "2" "4" "4" -"strz" "2" "4" "4" -"strs" "2" "4" "4" -"stsh" "2" "4" "4" -"szcz" "2" "4" "4" -"szcs" "2" "4" "4" -"ttch" "4" "4" "4" -"tsch" "4" "4" "4" -"ttsz" "4" "4" "4" -"zdzh" "2" "4" "4" -"zsch" "4" "4" "4" -"chs" "5" "54" "54" -"csz" "4" "4" "4" -"czs" "4" "4" "4" -"drz" "4" "4" "4" -"drs" "4" "4" "4" -"dsh" "4" "4" "4" -"dsz" "4" "4" "4" -"dzh" "4" "4" "4" -"dzs" "4" "4" "4" -"sch" "4" "4" "4" -"sht" "2" "43" "43" -"szt" "2" "43" "43" -"shd" "2" "43" "43" -"szd" "2" "43" "43" -"tch" "4" "4" "4" -"trz" "4" "4" "4" -"trs" "4" "4" "4" -"tsh" "4" "4" "4" -"tts" "4" "4" "4" -"ttz" "4" "4" "4" -"tzs" "4" "4" "4" -"tsz" "4" "4" "4" -"zdz" "2" "4" "4" -"zhd" "2" "43" "43" -"zsh" "4" "4" "4" -"ai" "0" "1" "" -"aj" "0" "1" "" -"ay" "0" "1" "" -"au" "0" "7" "" -"cz" "4" "4" "4" -"cs" "4" "4" "4" -"ds" "4" "4" "4" -"dz" "4" "4" "4" -"dt" "3" "3" "3" -"ei" "0" "1" "" -"ej" "0" "1" "" -"ey" "0" "1" "" -"eu" "1" "1" "" -"fb" "7" "7" "7" -"ia" "1" "" "" -"ie" "1" "" "" -"io" "1" "" "" -"iu" "1" "" "" -"ks" "5" "54" "54" -"kh" "5" "5" "5" -"mn" "66" "66" "66" -"nm" "66" "66" "66" -"oi" "0" "1" "" -"oj" "0" "1" "" -"oy" "0" "1" "" -"pf" "7" "7" "7" -"ph" "7" "7" "7" -"sh" "4" "4" "4" -"sc" "2" "4" "4" -"st" "2" "43" "43" -"sd" "2" "43" "43" -"sz" "4" "4" "4" -"th" "3" "3" "3" -"ts" "4" "4" "4" -"tc" "4" "4" "4" -"tz" "4" "4" "4" -"ui" "0" "1" "" -"uj" "0" "1" "" -"uy" "0" "1" "" -"ue" "0" "1" "" -"zd" "2" "43" "43" -"zh" "4" "4" "4" -"zs" "4" "4" "4" - -// Branching cases - -"c" "4|5" "4|5" "4|5" -"ch" "4|5" "4|5" "4|5" -"ck" "5|45" "5|45" "5|45" -"rs" "4|94" "4|94" "4|94" -"rz" "4|94" "4|94" "4|94" -"j" "1|4" "|4" "|4" - - -// ASCII foldings - -ß=s -à=a -á=a -â=a -ã=a -ä=a -å=a -æ=a -ç=c -è=e -é=e -ê=e -ë=e -ì=i -í=i -î=i -ï=i -ð=d -ñ=n -ò=o -ó=o -ô=o -õ=o -ö=o -ø=o -ù=u -ú=u -û=u -ý=y -ý=y -þ=b -ÿ=y -ć=c -ł=l -ś=s -ż=z -ź=z diff --git a/target/classes/org/apache/commons/codec/net/BCodec.class b/target/classes/org/apache/commons/codec/net/BCodec.class deleted file mode 100644 index 66e72024..00000000 Binary files a/target/classes/org/apache/commons/codec/net/BCodec.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/net/QCodec.class b/target/classes/org/apache/commons/codec/net/QCodec.class deleted file mode 100644 index 8d401efa..00000000 Binary files a/target/classes/org/apache/commons/codec/net/QCodec.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/net/QuotedPrintableCodec.class b/target/classes/org/apache/commons/codec/net/QuotedPrintableCodec.class deleted file mode 100644 index e66570de..00000000 Binary files a/target/classes/org/apache/commons/codec/net/QuotedPrintableCodec.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/net/RFC1522Codec.class b/target/classes/org/apache/commons/codec/net/RFC1522Codec.class deleted file mode 100644 index b5aee8cf..00000000 Binary files a/target/classes/org/apache/commons/codec/net/RFC1522Codec.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/net/URLCodec.class b/target/classes/org/apache/commons/codec/net/URLCodec.class deleted file mode 100644 index 1c464334..00000000 Binary files a/target/classes/org/apache/commons/codec/net/URLCodec.class and /dev/null differ diff --git a/target/classes/org/apache/commons/codec/net/Utils.class b/target/classes/org/apache/commons/codec/net/Utils.class deleted file mode 100644 index 1f087aed..00000000 Binary files a/target/classes/org/apache/commons/codec/net/Utils.class and /dev/null differ diff --git a/target/classes/org/apache/xmlcommons/Version.class b/target/classes/org/apache/xmlcommons/Version.class deleted file mode 100644 index aea7ec0e..00000000 Binary files a/target/classes/org/apache/xmlcommons/Version.class and /dev/null differ diff --git a/target/classes/org/dom4j/Attribute.class b/target/classes/org/dom4j/Attribute.class deleted file mode 100644 index 1f5e579e..00000000 Binary files a/target/classes/org/dom4j/Attribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/Branch.class b/target/classes/org/dom4j/Branch.class deleted file mode 100644 index 9b08cac5..00000000 Binary files a/target/classes/org/dom4j/Branch.class and /dev/null differ diff --git a/target/classes/org/dom4j/CDATA.class b/target/classes/org/dom4j/CDATA.class deleted file mode 100644 index f93c6240..00000000 Binary files a/target/classes/org/dom4j/CDATA.class and /dev/null differ diff --git a/target/classes/org/dom4j/CharacterData.class b/target/classes/org/dom4j/CharacterData.class deleted file mode 100644 index 78761487..00000000 Binary files a/target/classes/org/dom4j/CharacterData.class and /dev/null differ diff --git a/target/classes/org/dom4j/Comment.class b/target/classes/org/dom4j/Comment.class deleted file mode 100644 index e15e6539..00000000 Binary files a/target/classes/org/dom4j/Comment.class and /dev/null differ diff --git a/target/classes/org/dom4j/Document.class b/target/classes/org/dom4j/Document.class deleted file mode 100644 index 7719ba83..00000000 Binary files a/target/classes/org/dom4j/Document.class and /dev/null differ diff --git a/target/classes/org/dom4j/DocumentException.class b/target/classes/org/dom4j/DocumentException.class deleted file mode 100644 index 1269716b..00000000 Binary files a/target/classes/org/dom4j/DocumentException.class and /dev/null differ diff --git a/target/classes/org/dom4j/DocumentFactory.class b/target/classes/org/dom4j/DocumentFactory.class deleted file mode 100644 index 10bb555d..00000000 Binary files a/target/classes/org/dom4j/DocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/DocumentHelper.class b/target/classes/org/dom4j/DocumentHelper.class deleted file mode 100644 index 7e354429..00000000 Binary files a/target/classes/org/dom4j/DocumentHelper.class and /dev/null differ diff --git a/target/classes/org/dom4j/DocumentType.class b/target/classes/org/dom4j/DocumentType.class deleted file mode 100644 index fa4fe00a..00000000 Binary files a/target/classes/org/dom4j/DocumentType.class and /dev/null differ diff --git a/target/classes/org/dom4j/Element.class b/target/classes/org/dom4j/Element.class deleted file mode 100644 index e85b6087..00000000 Binary files a/target/classes/org/dom4j/Element.class and /dev/null differ diff --git a/target/classes/org/dom4j/ElementHandler.class b/target/classes/org/dom4j/ElementHandler.class deleted file mode 100644 index 75d6ba9a..00000000 Binary files a/target/classes/org/dom4j/ElementHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/ElementPath.class b/target/classes/org/dom4j/ElementPath.class deleted file mode 100644 index 2110c462..00000000 Binary files a/target/classes/org/dom4j/ElementPath.class and /dev/null differ diff --git a/target/classes/org/dom4j/Entity.class b/target/classes/org/dom4j/Entity.class deleted file mode 100644 index 2bd28f82..00000000 Binary files a/target/classes/org/dom4j/Entity.class and /dev/null differ diff --git a/target/classes/org/dom4j/IllegalAddException.class b/target/classes/org/dom4j/IllegalAddException.class deleted file mode 100644 index fba89a4a..00000000 Binary files a/target/classes/org/dom4j/IllegalAddException.class and /dev/null differ diff --git a/target/classes/org/dom4j/InvalidXPathException.class b/target/classes/org/dom4j/InvalidXPathException.class deleted file mode 100644 index e95167d3..00000000 Binary files a/target/classes/org/dom4j/InvalidXPathException.class and /dev/null differ diff --git a/target/classes/org/dom4j/Namespace.class b/target/classes/org/dom4j/Namespace.class deleted file mode 100644 index 1962c460..00000000 Binary files a/target/classes/org/dom4j/Namespace.class and /dev/null differ diff --git a/target/classes/org/dom4j/Node.class b/target/classes/org/dom4j/Node.class deleted file mode 100644 index d5905bb1..00000000 Binary files a/target/classes/org/dom4j/Node.class and /dev/null differ diff --git a/target/classes/org/dom4j/NodeFilter.class b/target/classes/org/dom4j/NodeFilter.class deleted file mode 100644 index 70b74a65..00000000 Binary files a/target/classes/org/dom4j/NodeFilter.class and /dev/null differ diff --git a/target/classes/org/dom4j/ProcessingInstruction.class b/target/classes/org/dom4j/ProcessingInstruction.class deleted file mode 100644 index cf9aea2f..00000000 Binary files a/target/classes/org/dom4j/ProcessingInstruction.class and /dev/null differ diff --git a/target/classes/org/dom4j/QName.class b/target/classes/org/dom4j/QName.class deleted file mode 100644 index e19ef4ee..00000000 Binary files a/target/classes/org/dom4j/QName.class and /dev/null differ diff --git a/target/classes/org/dom4j/Text.class b/target/classes/org/dom4j/Text.class deleted file mode 100644 index 0b0b316d..00000000 Binary files a/target/classes/org/dom4j/Text.class and /dev/null differ diff --git a/target/classes/org/dom4j/Visitor.class b/target/classes/org/dom4j/Visitor.class deleted file mode 100644 index a5b5494a..00000000 Binary files a/target/classes/org/dom4j/Visitor.class and /dev/null differ diff --git a/target/classes/org/dom4j/VisitorSupport.class b/target/classes/org/dom4j/VisitorSupport.class deleted file mode 100644 index 40f7781c..00000000 Binary files a/target/classes/org/dom4j/VisitorSupport.class and /dev/null differ diff --git a/target/classes/org/dom4j/XPath.class b/target/classes/org/dom4j/XPath.class deleted file mode 100644 index 506fd3a4..00000000 Binary files a/target/classes/org/dom4j/XPath.class and /dev/null differ diff --git a/target/classes/org/dom4j/XPathException.class b/target/classes/org/dom4j/XPathException.class deleted file mode 100644 index d866ce13..00000000 Binary files a/target/classes/org/dom4j/XPathException.class and /dev/null differ diff --git a/target/classes/org/dom4j/bean/BeanAttribute.class b/target/classes/org/dom4j/bean/BeanAttribute.class deleted file mode 100644 index a2ea5b6a..00000000 Binary files a/target/classes/org/dom4j/bean/BeanAttribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/bean/BeanAttributeList.class b/target/classes/org/dom4j/bean/BeanAttributeList.class deleted file mode 100644 index 92976db7..00000000 Binary files a/target/classes/org/dom4j/bean/BeanAttributeList.class and /dev/null differ diff --git a/target/classes/org/dom4j/bean/BeanDocumentFactory.class b/target/classes/org/dom4j/bean/BeanDocumentFactory.class deleted file mode 100644 index 456290fc..00000000 Binary files a/target/classes/org/dom4j/bean/BeanDocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/bean/BeanElement.class b/target/classes/org/dom4j/bean/BeanElement.class deleted file mode 100644 index 0b6d8081..00000000 Binary files a/target/classes/org/dom4j/bean/BeanElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/bean/BeanMetaData.class b/target/classes/org/dom4j/bean/BeanMetaData.class deleted file mode 100644 index df1ad1ad..00000000 Binary files a/target/classes/org/dom4j/bean/BeanMetaData.class and /dev/null differ diff --git a/target/classes/org/dom4j/datatype/DatatypeAttribute.class b/target/classes/org/dom4j/datatype/DatatypeAttribute.class deleted file mode 100644 index 2aae4538..00000000 Binary files a/target/classes/org/dom4j/datatype/DatatypeAttribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/datatype/DatatypeDocumentFactory.class b/target/classes/org/dom4j/datatype/DatatypeDocumentFactory.class deleted file mode 100644 index a507e85b..00000000 Binary files a/target/classes/org/dom4j/datatype/DatatypeDocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/datatype/DatatypeElement.class b/target/classes/org/dom4j/datatype/DatatypeElement.class deleted file mode 100644 index f47f9814..00000000 Binary files a/target/classes/org/dom4j/datatype/DatatypeElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/datatype/DatatypeElementFactory.class b/target/classes/org/dom4j/datatype/DatatypeElementFactory.class deleted file mode 100644 index 26b4c951..00000000 Binary files a/target/classes/org/dom4j/datatype/DatatypeElementFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/datatype/InvalidSchemaException.class b/target/classes/org/dom4j/datatype/InvalidSchemaException.class deleted file mode 100644 index a170b89d..00000000 Binary files a/target/classes/org/dom4j/datatype/InvalidSchemaException.class and /dev/null differ diff --git a/target/classes/org/dom4j/datatype/NamedTypeResolver.class b/target/classes/org/dom4j/datatype/NamedTypeResolver.class deleted file mode 100644 index aa91c4f9..00000000 Binary files a/target/classes/org/dom4j/datatype/NamedTypeResolver.class and /dev/null differ diff --git a/target/classes/org/dom4j/datatype/SchemaParser.class b/target/classes/org/dom4j/datatype/SchemaParser.class deleted file mode 100644 index 3c2a5347..00000000 Binary files a/target/classes/org/dom4j/datatype/SchemaParser.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMAttribute.class b/target/classes/org/dom4j/dom/DOMAttribute.class deleted file mode 100644 index 685c6091..00000000 Binary files a/target/classes/org/dom4j/dom/DOMAttribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMAttributeNodeMap.class b/target/classes/org/dom4j/dom/DOMAttributeNodeMap.class deleted file mode 100644 index 195ee9c1..00000000 Binary files a/target/classes/org/dom4j/dom/DOMAttributeNodeMap.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMCDATA.class b/target/classes/org/dom4j/dom/DOMCDATA.class deleted file mode 100644 index a1d8511c..00000000 Binary files a/target/classes/org/dom4j/dom/DOMCDATA.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMComment.class b/target/classes/org/dom4j/dom/DOMComment.class deleted file mode 100644 index 613a8856..00000000 Binary files a/target/classes/org/dom4j/dom/DOMComment.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMDocument.class b/target/classes/org/dom4j/dom/DOMDocument.class deleted file mode 100644 index 5de6b8ab..00000000 Binary files a/target/classes/org/dom4j/dom/DOMDocument.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMDocumentFactory.class b/target/classes/org/dom4j/dom/DOMDocumentFactory.class deleted file mode 100644 index acbf5658..00000000 Binary files a/target/classes/org/dom4j/dom/DOMDocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMDocumentType.class b/target/classes/org/dom4j/dom/DOMDocumentType.class deleted file mode 100644 index 226dc5fe..00000000 Binary files a/target/classes/org/dom4j/dom/DOMDocumentType.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMElement.class b/target/classes/org/dom4j/dom/DOMElement.class deleted file mode 100644 index f8790118..00000000 Binary files a/target/classes/org/dom4j/dom/DOMElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMEntityReference.class b/target/classes/org/dom4j/dom/DOMEntityReference.class deleted file mode 100644 index 02bf853e..00000000 Binary files a/target/classes/org/dom4j/dom/DOMEntityReference.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMNamespace.class b/target/classes/org/dom4j/dom/DOMNamespace.class deleted file mode 100644 index 0dec42e7..00000000 Binary files a/target/classes/org/dom4j/dom/DOMNamespace.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMNodeHelper$1.class b/target/classes/org/dom4j/dom/DOMNodeHelper$1.class deleted file mode 100644 index 90c58c30..00000000 Binary files a/target/classes/org/dom4j/dom/DOMNodeHelper$1.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMNodeHelper$EmptyNodeList.class b/target/classes/org/dom4j/dom/DOMNodeHelper$EmptyNodeList.class deleted file mode 100644 index 7f634a21..00000000 Binary files a/target/classes/org/dom4j/dom/DOMNodeHelper$EmptyNodeList.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMNodeHelper.class b/target/classes/org/dom4j/dom/DOMNodeHelper.class deleted file mode 100644 index 33914c38..00000000 Binary files a/target/classes/org/dom4j/dom/DOMNodeHelper.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMProcessingInstruction.class b/target/classes/org/dom4j/dom/DOMProcessingInstruction.class deleted file mode 100644 index f4636bd3..00000000 Binary files a/target/classes/org/dom4j/dom/DOMProcessingInstruction.class and /dev/null differ diff --git a/target/classes/org/dom4j/dom/DOMText.class b/target/classes/org/dom4j/dom/DOMText.class deleted file mode 100644 index dfeacbcd..00000000 Binary files a/target/classes/org/dom4j/dom/DOMText.class and /dev/null differ diff --git a/target/classes/org/dom4j/dtd/AttributeDecl.class b/target/classes/org/dom4j/dtd/AttributeDecl.class deleted file mode 100644 index b065bd46..00000000 Binary files a/target/classes/org/dom4j/dtd/AttributeDecl.class and /dev/null differ diff --git a/target/classes/org/dom4j/dtd/ElementDecl.class b/target/classes/org/dom4j/dtd/ElementDecl.class deleted file mode 100644 index 0b795aac..00000000 Binary files a/target/classes/org/dom4j/dtd/ElementDecl.class and /dev/null differ diff --git a/target/classes/org/dom4j/dtd/ExternalEntityDecl.class b/target/classes/org/dom4j/dtd/ExternalEntityDecl.class deleted file mode 100644 index 861d2789..00000000 Binary files a/target/classes/org/dom4j/dtd/ExternalEntityDecl.class and /dev/null differ diff --git a/target/classes/org/dom4j/dtd/InternalEntityDecl.class b/target/classes/org/dom4j/dtd/InternalEntityDecl.class deleted file mode 100644 index 05919bda..00000000 Binary files a/target/classes/org/dom4j/dtd/InternalEntityDecl.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/DOMReader.class b/target/classes/org/dom4j/io/DOMReader.class deleted file mode 100644 index 54df8f28..00000000 Binary files a/target/classes/org/dom4j/io/DOMReader.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/DOMWriter.class b/target/classes/org/dom4j/io/DOMWriter.class deleted file mode 100644 index e7e02a4a..00000000 Binary files a/target/classes/org/dom4j/io/DOMWriter.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/DispatchHandler.class b/target/classes/org/dom4j/io/DispatchHandler.class deleted file mode 100644 index 82a4defa..00000000 Binary files a/target/classes/org/dom4j/io/DispatchHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/DocumentInputSource$1.class b/target/classes/org/dom4j/io/DocumentInputSource$1.class deleted file mode 100644 index 9e4f6fa6..00000000 Binary files a/target/classes/org/dom4j/io/DocumentInputSource$1.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/DocumentInputSource.class b/target/classes/org/dom4j/io/DocumentInputSource.class deleted file mode 100644 index 04d3225e..00000000 Binary files a/target/classes/org/dom4j/io/DocumentInputSource.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/DocumentResult.class b/target/classes/org/dom4j/io/DocumentResult.class deleted file mode 100644 index a79a60ac..00000000 Binary files a/target/classes/org/dom4j/io/DocumentResult.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/DocumentSource.class b/target/classes/org/dom4j/io/DocumentSource.class deleted file mode 100644 index 5e049874..00000000 Binary files a/target/classes/org/dom4j/io/DocumentSource.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/ElementModifier.class b/target/classes/org/dom4j/io/ElementModifier.class deleted file mode 100644 index 50c66dba..00000000 Binary files a/target/classes/org/dom4j/io/ElementModifier.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/ElementStack.class b/target/classes/org/dom4j/io/ElementStack.class deleted file mode 100644 index d3f4f481..00000000 Binary files a/target/classes/org/dom4j/io/ElementStack.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/HTMLWriter$FormatState.class b/target/classes/org/dom4j/io/HTMLWriter$FormatState.class deleted file mode 100644 index cc4949d0..00000000 Binary files a/target/classes/org/dom4j/io/HTMLWriter$FormatState.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/HTMLWriter.class b/target/classes/org/dom4j/io/HTMLWriter.class deleted file mode 100644 index 90cf991a..00000000 Binary files a/target/classes/org/dom4j/io/HTMLWriter.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/JAXPHelper.class b/target/classes/org/dom4j/io/JAXPHelper.class deleted file mode 100644 index 55e4e518..00000000 Binary files a/target/classes/org/dom4j/io/JAXPHelper.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/OutputFormat.class b/target/classes/org/dom4j/io/OutputFormat.class deleted file mode 100644 index 3e8890ec..00000000 Binary files a/target/classes/org/dom4j/io/OutputFormat.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/PruningDispatchHandler.class b/target/classes/org/dom4j/io/PruningDispatchHandler.class deleted file mode 100644 index 51b68811..00000000 Binary files a/target/classes/org/dom4j/io/PruningDispatchHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/PruningElementStack.class b/target/classes/org/dom4j/io/PruningElementStack.class deleted file mode 100644 index 6670c07f..00000000 Binary files a/target/classes/org/dom4j/io/PruningElementStack.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXContentHandler.class b/target/classes/org/dom4j/io/SAXContentHandler.class deleted file mode 100644 index 77cb10d3..00000000 Binary files a/target/classes/org/dom4j/io/SAXContentHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXEventRecorder$SAXEvent.class b/target/classes/org/dom4j/io/SAXEventRecorder$SAXEvent.class deleted file mode 100644 index eb2caf90..00000000 Binary files a/target/classes/org/dom4j/io/SAXEventRecorder$SAXEvent.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXEventRecorder.class b/target/classes/org/dom4j/io/SAXEventRecorder.class deleted file mode 100644 index 69ac80e3..00000000 Binary files a/target/classes/org/dom4j/io/SAXEventRecorder.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXHelper.class b/target/classes/org/dom4j/io/SAXHelper.class deleted file mode 100644 index bc862ea0..00000000 Binary files a/target/classes/org/dom4j/io/SAXHelper.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXModifier.class b/target/classes/org/dom4j/io/SAXModifier.class deleted file mode 100644 index dd2d6502..00000000 Binary files a/target/classes/org/dom4j/io/SAXModifier.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXModifyContentHandler.class b/target/classes/org/dom4j/io/SAXModifyContentHandler.class deleted file mode 100644 index d42cfeba..00000000 Binary files a/target/classes/org/dom4j/io/SAXModifyContentHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXModifyElementHandler.class b/target/classes/org/dom4j/io/SAXModifyElementHandler.class deleted file mode 100644 index 8003fa54..00000000 Binary files a/target/classes/org/dom4j/io/SAXModifyElementHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXModifyException.class b/target/classes/org/dom4j/io/SAXModifyException.class deleted file mode 100644 index a82926d7..00000000 Binary files a/target/classes/org/dom4j/io/SAXModifyException.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXModifyReader.class b/target/classes/org/dom4j/io/SAXModifyReader.class deleted file mode 100644 index deb30260..00000000 Binary files a/target/classes/org/dom4j/io/SAXModifyReader.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXReader$SAXEntityResolver.class b/target/classes/org/dom4j/io/SAXReader$SAXEntityResolver.class deleted file mode 100644 index 8cbbdeec..00000000 Binary files a/target/classes/org/dom4j/io/SAXReader$SAXEntityResolver.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXReader.class b/target/classes/org/dom4j/io/SAXReader.class deleted file mode 100644 index b0ca29b4..00000000 Binary files a/target/classes/org/dom4j/io/SAXReader.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXValidator.class b/target/classes/org/dom4j/io/SAXValidator.class deleted file mode 100644 index 276414d7..00000000 Binary files a/target/classes/org/dom4j/io/SAXValidator.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/SAXWriter.class b/target/classes/org/dom4j/io/SAXWriter.class deleted file mode 100644 index 3ebd6335..00000000 Binary files a/target/classes/org/dom4j/io/SAXWriter.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/STAXEventReader.class b/target/classes/org/dom4j/io/STAXEventReader.class deleted file mode 100644 index 1ae612bd..00000000 Binary files a/target/classes/org/dom4j/io/STAXEventReader.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/STAXEventWriter$AttributeIterator.class b/target/classes/org/dom4j/io/STAXEventWriter$AttributeIterator.class deleted file mode 100644 index f8e49ef5..00000000 Binary files a/target/classes/org/dom4j/io/STAXEventWriter$AttributeIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/STAXEventWriter$NamespaceIterator.class b/target/classes/org/dom4j/io/STAXEventWriter$NamespaceIterator.class deleted file mode 100644 index 6d578c25..00000000 Binary files a/target/classes/org/dom4j/io/STAXEventWriter$NamespaceIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/STAXEventWriter.class b/target/classes/org/dom4j/io/STAXEventWriter.class deleted file mode 100644 index 387363c0..00000000 Binary files a/target/classes/org/dom4j/io/STAXEventWriter.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/XMLResult.class b/target/classes/org/dom4j/io/XMLResult.class deleted file mode 100644 index 8f3b59e5..00000000 Binary files a/target/classes/org/dom4j/io/XMLResult.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/XMLWriter.class b/target/classes/org/dom4j/io/XMLWriter.class deleted file mode 100644 index 960db911..00000000 Binary files a/target/classes/org/dom4j/io/XMLWriter.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/XPP3Reader.class b/target/classes/org/dom4j/io/XPP3Reader.class deleted file mode 100644 index f24ef81f..00000000 Binary files a/target/classes/org/dom4j/io/XPP3Reader.class and /dev/null differ diff --git a/target/classes/org/dom4j/io/XPPReader.class b/target/classes/org/dom4j/io/XPPReader.class deleted file mode 100644 index 156e003b..00000000 Binary files a/target/classes/org/dom4j/io/XPPReader.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBModifier$JAXBElementModifier.class b/target/classes/org/dom4j/jaxb/JAXBModifier$JAXBElementModifier.class deleted file mode 100644 index 0483c773..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBModifier$JAXBElementModifier.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBModifier.class b/target/classes/org/dom4j/jaxb/JAXBModifier.class deleted file mode 100644 index d5c5fb1d..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBModifier.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBObjectHandler.class b/target/classes/org/dom4j/jaxb/JAXBObjectHandler.class deleted file mode 100644 index 9daa6649..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBObjectHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBObjectModifier.class b/target/classes/org/dom4j/jaxb/JAXBObjectModifier.class deleted file mode 100644 index 7a55bbca..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBObjectModifier.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBReader$PruningElementHandler.class b/target/classes/org/dom4j/jaxb/JAXBReader$PruningElementHandler.class deleted file mode 100644 index d621800d..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBReader$PruningElementHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBReader$UnmarshalElementHandler.class b/target/classes/org/dom4j/jaxb/JAXBReader$UnmarshalElementHandler.class deleted file mode 100644 index ccf341e4..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBReader$UnmarshalElementHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBReader.class b/target/classes/org/dom4j/jaxb/JAXBReader.class deleted file mode 100644 index 9b2aaec2..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBReader.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBRuntimeException.class b/target/classes/org/dom4j/jaxb/JAXBRuntimeException.class deleted file mode 100644 index dea94b4f..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBRuntimeException.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBSupport.class b/target/classes/org/dom4j/jaxb/JAXBSupport.class deleted file mode 100644 index a2a14415..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBSupport.class and /dev/null differ diff --git a/target/classes/org/dom4j/jaxb/JAXBWriter.class b/target/classes/org/dom4j/jaxb/JAXBWriter.class deleted file mode 100644 index da53a9fb..00000000 Binary files a/target/classes/org/dom4j/jaxb/JAXBWriter.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/Action.class b/target/classes/org/dom4j/rule/Action.class deleted file mode 100644 index d1dd59be..00000000 Binary files a/target/classes/org/dom4j/rule/Action.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/Mode.class b/target/classes/org/dom4j/rule/Mode.class deleted file mode 100644 index 178e6695..00000000 Binary files a/target/classes/org/dom4j/rule/Mode.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/NullAction.class b/target/classes/org/dom4j/rule/NullAction.class deleted file mode 100644 index 402d355b..00000000 Binary files a/target/classes/org/dom4j/rule/NullAction.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/Pattern.class b/target/classes/org/dom4j/rule/Pattern.class deleted file mode 100644 index 315bd0a1..00000000 Binary files a/target/classes/org/dom4j/rule/Pattern.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/Rule.class b/target/classes/org/dom4j/rule/Rule.class deleted file mode 100644 index 8d422f60..00000000 Binary files a/target/classes/org/dom4j/rule/Rule.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/RuleManager$1.class b/target/classes/org/dom4j/rule/RuleManager$1.class deleted file mode 100644 index 9bdcbb01..00000000 Binary files a/target/classes/org/dom4j/rule/RuleManager$1.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/RuleManager.class b/target/classes/org/dom4j/rule/RuleManager.class deleted file mode 100644 index 4c9ccd17..00000000 Binary files a/target/classes/org/dom4j/rule/RuleManager.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/RuleSet.class b/target/classes/org/dom4j/rule/RuleSet.class deleted file mode 100644 index 7d56de5a..00000000 Binary files a/target/classes/org/dom4j/rule/RuleSet.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/Stylesheet.class b/target/classes/org/dom4j/rule/Stylesheet.class deleted file mode 100644 index aab07565..00000000 Binary files a/target/classes/org/dom4j/rule/Stylesheet.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/pattern/DefaultPattern.class b/target/classes/org/dom4j/rule/pattern/DefaultPattern.class deleted file mode 100644 index fc7b4da5..00000000 Binary files a/target/classes/org/dom4j/rule/pattern/DefaultPattern.class and /dev/null differ diff --git a/target/classes/org/dom4j/rule/pattern/NodeTypePattern.class b/target/classes/org/dom4j/rule/pattern/NodeTypePattern.class deleted file mode 100644 index 1cf4420c..00000000 Binary files a/target/classes/org/dom4j/rule/pattern/NodeTypePattern.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/BranchTreeNode$1.class b/target/classes/org/dom4j/swing/BranchTreeNode$1.class deleted file mode 100644 index 07e57b10..00000000 Binary files a/target/classes/org/dom4j/swing/BranchTreeNode$1.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/BranchTreeNode.class b/target/classes/org/dom4j/swing/BranchTreeNode.class deleted file mode 100644 index ec8f69df..00000000 Binary files a/target/classes/org/dom4j/swing/BranchTreeNode.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/DocumentTreeModel.class b/target/classes/org/dom4j/swing/DocumentTreeModel.class deleted file mode 100644 index 152c59ba..00000000 Binary files a/target/classes/org/dom4j/swing/DocumentTreeModel.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/LeafTreeNode$1.class b/target/classes/org/dom4j/swing/LeafTreeNode$1.class deleted file mode 100644 index a7f80714..00000000 Binary files a/target/classes/org/dom4j/swing/LeafTreeNode$1.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/LeafTreeNode.class b/target/classes/org/dom4j/swing/LeafTreeNode.class deleted file mode 100644 index df31c3e2..00000000 Binary files a/target/classes/org/dom4j/swing/LeafTreeNode.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/XMLTableColumnDefinition.class b/target/classes/org/dom4j/swing/XMLTableColumnDefinition.class deleted file mode 100644 index 590b5fc5..00000000 Binary files a/target/classes/org/dom4j/swing/XMLTableColumnDefinition.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/XMLTableDefinition.class b/target/classes/org/dom4j/swing/XMLTableDefinition.class deleted file mode 100644 index 9ccf4c2e..00000000 Binary files a/target/classes/org/dom4j/swing/XMLTableDefinition.class and /dev/null differ diff --git a/target/classes/org/dom4j/swing/XMLTableModel.class b/target/classes/org/dom4j/swing/XMLTableModel.class deleted file mode 100644 index fe23a718..00000000 Binary files a/target/classes/org/dom4j/swing/XMLTableModel.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractAttribute.class b/target/classes/org/dom4j/tree/AbstractAttribute.class deleted file mode 100644 index befbe935..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractAttribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractBranch.class b/target/classes/org/dom4j/tree/AbstractBranch.class deleted file mode 100644 index 0fa2fca9..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractBranch.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractCDATA.class b/target/classes/org/dom4j/tree/AbstractCDATA.class deleted file mode 100644 index 09ae253c..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractCDATA.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractCharacterData.class b/target/classes/org/dom4j/tree/AbstractCharacterData.class deleted file mode 100644 index ba5cb408..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractCharacterData.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractComment.class b/target/classes/org/dom4j/tree/AbstractComment.class deleted file mode 100644 index f5957ce6..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractComment.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractDocument.class b/target/classes/org/dom4j/tree/AbstractDocument.class deleted file mode 100644 index 9ab59e9c..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractDocument.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractDocumentType.class b/target/classes/org/dom4j/tree/AbstractDocumentType.class deleted file mode 100644 index 71d936ef..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractDocumentType.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractElement.class b/target/classes/org/dom4j/tree/AbstractElement.class deleted file mode 100644 index a3eae5d3..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractEntity.class b/target/classes/org/dom4j/tree/AbstractEntity.class deleted file mode 100644 index c2e489d1..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractEntity.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractNode.class b/target/classes/org/dom4j/tree/AbstractNode.class deleted file mode 100644 index cc49b583..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractNode.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractProcessingInstruction.class b/target/classes/org/dom4j/tree/AbstractProcessingInstruction.class deleted file mode 100644 index 7bd22d39..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractProcessingInstruction.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/AbstractText.class b/target/classes/org/dom4j/tree/AbstractText.class deleted file mode 100644 index 1fcd581a..00000000 Binary files a/target/classes/org/dom4j/tree/AbstractText.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/BackedList.class b/target/classes/org/dom4j/tree/BackedList.class deleted file mode 100644 index f4bab63f..00000000 Binary files a/target/classes/org/dom4j/tree/BackedList.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/BaseElement.class b/target/classes/org/dom4j/tree/BaseElement.class deleted file mode 100644 index 034246da..00000000 Binary files a/target/classes/org/dom4j/tree/BaseElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$1.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$1.class deleted file mode 100644 index c5ed092a..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$1.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$BarrierLock.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$BarrierLock.class deleted file mode 100644 index 55970325..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$BarrierLock.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$Entry.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$Entry.class deleted file mode 100644 index 9f66435c..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$Entry.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$EntrySet.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$EntrySet.class deleted file mode 100644 index 030ec079..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$EntrySet.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$HashIterator.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$HashIterator.class deleted file mode 100644 index 0632fafa..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$HashIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$KeyIterator.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$KeyIterator.class deleted file mode 100644 index 34b2b405..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$KeyIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$KeySet.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$KeySet.class deleted file mode 100644 index edf93dc6..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$KeySet.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$ValueIterator.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$ValueIterator.class deleted file mode 100644 index a12f7459..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$ValueIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$Values.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$Values.class deleted file mode 100644 index 1c1065d6..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap$Values.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap.class b/target/classes/org/dom4j/tree/ConcurrentReaderHashMap.class deleted file mode 100644 index 4aa8d87c..00000000 Binary files a/target/classes/org/dom4j/tree/ConcurrentReaderHashMap.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ContentListFacade.class b/target/classes/org/dom4j/tree/ContentListFacade.class deleted file mode 100644 index 4abb3c5e..00000000 Binary files a/target/classes/org/dom4j/tree/ContentListFacade.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultAttribute.class b/target/classes/org/dom4j/tree/DefaultAttribute.class deleted file mode 100644 index 8f214ded..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultAttribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultCDATA.class b/target/classes/org/dom4j/tree/DefaultCDATA.class deleted file mode 100644 index f8155e47..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultCDATA.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultComment.class b/target/classes/org/dom4j/tree/DefaultComment.class deleted file mode 100644 index 7c37220b..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultComment.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultDocument.class b/target/classes/org/dom4j/tree/DefaultDocument.class deleted file mode 100644 index ec22e023..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultDocument.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultDocumentType.class b/target/classes/org/dom4j/tree/DefaultDocumentType.class deleted file mode 100644 index d9acaedd..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultDocumentType.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultElement.class b/target/classes/org/dom4j/tree/DefaultElement.class deleted file mode 100644 index 63f93804..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultEntity.class b/target/classes/org/dom4j/tree/DefaultEntity.class deleted file mode 100644 index 77e9d07d..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultEntity.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultNamespace.class b/target/classes/org/dom4j/tree/DefaultNamespace.class deleted file mode 100644 index d4fbc704..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultNamespace.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultProcessingInstruction.class b/target/classes/org/dom4j/tree/DefaultProcessingInstruction.class deleted file mode 100644 index b6413e47..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultProcessingInstruction.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/DefaultText.class b/target/classes/org/dom4j/tree/DefaultText.class deleted file mode 100644 index 388640b1..00000000 Binary files a/target/classes/org/dom4j/tree/DefaultText.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ElementIterator.class b/target/classes/org/dom4j/tree/ElementIterator.class deleted file mode 100644 index c397efc5..00000000 Binary files a/target/classes/org/dom4j/tree/ElementIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ElementNameIterator.class b/target/classes/org/dom4j/tree/ElementNameIterator.class deleted file mode 100644 index 9781f24d..00000000 Binary files a/target/classes/org/dom4j/tree/ElementNameIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/ElementQNameIterator.class b/target/classes/org/dom4j/tree/ElementQNameIterator.class deleted file mode 100644 index 2d132686..00000000 Binary files a/target/classes/org/dom4j/tree/ElementQNameIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/FilterIterator.class b/target/classes/org/dom4j/tree/FilterIterator.class deleted file mode 100644 index 1f27b4ed..00000000 Binary files a/target/classes/org/dom4j/tree/FilterIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/FlyweightAttribute.class b/target/classes/org/dom4j/tree/FlyweightAttribute.class deleted file mode 100644 index 33fdf538..00000000 Binary files a/target/classes/org/dom4j/tree/FlyweightAttribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/FlyweightCDATA.class b/target/classes/org/dom4j/tree/FlyweightCDATA.class deleted file mode 100644 index 02be12f3..00000000 Binary files a/target/classes/org/dom4j/tree/FlyweightCDATA.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/FlyweightComment.class b/target/classes/org/dom4j/tree/FlyweightComment.class deleted file mode 100644 index fd226cae..00000000 Binary files a/target/classes/org/dom4j/tree/FlyweightComment.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/FlyweightEntity.class b/target/classes/org/dom4j/tree/FlyweightEntity.class deleted file mode 100644 index 9f8ea1a1..00000000 Binary files a/target/classes/org/dom4j/tree/FlyweightEntity.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/FlyweightProcessingInstruction.class b/target/classes/org/dom4j/tree/FlyweightProcessingInstruction.class deleted file mode 100644 index add4d4e9..00000000 Binary files a/target/classes/org/dom4j/tree/FlyweightProcessingInstruction.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/FlyweightText.class b/target/classes/org/dom4j/tree/FlyweightText.class deleted file mode 100644 index b3ed3cb6..00000000 Binary files a/target/classes/org/dom4j/tree/FlyweightText.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/NamespaceCache.class b/target/classes/org/dom4j/tree/NamespaceCache.class deleted file mode 100644 index 1deee63d..00000000 Binary files a/target/classes/org/dom4j/tree/NamespaceCache.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/NamespaceStack.class b/target/classes/org/dom4j/tree/NamespaceStack.class deleted file mode 100644 index 45d46503..00000000 Binary files a/target/classes/org/dom4j/tree/NamespaceStack.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/QNameCache.class b/target/classes/org/dom4j/tree/QNameCache.class deleted file mode 100644 index 99bfd0c8..00000000 Binary files a/target/classes/org/dom4j/tree/QNameCache.class and /dev/null differ diff --git a/target/classes/org/dom4j/tree/SingleIterator.class b/target/classes/org/dom4j/tree/SingleIterator.class deleted file mode 100644 index f16d3dad..00000000 Binary files a/target/classes/org/dom4j/tree/SingleIterator.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/AttributeHelper.class b/target/classes/org/dom4j/util/AttributeHelper.class deleted file mode 100644 index 72c9aecb..00000000 Binary files a/target/classes/org/dom4j/util/AttributeHelper.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/IndexedDocumentFactory.class b/target/classes/org/dom4j/util/IndexedDocumentFactory.class deleted file mode 100644 index b378a816..00000000 Binary files a/target/classes/org/dom4j/util/IndexedDocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/IndexedElement.class b/target/classes/org/dom4j/util/IndexedElement.class deleted file mode 100644 index 981a0a56..00000000 Binary files a/target/classes/org/dom4j/util/IndexedElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/NodeComparator.class b/target/classes/org/dom4j/util/NodeComparator.class deleted file mode 100644 index 6e715bc5..00000000 Binary files a/target/classes/org/dom4j/util/NodeComparator.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/NonLazyDocumentFactory.class b/target/classes/org/dom4j/util/NonLazyDocumentFactory.class deleted file mode 100644 index 0fd777ed..00000000 Binary files a/target/classes/org/dom4j/util/NonLazyDocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/NonLazyElement.class b/target/classes/org/dom4j/util/NonLazyElement.class deleted file mode 100644 index c5bf809d..00000000 Binary files a/target/classes/org/dom4j/util/NonLazyElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/PerThreadSingleton.class b/target/classes/org/dom4j/util/PerThreadSingleton.class deleted file mode 100644 index 73743a4a..00000000 Binary files a/target/classes/org/dom4j/util/PerThreadSingleton.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/ProxyDocumentFactory.class b/target/classes/org/dom4j/util/ProxyDocumentFactory.class deleted file mode 100644 index 30dee8e4..00000000 Binary files a/target/classes/org/dom4j/util/ProxyDocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/SimpleSingleton.class b/target/classes/org/dom4j/util/SimpleSingleton.class deleted file mode 100644 index 44052c0b..00000000 Binary files a/target/classes/org/dom4j/util/SimpleSingleton.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/SingletonStrategy.class b/target/classes/org/dom4j/util/SingletonStrategy.class deleted file mode 100644 index 85c2fdd4..00000000 Binary files a/target/classes/org/dom4j/util/SingletonStrategy.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/UserDataAttribute.class b/target/classes/org/dom4j/util/UserDataAttribute.class deleted file mode 100644 index 459d7fcd..00000000 Binary files a/target/classes/org/dom4j/util/UserDataAttribute.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/UserDataDocumentFactory.class b/target/classes/org/dom4j/util/UserDataDocumentFactory.class deleted file mode 100644 index a4ed40ef..00000000 Binary files a/target/classes/org/dom4j/util/UserDataDocumentFactory.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/UserDataElement.class b/target/classes/org/dom4j/util/UserDataElement.class deleted file mode 100644 index 23f59371..00000000 Binary files a/target/classes/org/dom4j/util/UserDataElement.class and /dev/null differ diff --git a/target/classes/org/dom4j/util/XMLErrorHandler.class b/target/classes/org/dom4j/util/XMLErrorHandler.class deleted file mode 100644 index bef435ef..00000000 Binary files a/target/classes/org/dom4j/util/XMLErrorHandler.class and /dev/null differ diff --git a/target/classes/org/dom4j/xpath/DefaultNamespaceContext.class b/target/classes/org/dom4j/xpath/DefaultNamespaceContext.class deleted file mode 100644 index 37dc6ae1..00000000 Binary files a/target/classes/org/dom4j/xpath/DefaultNamespaceContext.class and /dev/null differ diff --git a/target/classes/org/dom4j/xpath/DefaultXPath$1.class b/target/classes/org/dom4j/xpath/DefaultXPath$1.class deleted file mode 100644 index 4cc5b35d..00000000 Binary files a/target/classes/org/dom4j/xpath/DefaultXPath$1.class and /dev/null differ diff --git a/target/classes/org/dom4j/xpath/DefaultXPath.class b/target/classes/org/dom4j/xpath/DefaultXPath.class deleted file mode 100644 index 9d730d92..00000000 Binary files a/target/classes/org/dom4j/xpath/DefaultXPath.class and /dev/null differ diff --git a/target/classes/org/dom4j/xpath/XPathPattern.class b/target/classes/org/dom4j/xpath/XPathPattern.class deleted file mode 100644 index 4c5d7ab4..00000000 Binary files a/target/classes/org/dom4j/xpath/XPathPattern.class and /dev/null differ diff --git a/target/classes/org/dom4j/xpp/ProxyXmlStartTag.class b/target/classes/org/dom4j/xpp/ProxyXmlStartTag.class deleted file mode 100644 index dd06af61..00000000 Binary files a/target/classes/org/dom4j/xpp/ProxyXmlStartTag.class and /dev/null differ diff --git a/target/classes/org/gjt/mm/mysql/Driver.class b/target/classes/org/gjt/mm/mysql/Driver.class deleted file mode 100644 index 58c80b5b..00000000 Binary files a/target/classes/org/gjt/mm/mysql/Driver.class and /dev/null differ diff --git a/target/classes/org/hibernate/AnnotationException.class b/target/classes/org/hibernate/AnnotationException.class deleted file mode 100644 index 5d94b59e..00000000 Binary files a/target/classes/org/hibernate/AnnotationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/AssertionFailure.class b/target/classes/org/hibernate/AssertionFailure.class deleted file mode 100644 index 5fa1221d..00000000 Binary files a/target/classes/org/hibernate/AssertionFailure.class and /dev/null differ diff --git a/target/classes/org/hibernate/BaseSessionEventListener.class b/target/classes/org/hibernate/BaseSessionEventListener.class deleted file mode 100644 index 06bb3390..00000000 Binary files a/target/classes/org/hibernate/BaseSessionEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/BasicQueryContract.class b/target/classes/org/hibernate/BasicQueryContract.class deleted file mode 100644 index 7f866747..00000000 Binary files a/target/classes/org/hibernate/BasicQueryContract.class and /dev/null differ diff --git a/target/classes/org/hibernate/Cache.class b/target/classes/org/hibernate/Cache.class deleted file mode 100644 index 18dd8d09..00000000 Binary files a/target/classes/org/hibernate/Cache.class and /dev/null differ diff --git a/target/classes/org/hibernate/CacheMode.class b/target/classes/org/hibernate/CacheMode.class deleted file mode 100644 index 787e2210..00000000 Binary files a/target/classes/org/hibernate/CacheMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/CallbackException.class b/target/classes/org/hibernate/CallbackException.class deleted file mode 100644 index 3aff14c0..00000000 Binary files a/target/classes/org/hibernate/CallbackException.class and /dev/null differ diff --git a/target/classes/org/hibernate/ConnectionAcquisitionMode.class b/target/classes/org/hibernate/ConnectionAcquisitionMode.class deleted file mode 100644 index 38a4f0e2..00000000 Binary files a/target/classes/org/hibernate/ConnectionAcquisitionMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/ConnectionReleaseMode.class b/target/classes/org/hibernate/ConnectionReleaseMode.class deleted file mode 100644 index ff761801..00000000 Binary files a/target/classes/org/hibernate/ConnectionReleaseMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/Criteria.class b/target/classes/org/hibernate/Criteria.class deleted file mode 100644 index 8595e6b8..00000000 Binary files a/target/classes/org/hibernate/Criteria.class and /dev/null differ diff --git a/target/classes/org/hibernate/CustomEntityDirtinessStrategy$AttributeChecker.class b/target/classes/org/hibernate/CustomEntityDirtinessStrategy$AttributeChecker.class deleted file mode 100644 index 5e33f432..00000000 Binary files a/target/classes/org/hibernate/CustomEntityDirtinessStrategy$AttributeChecker.class and /dev/null differ diff --git a/target/classes/org/hibernate/CustomEntityDirtinessStrategy$AttributeInformation.class b/target/classes/org/hibernate/CustomEntityDirtinessStrategy$AttributeInformation.class deleted file mode 100644 index 652eac06..00000000 Binary files a/target/classes/org/hibernate/CustomEntityDirtinessStrategy$AttributeInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/CustomEntityDirtinessStrategy$DirtyCheckContext.class b/target/classes/org/hibernate/CustomEntityDirtinessStrategy$DirtyCheckContext.class deleted file mode 100644 index f52d516d..00000000 Binary files a/target/classes/org/hibernate/CustomEntityDirtinessStrategy$DirtyCheckContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/CustomEntityDirtinessStrategy.class b/target/classes/org/hibernate/CustomEntityDirtinessStrategy.class deleted file mode 100644 index 2d6ef540..00000000 Binary files a/target/classes/org/hibernate/CustomEntityDirtinessStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/DuplicateMappingException$Type.class b/target/classes/org/hibernate/DuplicateMappingException$Type.class deleted file mode 100644 index c0427fbe..00000000 Binary files a/target/classes/org/hibernate/DuplicateMappingException$Type.class and /dev/null differ diff --git a/target/classes/org/hibernate/DuplicateMappingException.class b/target/classes/org/hibernate/DuplicateMappingException.class deleted file mode 100644 index 6e643875..00000000 Binary files a/target/classes/org/hibernate/DuplicateMappingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/EmptyInterceptor.class b/target/classes/org/hibernate/EmptyInterceptor.class deleted file mode 100644 index d7ff34e9..00000000 Binary files a/target/classes/org/hibernate/EmptyInterceptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/EntityMode.class b/target/classes/org/hibernate/EntityMode.class deleted file mode 100644 index 8c3a8fc6..00000000 Binary files a/target/classes/org/hibernate/EntityMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/EntityNameResolver.class b/target/classes/org/hibernate/EntityNameResolver.class deleted file mode 100644 index 35fdd236..00000000 Binary files a/target/classes/org/hibernate/EntityNameResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/FetchMode.class b/target/classes/org/hibernate/FetchMode.class deleted file mode 100644 index 79f21620..00000000 Binary files a/target/classes/org/hibernate/FetchMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/Filter.class b/target/classes/org/hibernate/Filter.class deleted file mode 100644 index 849b8e4f..00000000 Binary files a/target/classes/org/hibernate/Filter.class and /dev/null differ diff --git a/target/classes/org/hibernate/FlushMode.class b/target/classes/org/hibernate/FlushMode.class deleted file mode 100644 index 04b00fb6..00000000 Binary files a/target/classes/org/hibernate/FlushMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/Hibernate.class b/target/classes/org/hibernate/Hibernate.class deleted file mode 100644 index 2faaa77c..00000000 Binary files a/target/classes/org/hibernate/Hibernate.class and /dev/null differ diff --git a/target/classes/org/hibernate/HibernateError.class b/target/classes/org/hibernate/HibernateError.class deleted file mode 100644 index ffa2ce07..00000000 Binary files a/target/classes/org/hibernate/HibernateError.class and /dev/null differ diff --git a/target/classes/org/hibernate/HibernateException.class b/target/classes/org/hibernate/HibernateException.class deleted file mode 100644 index 47102e3a..00000000 Binary files a/target/classes/org/hibernate/HibernateException.class and /dev/null differ diff --git a/target/classes/org/hibernate/IdentifierLoadAccess.class b/target/classes/org/hibernate/IdentifierLoadAccess.class deleted file mode 100644 index 083665ad..00000000 Binary files a/target/classes/org/hibernate/IdentifierLoadAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/Incubating.class b/target/classes/org/hibernate/Incubating.class deleted file mode 100644 index d55a5d53..00000000 Binary files a/target/classes/org/hibernate/Incubating.class and /dev/null differ diff --git a/target/classes/org/hibernate/InstantiationException.class b/target/classes/org/hibernate/InstantiationException.class deleted file mode 100644 index 8041da0a..00000000 Binary files a/target/classes/org/hibernate/InstantiationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/Interceptor.class b/target/classes/org/hibernate/Interceptor.class deleted file mode 100644 index 87a665a3..00000000 Binary files a/target/classes/org/hibernate/Interceptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/InvalidMappingException.class b/target/classes/org/hibernate/InvalidMappingException.class deleted file mode 100644 index a28fbc4a..00000000 Binary files a/target/classes/org/hibernate/InvalidMappingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/JDBCException.class b/target/classes/org/hibernate/JDBCException.class deleted file mode 100644 index e57c36fc..00000000 Binary files a/target/classes/org/hibernate/JDBCException.class and /dev/null differ diff --git a/target/classes/org/hibernate/LazyInitializationException.class b/target/classes/org/hibernate/LazyInitializationException.class deleted file mode 100644 index 673ca99e..00000000 Binary files a/target/classes/org/hibernate/LazyInitializationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/LobHelper.class b/target/classes/org/hibernate/LobHelper.class deleted file mode 100644 index 735eb31b..00000000 Binary files a/target/classes/org/hibernate/LobHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/LockMode.class b/target/classes/org/hibernate/LockMode.class deleted file mode 100644 index 81d8113e..00000000 Binary files a/target/classes/org/hibernate/LockMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/LockOptions.class b/target/classes/org/hibernate/LockOptions.class deleted file mode 100644 index a9600f78..00000000 Binary files a/target/classes/org/hibernate/LockOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/MappingException.class b/target/classes/org/hibernate/MappingException.class deleted file mode 100644 index 1b8c6200..00000000 Binary files a/target/classes/org/hibernate/MappingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/MappingNotFoundException.class b/target/classes/org/hibernate/MappingNotFoundException.class deleted file mode 100644 index 5c6031a8..00000000 Binary files a/target/classes/org/hibernate/MappingNotFoundException.class and /dev/null differ diff --git a/target/classes/org/hibernate/MultiIdentifierLoadAccess.class b/target/classes/org/hibernate/MultiIdentifierLoadAccess.class deleted file mode 100644 index e550fd6f..00000000 Binary files a/target/classes/org/hibernate/MultiIdentifierLoadAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/MultiTenancyStrategy.class b/target/classes/org/hibernate/MultiTenancyStrategy.class deleted file mode 100644 index 9bed9a3e..00000000 Binary files a/target/classes/org/hibernate/MultiTenancyStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/NaturalIdLoadAccess.class b/target/classes/org/hibernate/NaturalIdLoadAccess.class deleted file mode 100644 index db36adf2..00000000 Binary files a/target/classes/org/hibernate/NaturalIdLoadAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/NonUniqueObjectException.class b/target/classes/org/hibernate/NonUniqueObjectException.class deleted file mode 100644 index 1daa4b60..00000000 Binary files a/target/classes/org/hibernate/NonUniqueObjectException.class and /dev/null differ diff --git a/target/classes/org/hibernate/NonUniqueResultException.class b/target/classes/org/hibernate/NonUniqueResultException.class deleted file mode 100644 index 57f1f409..00000000 Binary files a/target/classes/org/hibernate/NonUniqueResultException.class and /dev/null differ diff --git a/target/classes/org/hibernate/NullPrecedence.class b/target/classes/org/hibernate/NullPrecedence.class deleted file mode 100644 index 343051c8..00000000 Binary files a/target/classes/org/hibernate/NullPrecedence.class and /dev/null differ diff --git a/target/classes/org/hibernate/ObjectDeletedException.class b/target/classes/org/hibernate/ObjectDeletedException.class deleted file mode 100644 index 9b16d060..00000000 Binary files a/target/classes/org/hibernate/ObjectDeletedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/ObjectNotFoundException.class b/target/classes/org/hibernate/ObjectNotFoundException.class deleted file mode 100644 index 7049c3a2..00000000 Binary files a/target/classes/org/hibernate/ObjectNotFoundException.class and /dev/null differ diff --git a/target/classes/org/hibernate/OptimisticLockException.class b/target/classes/org/hibernate/OptimisticLockException.class deleted file mode 100644 index 1cbfc2fe..00000000 Binary files a/target/classes/org/hibernate/OptimisticLockException.class and /dev/null differ diff --git a/target/classes/org/hibernate/PersistentObjectException.class b/target/classes/org/hibernate/PersistentObjectException.class deleted file mode 100644 index 83fdfb85..00000000 Binary files a/target/classes/org/hibernate/PersistentObjectException.class and /dev/null differ diff --git a/target/classes/org/hibernate/PessimisticLockException.class b/target/classes/org/hibernate/PessimisticLockException.class deleted file mode 100644 index b1163997..00000000 Binary files a/target/classes/org/hibernate/PessimisticLockException.class and /dev/null differ diff --git a/target/classes/org/hibernate/PropertyAccessException.class b/target/classes/org/hibernate/PropertyAccessException.class deleted file mode 100644 index 5349b424..00000000 Binary files a/target/classes/org/hibernate/PropertyAccessException.class and /dev/null differ diff --git a/target/classes/org/hibernate/PropertyNotFoundException.class b/target/classes/org/hibernate/PropertyNotFoundException.class deleted file mode 100644 index 4bb06c2a..00000000 Binary files a/target/classes/org/hibernate/PropertyNotFoundException.class and /dev/null differ diff --git a/target/classes/org/hibernate/PropertySetterAccessException.class b/target/classes/org/hibernate/PropertySetterAccessException.class deleted file mode 100644 index ec2d5a15..00000000 Binary files a/target/classes/org/hibernate/PropertySetterAccessException.class and /dev/null differ diff --git a/target/classes/org/hibernate/PropertyValueException.class b/target/classes/org/hibernate/PropertyValueException.class deleted file mode 100644 index 1c7d95c9..00000000 Binary files a/target/classes/org/hibernate/PropertyValueException.class and /dev/null differ diff --git a/target/classes/org/hibernate/Query.class b/target/classes/org/hibernate/Query.class deleted file mode 100644 index 8300aa5f..00000000 Binary files a/target/classes/org/hibernate/Query.class and /dev/null differ diff --git a/target/classes/org/hibernate/QueryException.class b/target/classes/org/hibernate/QueryException.class deleted file mode 100644 index a6b62bbf..00000000 Binary files a/target/classes/org/hibernate/QueryException.class and /dev/null differ diff --git a/target/classes/org/hibernate/QueryParameterException.class b/target/classes/org/hibernate/QueryParameterException.class deleted file mode 100644 index f4be1333..00000000 Binary files a/target/classes/org/hibernate/QueryParameterException.class and /dev/null differ diff --git a/target/classes/org/hibernate/QueryTimeoutException.class b/target/classes/org/hibernate/QueryTimeoutException.class deleted file mode 100644 index e36fa3c8..00000000 Binary files a/target/classes/org/hibernate/QueryTimeoutException.class and /dev/null differ diff --git a/target/classes/org/hibernate/ReplicationMode$1.class b/target/classes/org/hibernate/ReplicationMode$1.class deleted file mode 100644 index bba7706c..00000000 Binary files a/target/classes/org/hibernate/ReplicationMode$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/ReplicationMode$2.class b/target/classes/org/hibernate/ReplicationMode$2.class deleted file mode 100644 index 38e4a225..00000000 Binary files a/target/classes/org/hibernate/ReplicationMode$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/ReplicationMode$3.class b/target/classes/org/hibernate/ReplicationMode$3.class deleted file mode 100644 index 7e6fc976..00000000 Binary files a/target/classes/org/hibernate/ReplicationMode$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/ReplicationMode$4.class b/target/classes/org/hibernate/ReplicationMode$4.class deleted file mode 100644 index a39c8e06..00000000 Binary files a/target/classes/org/hibernate/ReplicationMode$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/ReplicationMode.class b/target/classes/org/hibernate/ReplicationMode.class deleted file mode 100644 index 2de451b5..00000000 Binary files a/target/classes/org/hibernate/ReplicationMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/ResourceClosedException.class b/target/classes/org/hibernate/ResourceClosedException.class deleted file mode 100644 index f2c01f56..00000000 Binary files a/target/classes/org/hibernate/ResourceClosedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/SQLQuery$FetchReturn.class b/target/classes/org/hibernate/SQLQuery$FetchReturn.class deleted file mode 100644 index 7c411034..00000000 Binary files a/target/classes/org/hibernate/SQLQuery$FetchReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/SQLQuery$ReturnProperty.class b/target/classes/org/hibernate/SQLQuery$ReturnProperty.class deleted file mode 100644 index 75e8f006..00000000 Binary files a/target/classes/org/hibernate/SQLQuery$ReturnProperty.class and /dev/null differ diff --git a/target/classes/org/hibernate/SQLQuery$RootReturn.class b/target/classes/org/hibernate/SQLQuery$RootReturn.class deleted file mode 100644 index f0d648e2..00000000 Binary files a/target/classes/org/hibernate/SQLQuery$RootReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/SQLQuery.class b/target/classes/org/hibernate/SQLQuery.class deleted file mode 100644 index b1d5b013..00000000 Binary files a/target/classes/org/hibernate/SQLQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/ScrollMode.class b/target/classes/org/hibernate/ScrollMode.class deleted file mode 100644 index ce84b4b9..00000000 Binary files a/target/classes/org/hibernate/ScrollMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/ScrollableResults.class b/target/classes/org/hibernate/ScrollableResults.class deleted file mode 100644 index 7251c7f8..00000000 Binary files a/target/classes/org/hibernate/ScrollableResults.class and /dev/null differ diff --git a/target/classes/org/hibernate/Session$LockRequest.class b/target/classes/org/hibernate/Session$LockRequest.class deleted file mode 100644 index f284e866..00000000 Binary files a/target/classes/org/hibernate/Session$LockRequest.class and /dev/null differ diff --git a/target/classes/org/hibernate/Session.class b/target/classes/org/hibernate/Session.class deleted file mode 100644 index ab6a6169..00000000 Binary files a/target/classes/org/hibernate/Session.class and /dev/null differ diff --git a/target/classes/org/hibernate/SessionBuilder.class b/target/classes/org/hibernate/SessionBuilder.class deleted file mode 100644 index 6b6e92fa..00000000 Binary files a/target/classes/org/hibernate/SessionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/SessionEventListener.class b/target/classes/org/hibernate/SessionEventListener.class deleted file mode 100644 index a1444b85..00000000 Binary files a/target/classes/org/hibernate/SessionEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/SessionException.class b/target/classes/org/hibernate/SessionException.class deleted file mode 100644 index 463ed3a6..00000000 Binary files a/target/classes/org/hibernate/SessionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/SessionFactory.class b/target/classes/org/hibernate/SessionFactory.class deleted file mode 100644 index 89dd82a1..00000000 Binary files a/target/classes/org/hibernate/SessionFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/SessionFactoryObserver.class b/target/classes/org/hibernate/SessionFactoryObserver.class deleted file mode 100644 index a327c615..00000000 Binary files a/target/classes/org/hibernate/SessionFactoryObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/SharedSessionBuilder.class b/target/classes/org/hibernate/SharedSessionBuilder.class deleted file mode 100644 index 2f09e262..00000000 Binary files a/target/classes/org/hibernate/SharedSessionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/SharedSessionContract.class b/target/classes/org/hibernate/SharedSessionContract.class deleted file mode 100644 index 6d449266..00000000 Binary files a/target/classes/org/hibernate/SharedSessionContract.class and /dev/null differ diff --git a/target/classes/org/hibernate/SimpleNaturalIdLoadAccess.class b/target/classes/org/hibernate/SimpleNaturalIdLoadAccess.class deleted file mode 100644 index e8a2c0c4..00000000 Binary files a/target/classes/org/hibernate/SimpleNaturalIdLoadAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/StaleObjectStateException.class b/target/classes/org/hibernate/StaleObjectStateException.class deleted file mode 100644 index a7dd2ed3..00000000 Binary files a/target/classes/org/hibernate/StaleObjectStateException.class and /dev/null differ diff --git a/target/classes/org/hibernate/StaleStateException.class b/target/classes/org/hibernate/StaleStateException.class deleted file mode 100644 index 57d76b63..00000000 Binary files a/target/classes/org/hibernate/StaleStateException.class and /dev/null differ diff --git a/target/classes/org/hibernate/StatelessSession.class b/target/classes/org/hibernate/StatelessSession.class deleted file mode 100644 index 0e49c575..00000000 Binary files a/target/classes/org/hibernate/StatelessSession.class and /dev/null differ diff --git a/target/classes/org/hibernate/StatelessSessionBuilder.class b/target/classes/org/hibernate/StatelessSessionBuilder.class deleted file mode 100644 index 1825b579..00000000 Binary files a/target/classes/org/hibernate/StatelessSessionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/SynchronizeableQuery.class b/target/classes/org/hibernate/SynchronizeableQuery.class deleted file mode 100644 index 3974ee5f..00000000 Binary files a/target/classes/org/hibernate/SynchronizeableQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/Transaction.class b/target/classes/org/hibernate/Transaction.class deleted file mode 100644 index ecc02ef0..00000000 Binary files a/target/classes/org/hibernate/Transaction.class and /dev/null differ diff --git a/target/classes/org/hibernate/TransactionException.class b/target/classes/org/hibernate/TransactionException.class deleted file mode 100644 index 62fcfd79..00000000 Binary files a/target/classes/org/hibernate/TransactionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/TransientObjectException.class b/target/classes/org/hibernate/TransientObjectException.class deleted file mode 100644 index beca912c..00000000 Binary files a/target/classes/org/hibernate/TransientObjectException.class and /dev/null differ diff --git a/target/classes/org/hibernate/TransientPropertyValueException.class b/target/classes/org/hibernate/TransientPropertyValueException.class deleted file mode 100644 index e294c86b..00000000 Binary files a/target/classes/org/hibernate/TransientPropertyValueException.class and /dev/null differ diff --git a/target/classes/org/hibernate/TypeHelper.class b/target/classes/org/hibernate/TypeHelper.class deleted file mode 100644 index a2be26b1..00000000 Binary files a/target/classes/org/hibernate/TypeHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/TypeMismatchException.class b/target/classes/org/hibernate/TypeMismatchException.class deleted file mode 100644 index 4c9a2a61..00000000 Binary files a/target/classes/org/hibernate/TypeMismatchException.class and /dev/null differ diff --git a/target/classes/org/hibernate/UnknownEntityTypeException.class b/target/classes/org/hibernate/UnknownEntityTypeException.class deleted file mode 100644 index b09c7699..00000000 Binary files a/target/classes/org/hibernate/UnknownEntityTypeException.class and /dev/null differ diff --git a/target/classes/org/hibernate/UnknownProfileException.class b/target/classes/org/hibernate/UnknownProfileException.class deleted file mode 100644 index 7c6849f2..00000000 Binary files a/target/classes/org/hibernate/UnknownProfileException.class and /dev/null differ diff --git a/target/classes/org/hibernate/UnresolvableObjectException.class b/target/classes/org/hibernate/UnresolvableObjectException.class deleted file mode 100644 index 720503a4..00000000 Binary files a/target/classes/org/hibernate/UnresolvableObjectException.class and /dev/null differ diff --git a/target/classes/org/hibernate/UnsupportedLockAttemptException.class b/target/classes/org/hibernate/UnsupportedLockAttemptException.class deleted file mode 100644 index 67d87d9c..00000000 Binary files a/target/classes/org/hibernate/UnsupportedLockAttemptException.class and /dev/null differ diff --git a/target/classes/org/hibernate/Version.class b/target/classes/org/hibernate/Version.class deleted file mode 100644 index bc7abe2d..00000000 Binary files a/target/classes/org/hibernate/Version.class and /dev/null differ diff --git a/target/classes/org/hibernate/WrongClassException.class b/target/classes/org/hibernate/WrongClassException.class deleted file mode 100644 index b41f5703..00000000 Binary files a/target/classes/org/hibernate/WrongClassException.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/AbstractEntityInsertAction.class b/target/classes/org/hibernate/action/internal/AbstractEntityInsertAction.class deleted file mode 100644 index 20ff0561..00000000 Binary files a/target/classes/org/hibernate/action/internal/AbstractEntityInsertAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$1.class b/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$1.class deleted file mode 100644 index e9f51b29..00000000 Binary files a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$CollectionCleanup.class b/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$CollectionCleanup.class deleted file mode 100644 index a179d728..00000000 Binary files a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$CollectionCleanup.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$EntityCleanup.class b/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$EntityCleanup.class deleted file mode 100644 index 02519ac3..00000000 Binary files a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$EntityCleanup.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$NaturalIdCleanup.class b/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$NaturalIdCleanup.class deleted file mode 100644 index a2b7b7f4..00000000 Binary files a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction$NaturalIdCleanup.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction.class b/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction.class deleted file mode 100644 index 1747af3a..00000000 Binary files a/target/classes/org/hibernate/action/internal/BulkOperationCleanupAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/CollectionAction$1.class b/target/classes/org/hibernate/action/internal/CollectionAction$1.class deleted file mode 100644 index db0bdb86..00000000 Binary files a/target/classes/org/hibernate/action/internal/CollectionAction$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/CollectionAction$CacheCleanupProcess.class b/target/classes/org/hibernate/action/internal/CollectionAction$CacheCleanupProcess.class deleted file mode 100644 index dbec4486..00000000 Binary files a/target/classes/org/hibernate/action/internal/CollectionAction$CacheCleanupProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/CollectionAction.class b/target/classes/org/hibernate/action/internal/CollectionAction.class deleted file mode 100644 index f2d92629..00000000 Binary files a/target/classes/org/hibernate/action/internal/CollectionAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/CollectionRecreateAction.class b/target/classes/org/hibernate/action/internal/CollectionRecreateAction.class deleted file mode 100644 index 18076b4c..00000000 Binary files a/target/classes/org/hibernate/action/internal/CollectionRecreateAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/CollectionRemoveAction.class b/target/classes/org/hibernate/action/internal/CollectionRemoveAction.class deleted file mode 100644 index 1fb6692f..00000000 Binary files a/target/classes/org/hibernate/action/internal/CollectionRemoveAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/CollectionUpdateAction.class b/target/classes/org/hibernate/action/internal/CollectionUpdateAction.class deleted file mode 100644 index 9a9636d6..00000000 Binary files a/target/classes/org/hibernate/action/internal/CollectionUpdateAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/DelayedPostInsertIdentifier.class b/target/classes/org/hibernate/action/internal/DelayedPostInsertIdentifier.class deleted file mode 100644 index 6c62fe09..00000000 Binary files a/target/classes/org/hibernate/action/internal/DelayedPostInsertIdentifier.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/EntityAction.class b/target/classes/org/hibernate/action/internal/EntityAction.class deleted file mode 100644 index 75f3e1fd..00000000 Binary files a/target/classes/org/hibernate/action/internal/EntityAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/EntityDeleteAction.class b/target/classes/org/hibernate/action/internal/EntityDeleteAction.class deleted file mode 100644 index bc14fec3..00000000 Binary files a/target/classes/org/hibernate/action/internal/EntityDeleteAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/EntityIdentityInsertAction.class b/target/classes/org/hibernate/action/internal/EntityIdentityInsertAction.class deleted file mode 100644 index 52701eb1..00000000 Binary files a/target/classes/org/hibernate/action/internal/EntityIdentityInsertAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/EntityIncrementVersionProcess.class b/target/classes/org/hibernate/action/internal/EntityIncrementVersionProcess.class deleted file mode 100644 index 9223bd72..00000000 Binary files a/target/classes/org/hibernate/action/internal/EntityIncrementVersionProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/EntityInsertAction.class b/target/classes/org/hibernate/action/internal/EntityInsertAction.class deleted file mode 100644 index dcbaa887..00000000 Binary files a/target/classes/org/hibernate/action/internal/EntityInsertAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/EntityUpdateAction.class b/target/classes/org/hibernate/action/internal/EntityUpdateAction.class deleted file mode 100644 index a70f0947..00000000 Binary files a/target/classes/org/hibernate/action/internal/EntityUpdateAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/EntityVerifyVersionProcess.class b/target/classes/org/hibernate/action/internal/EntityVerifyVersionProcess.class deleted file mode 100644 index d65ff1c8..00000000 Binary files a/target/classes/org/hibernate/action/internal/EntityVerifyVersionProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/OrphanRemovalAction.class b/target/classes/org/hibernate/action/internal/OrphanRemovalAction.class deleted file mode 100644 index 72110a53..00000000 Binary files a/target/classes/org/hibernate/action/internal/OrphanRemovalAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/QueuedOperationCollectionAction.class b/target/classes/org/hibernate/action/internal/QueuedOperationCollectionAction.class deleted file mode 100644 index d0f59d58..00000000 Binary files a/target/classes/org/hibernate/action/internal/QueuedOperationCollectionAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/internal/UnresolvedEntityInsertActions.class b/target/classes/org/hibernate/action/internal/UnresolvedEntityInsertActions.class deleted file mode 100644 index 27e2db0a..00000000 Binary files a/target/classes/org/hibernate/action/internal/UnresolvedEntityInsertActions.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/spi/AfterTransactionCompletionProcess.class b/target/classes/org/hibernate/action/spi/AfterTransactionCompletionProcess.class deleted file mode 100644 index d1e85e29..00000000 Binary files a/target/classes/org/hibernate/action/spi/AfterTransactionCompletionProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/spi/BeforeTransactionCompletionProcess.class b/target/classes/org/hibernate/action/spi/BeforeTransactionCompletionProcess.class deleted file mode 100644 index 07fef6dc..00000000 Binary files a/target/classes/org/hibernate/action/spi/BeforeTransactionCompletionProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/action/spi/Executable.class b/target/classes/org/hibernate/action/spi/Executable.class deleted file mode 100644 index 23f4888e..00000000 Binary files a/target/classes/org/hibernate/action/spi/Executable.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/AccessType.class b/target/classes/org/hibernate/annotations/AccessType.class deleted file mode 100644 index 064d7226..00000000 Binary files a/target/classes/org/hibernate/annotations/AccessType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Any.class b/target/classes/org/hibernate/annotations/Any.class deleted file mode 100644 index 147aacf1..00000000 Binary files a/target/classes/org/hibernate/annotations/Any.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/AnyMetaDef.class b/target/classes/org/hibernate/annotations/AnyMetaDef.class deleted file mode 100644 index 1cdba98e..00000000 Binary files a/target/classes/org/hibernate/annotations/AnyMetaDef.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/AnyMetaDefs.class b/target/classes/org/hibernate/annotations/AnyMetaDefs.class deleted file mode 100644 index cd214031..00000000 Binary files a/target/classes/org/hibernate/annotations/AnyMetaDefs.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/AttributeAccessor.class b/target/classes/org/hibernate/annotations/AttributeAccessor.class deleted file mode 100644 index 773c53e7..00000000 Binary files a/target/classes/org/hibernate/annotations/AttributeAccessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/BatchSize.class b/target/classes/org/hibernate/annotations/BatchSize.class deleted file mode 100644 index 42ff6453..00000000 Binary files a/target/classes/org/hibernate/annotations/BatchSize.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Cache.class b/target/classes/org/hibernate/annotations/Cache.class deleted file mode 100644 index 23b102f1..00000000 Binary files a/target/classes/org/hibernate/annotations/Cache.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CacheConcurrencyStrategy$1.class b/target/classes/org/hibernate/annotations/CacheConcurrencyStrategy$1.class deleted file mode 100644 index 561deaac..00000000 Binary files a/target/classes/org/hibernate/annotations/CacheConcurrencyStrategy$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CacheConcurrencyStrategy.class b/target/classes/org/hibernate/annotations/CacheConcurrencyStrategy.class deleted file mode 100644 index 3bef5d16..00000000 Binary files a/target/classes/org/hibernate/annotations/CacheConcurrencyStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CacheModeType$1.class b/target/classes/org/hibernate/annotations/CacheModeType$1.class deleted file mode 100644 index 1b546fe3..00000000 Binary files a/target/classes/org/hibernate/annotations/CacheModeType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CacheModeType.class b/target/classes/org/hibernate/annotations/CacheModeType.class deleted file mode 100644 index 118a0643..00000000 Binary files a/target/classes/org/hibernate/annotations/CacheModeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Cascade.class b/target/classes/org/hibernate/annotations/Cascade.class deleted file mode 100644 index df60cebd..00000000 Binary files a/target/classes/org/hibernate/annotations/Cascade.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CascadeType.class b/target/classes/org/hibernate/annotations/CascadeType.class deleted file mode 100644 index 75686850..00000000 Binary files a/target/classes/org/hibernate/annotations/CascadeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Check.class b/target/classes/org/hibernate/annotations/Check.class deleted file mode 100644 index 4f24ac67..00000000 Binary files a/target/classes/org/hibernate/annotations/Check.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CollectionId.class b/target/classes/org/hibernate/annotations/CollectionId.class deleted file mode 100644 index 8c842615..00000000 Binary files a/target/classes/org/hibernate/annotations/CollectionId.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CollectionType.class b/target/classes/org/hibernate/annotations/CollectionType.class deleted file mode 100644 index 0c68fcb6..00000000 Binary files a/target/classes/org/hibernate/annotations/CollectionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ColumnDefault.class b/target/classes/org/hibernate/annotations/ColumnDefault.class deleted file mode 100644 index 30ed3541..00000000 Binary files a/target/classes/org/hibernate/annotations/ColumnDefault.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ColumnTransformer.class b/target/classes/org/hibernate/annotations/ColumnTransformer.class deleted file mode 100644 index 85f3a411..00000000 Binary files a/target/classes/org/hibernate/annotations/ColumnTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ColumnTransformers.class b/target/classes/org/hibernate/annotations/ColumnTransformers.class deleted file mode 100644 index db5fd030..00000000 Binary files a/target/classes/org/hibernate/annotations/ColumnTransformers.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Columns.class b/target/classes/org/hibernate/annotations/Columns.class deleted file mode 100644 index a2d153f5..00000000 Binary files a/target/classes/org/hibernate/annotations/Columns.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/CreationTimestamp.class b/target/classes/org/hibernate/annotations/CreationTimestamp.class deleted file mode 100644 index b8fc905c..00000000 Binary files a/target/classes/org/hibernate/annotations/CreationTimestamp.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/DiscriminatorFormula.class b/target/classes/org/hibernate/annotations/DiscriminatorFormula.class deleted file mode 100644 index 8b460fb2..00000000 Binary files a/target/classes/org/hibernate/annotations/DiscriminatorFormula.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/DiscriminatorOptions.class b/target/classes/org/hibernate/annotations/DiscriminatorOptions.class deleted file mode 100644 index 7c1b44cc..00000000 Binary files a/target/classes/org/hibernate/annotations/DiscriminatorOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/DynamicInsert.class b/target/classes/org/hibernate/annotations/DynamicInsert.class deleted file mode 100644 index 95aa4afb..00000000 Binary files a/target/classes/org/hibernate/annotations/DynamicInsert.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/DynamicUpdate.class b/target/classes/org/hibernate/annotations/DynamicUpdate.class deleted file mode 100644 index 4def8347..00000000 Binary files a/target/classes/org/hibernate/annotations/DynamicUpdate.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Entity.class b/target/classes/org/hibernate/annotations/Entity.class deleted file mode 100644 index f5386db3..00000000 Binary files a/target/classes/org/hibernate/annotations/Entity.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Fetch.class b/target/classes/org/hibernate/annotations/Fetch.class deleted file mode 100644 index c629021c..00000000 Binary files a/target/classes/org/hibernate/annotations/Fetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FetchMode.class b/target/classes/org/hibernate/annotations/FetchMode.class deleted file mode 100644 index 6ad1f379..00000000 Binary files a/target/classes/org/hibernate/annotations/FetchMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FetchProfile$FetchOverride.class b/target/classes/org/hibernate/annotations/FetchProfile$FetchOverride.class deleted file mode 100644 index 8b7a98fe..00000000 Binary files a/target/classes/org/hibernate/annotations/FetchProfile$FetchOverride.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FetchProfile.class b/target/classes/org/hibernate/annotations/FetchProfile.class deleted file mode 100644 index 889c3748..00000000 Binary files a/target/classes/org/hibernate/annotations/FetchProfile.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FetchProfiles.class b/target/classes/org/hibernate/annotations/FetchProfiles.class deleted file mode 100644 index cb172cc8..00000000 Binary files a/target/classes/org/hibernate/annotations/FetchProfiles.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Filter.class b/target/classes/org/hibernate/annotations/Filter.class deleted file mode 100644 index f4ba731a..00000000 Binary files a/target/classes/org/hibernate/annotations/Filter.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FilterDef.class b/target/classes/org/hibernate/annotations/FilterDef.class deleted file mode 100644 index 8bfbd802..00000000 Binary files a/target/classes/org/hibernate/annotations/FilterDef.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FilterDefs.class b/target/classes/org/hibernate/annotations/FilterDefs.class deleted file mode 100644 index c82170c3..00000000 Binary files a/target/classes/org/hibernate/annotations/FilterDefs.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FilterJoinTable.class b/target/classes/org/hibernate/annotations/FilterJoinTable.class deleted file mode 100644 index e31ab110..00000000 Binary files a/target/classes/org/hibernate/annotations/FilterJoinTable.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FilterJoinTables.class b/target/classes/org/hibernate/annotations/FilterJoinTables.class deleted file mode 100644 index e66745c6..00000000 Binary files a/target/classes/org/hibernate/annotations/FilterJoinTables.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Filters.class b/target/classes/org/hibernate/annotations/Filters.class deleted file mode 100644 index f0fa9b15..00000000 Binary files a/target/classes/org/hibernate/annotations/Filters.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/FlushModeType.class b/target/classes/org/hibernate/annotations/FlushModeType.class deleted file mode 100644 index 817059e4..00000000 Binary files a/target/classes/org/hibernate/annotations/FlushModeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ForeignKey.class b/target/classes/org/hibernate/annotations/ForeignKey.class deleted file mode 100644 index 0aa0baf0..00000000 Binary files a/target/classes/org/hibernate/annotations/ForeignKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Formula.class b/target/classes/org/hibernate/annotations/Formula.class deleted file mode 100644 index 48e50deb..00000000 Binary files a/target/classes/org/hibernate/annotations/Formula.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Generated.class b/target/classes/org/hibernate/annotations/Generated.class deleted file mode 100644 index fcbe0000..00000000 Binary files a/target/classes/org/hibernate/annotations/Generated.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/GenerationTime.class b/target/classes/org/hibernate/annotations/GenerationTime.class deleted file mode 100644 index e116087e..00000000 Binary files a/target/classes/org/hibernate/annotations/GenerationTime.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/GeneratorType.class b/target/classes/org/hibernate/annotations/GeneratorType.class deleted file mode 100644 index 4d98845d..00000000 Binary files a/target/classes/org/hibernate/annotations/GeneratorType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/GenericGenerator.class b/target/classes/org/hibernate/annotations/GenericGenerator.class deleted file mode 100644 index 7ef2f40f..00000000 Binary files a/target/classes/org/hibernate/annotations/GenericGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/GenericGenerators.class b/target/classes/org/hibernate/annotations/GenericGenerators.class deleted file mode 100644 index 3419860d..00000000 Binary files a/target/classes/org/hibernate/annotations/GenericGenerators.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Immutable.class b/target/classes/org/hibernate/annotations/Immutable.class deleted file mode 100644 index 8b1dbdd7..00000000 Binary files a/target/classes/org/hibernate/annotations/Immutable.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Index.class b/target/classes/org/hibernate/annotations/Index.class deleted file mode 100644 index 6ca3055d..00000000 Binary files a/target/classes/org/hibernate/annotations/Index.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/IndexColumn.class b/target/classes/org/hibernate/annotations/IndexColumn.class deleted file mode 100644 index 521f078f..00000000 Binary files a/target/classes/org/hibernate/annotations/IndexColumn.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/JoinColumnOrFormula.class b/target/classes/org/hibernate/annotations/JoinColumnOrFormula.class deleted file mode 100644 index a254c8b4..00000000 Binary files a/target/classes/org/hibernate/annotations/JoinColumnOrFormula.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/JoinColumnsOrFormulas.class b/target/classes/org/hibernate/annotations/JoinColumnsOrFormulas.class deleted file mode 100644 index 33d9f5d3..00000000 Binary files a/target/classes/org/hibernate/annotations/JoinColumnsOrFormulas.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/JoinFormula.class b/target/classes/org/hibernate/annotations/JoinFormula.class deleted file mode 100644 index 93a1d2c3..00000000 Binary files a/target/classes/org/hibernate/annotations/JoinFormula.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/LazyCollection.class b/target/classes/org/hibernate/annotations/LazyCollection.class deleted file mode 100644 index cb2e45de..00000000 Binary files a/target/classes/org/hibernate/annotations/LazyCollection.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/LazyCollectionOption.class b/target/classes/org/hibernate/annotations/LazyCollectionOption.class deleted file mode 100644 index 69182d21..00000000 Binary files a/target/classes/org/hibernate/annotations/LazyCollectionOption.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/LazyGroup.class b/target/classes/org/hibernate/annotations/LazyGroup.class deleted file mode 100644 index 4918bccb..00000000 Binary files a/target/classes/org/hibernate/annotations/LazyGroup.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/LazyToOne.class b/target/classes/org/hibernate/annotations/LazyToOne.class deleted file mode 100644 index b5658b91..00000000 Binary files a/target/classes/org/hibernate/annotations/LazyToOne.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/LazyToOneOption.class b/target/classes/org/hibernate/annotations/LazyToOneOption.class deleted file mode 100644 index 7e0c74a7..00000000 Binary files a/target/classes/org/hibernate/annotations/LazyToOneOption.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ListIndexBase.class b/target/classes/org/hibernate/annotations/ListIndexBase.class deleted file mode 100644 index e0649502..00000000 Binary files a/target/classes/org/hibernate/annotations/ListIndexBase.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Loader.class b/target/classes/org/hibernate/annotations/Loader.class deleted file mode 100644 index 61ad4ab2..00000000 Binary files a/target/classes/org/hibernate/annotations/Loader.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ManyToAny.class b/target/classes/org/hibernate/annotations/ManyToAny.class deleted file mode 100644 index d09ac128..00000000 Binary files a/target/classes/org/hibernate/annotations/ManyToAny.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/MapKeyType.class b/target/classes/org/hibernate/annotations/MapKeyType.class deleted file mode 100644 index 8336804c..00000000 Binary files a/target/classes/org/hibernate/annotations/MapKeyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/MetaValue.class b/target/classes/org/hibernate/annotations/MetaValue.class deleted file mode 100644 index 11aafe96..00000000 Binary files a/target/classes/org/hibernate/annotations/MetaValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NamedNativeQueries.class b/target/classes/org/hibernate/annotations/NamedNativeQueries.class deleted file mode 100644 index 05c5da3b..00000000 Binary files a/target/classes/org/hibernate/annotations/NamedNativeQueries.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NamedNativeQuery.class b/target/classes/org/hibernate/annotations/NamedNativeQuery.class deleted file mode 100644 index 526c5be3..00000000 Binary files a/target/classes/org/hibernate/annotations/NamedNativeQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NamedQueries.class b/target/classes/org/hibernate/annotations/NamedQueries.class deleted file mode 100644 index 1a4d1173..00000000 Binary files a/target/classes/org/hibernate/annotations/NamedQueries.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NamedQuery.class b/target/classes/org/hibernate/annotations/NamedQuery.class deleted file mode 100644 index 02e401fe..00000000 Binary files a/target/classes/org/hibernate/annotations/NamedQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Nationalized.class b/target/classes/org/hibernate/annotations/Nationalized.class deleted file mode 100644 index 0fb31df1..00000000 Binary files a/target/classes/org/hibernate/annotations/Nationalized.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NaturalId.class b/target/classes/org/hibernate/annotations/NaturalId.class deleted file mode 100644 index 57167a87..00000000 Binary files a/target/classes/org/hibernate/annotations/NaturalId.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NaturalIdCache.class b/target/classes/org/hibernate/annotations/NaturalIdCache.class deleted file mode 100644 index 7473170e..00000000 Binary files a/target/classes/org/hibernate/annotations/NaturalIdCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NotFound.class b/target/classes/org/hibernate/annotations/NotFound.class deleted file mode 100644 index 377764a2..00000000 Binary files a/target/classes/org/hibernate/annotations/NotFound.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/NotFoundAction.class b/target/classes/org/hibernate/annotations/NotFoundAction.class deleted file mode 100644 index 73503b1d..00000000 Binary files a/target/classes/org/hibernate/annotations/NotFoundAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/OnDelete.class b/target/classes/org/hibernate/annotations/OnDelete.class deleted file mode 100644 index b4e39c1a..00000000 Binary files a/target/classes/org/hibernate/annotations/OnDelete.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/OnDeleteAction.class b/target/classes/org/hibernate/annotations/OnDeleteAction.class deleted file mode 100644 index e71aed48..00000000 Binary files a/target/classes/org/hibernate/annotations/OnDeleteAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/OptimisticLock.class b/target/classes/org/hibernate/annotations/OptimisticLock.class deleted file mode 100644 index 09fd7933..00000000 Binary files a/target/classes/org/hibernate/annotations/OptimisticLock.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/OptimisticLockType.class b/target/classes/org/hibernate/annotations/OptimisticLockType.class deleted file mode 100644 index e7a8c3c2..00000000 Binary files a/target/classes/org/hibernate/annotations/OptimisticLockType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/OptimisticLocking.class b/target/classes/org/hibernate/annotations/OptimisticLocking.class deleted file mode 100644 index 7242db3d..00000000 Binary files a/target/classes/org/hibernate/annotations/OptimisticLocking.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/OrderBy.class b/target/classes/org/hibernate/annotations/OrderBy.class deleted file mode 100644 index 4ab496be..00000000 Binary files a/target/classes/org/hibernate/annotations/OrderBy.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ParamDef.class b/target/classes/org/hibernate/annotations/ParamDef.class deleted file mode 100644 index 829928a3..00000000 Binary files a/target/classes/org/hibernate/annotations/ParamDef.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Parameter.class b/target/classes/org/hibernate/annotations/Parameter.class deleted file mode 100644 index 834d4fe3..00000000 Binary files a/target/classes/org/hibernate/annotations/Parameter.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Parent.class b/target/classes/org/hibernate/annotations/Parent.class deleted file mode 100644 index 6e382801..00000000 Binary files a/target/classes/org/hibernate/annotations/Parent.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Persister.class b/target/classes/org/hibernate/annotations/Persister.class deleted file mode 100644 index dc50d7f8..00000000 Binary files a/target/classes/org/hibernate/annotations/Persister.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Polymorphism.class b/target/classes/org/hibernate/annotations/Polymorphism.class deleted file mode 100644 index d72cc668..00000000 Binary files a/target/classes/org/hibernate/annotations/Polymorphism.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/PolymorphismType.class b/target/classes/org/hibernate/annotations/PolymorphismType.class deleted file mode 100644 index a9b4e191..00000000 Binary files a/target/classes/org/hibernate/annotations/PolymorphismType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Proxy.class b/target/classes/org/hibernate/annotations/Proxy.class deleted file mode 100644 index d3ba64fe..00000000 Binary files a/target/classes/org/hibernate/annotations/Proxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/QueryHints.class b/target/classes/org/hibernate/annotations/QueryHints.class deleted file mode 100644 index 719ad3b1..00000000 Binary files a/target/classes/org/hibernate/annotations/QueryHints.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ResultCheckStyle.class b/target/classes/org/hibernate/annotations/ResultCheckStyle.class deleted file mode 100644 index 69155346..00000000 Binary files a/target/classes/org/hibernate/annotations/ResultCheckStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/RowId.class b/target/classes/org/hibernate/annotations/RowId.class deleted file mode 100644 index d0b0433a..00000000 Binary files a/target/classes/org/hibernate/annotations/RowId.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SQLDelete.class b/target/classes/org/hibernate/annotations/SQLDelete.class deleted file mode 100644 index ac67379b..00000000 Binary files a/target/classes/org/hibernate/annotations/SQLDelete.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SQLDeleteAll.class b/target/classes/org/hibernate/annotations/SQLDeleteAll.class deleted file mode 100644 index 5b3aa1cd..00000000 Binary files a/target/classes/org/hibernate/annotations/SQLDeleteAll.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SQLInsert.class b/target/classes/org/hibernate/annotations/SQLInsert.class deleted file mode 100644 index 63b6dd59..00000000 Binary files a/target/classes/org/hibernate/annotations/SQLInsert.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SQLUpdate.class b/target/classes/org/hibernate/annotations/SQLUpdate.class deleted file mode 100644 index 0c8d796e..00000000 Binary files a/target/classes/org/hibernate/annotations/SQLUpdate.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SelectBeforeUpdate.class b/target/classes/org/hibernate/annotations/SelectBeforeUpdate.class deleted file mode 100644 index c0af0712..00000000 Binary files a/target/classes/org/hibernate/annotations/SelectBeforeUpdate.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Sort.class b/target/classes/org/hibernate/annotations/Sort.class deleted file mode 100644 index ac80d3c8..00000000 Binary files a/target/classes/org/hibernate/annotations/Sort.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SortComparator.class b/target/classes/org/hibernate/annotations/SortComparator.class deleted file mode 100644 index e6cc9334..00000000 Binary files a/target/classes/org/hibernate/annotations/SortComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SortNatural.class b/target/classes/org/hibernate/annotations/SortNatural.class deleted file mode 100644 index bb004d70..00000000 Binary files a/target/classes/org/hibernate/annotations/SortNatural.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SortType.class b/target/classes/org/hibernate/annotations/SortType.class deleted file mode 100644 index 3c744ece..00000000 Binary files a/target/classes/org/hibernate/annotations/SortType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Source.class b/target/classes/org/hibernate/annotations/Source.class deleted file mode 100644 index 5f226a7f..00000000 Binary files a/target/classes/org/hibernate/annotations/Source.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SourceType.class b/target/classes/org/hibernate/annotations/SourceType.class deleted file mode 100644 index d45629f9..00000000 Binary files a/target/classes/org/hibernate/annotations/SourceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/SqlFragmentAlias.class b/target/classes/org/hibernate/annotations/SqlFragmentAlias.class deleted file mode 100644 index dc11876d..00000000 Binary files a/target/classes/org/hibernate/annotations/SqlFragmentAlias.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Subselect.class b/target/classes/org/hibernate/annotations/Subselect.class deleted file mode 100644 index 044e8ba6..00000000 Binary files a/target/classes/org/hibernate/annotations/Subselect.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Synchronize.class b/target/classes/org/hibernate/annotations/Synchronize.class deleted file mode 100644 index a50dcf7a..00000000 Binary files a/target/classes/org/hibernate/annotations/Synchronize.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Table.class b/target/classes/org/hibernate/annotations/Table.class deleted file mode 100644 index f9e6741f..00000000 Binary files a/target/classes/org/hibernate/annotations/Table.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Tables.class b/target/classes/org/hibernate/annotations/Tables.class deleted file mode 100644 index 0bceef44..00000000 Binary files a/target/classes/org/hibernate/annotations/Tables.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Target.class b/target/classes/org/hibernate/annotations/Target.class deleted file mode 100644 index ccf64753..00000000 Binary files a/target/classes/org/hibernate/annotations/Target.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Tuplizer.class b/target/classes/org/hibernate/annotations/Tuplizer.class deleted file mode 100644 index 37c44804..00000000 Binary files a/target/classes/org/hibernate/annotations/Tuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Tuplizers.class b/target/classes/org/hibernate/annotations/Tuplizers.class deleted file mode 100644 index 2778f072..00000000 Binary files a/target/classes/org/hibernate/annotations/Tuplizers.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Type.class b/target/classes/org/hibernate/annotations/Type.class deleted file mode 100644 index a1dfa130..00000000 Binary files a/target/classes/org/hibernate/annotations/Type.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/TypeDef.class b/target/classes/org/hibernate/annotations/TypeDef.class deleted file mode 100644 index a971ce20..00000000 Binary files a/target/classes/org/hibernate/annotations/TypeDef.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/TypeDefs.class b/target/classes/org/hibernate/annotations/TypeDefs.class deleted file mode 100644 index 0f80d253..00000000 Binary files a/target/classes/org/hibernate/annotations/TypeDefs.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/UpdateTimestamp.class b/target/classes/org/hibernate/annotations/UpdateTimestamp.class deleted file mode 100644 index dae07942..00000000 Binary files a/target/classes/org/hibernate/annotations/UpdateTimestamp.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/ValueGenerationType.class b/target/classes/org/hibernate/annotations/ValueGenerationType.class deleted file mode 100644 index 3d456bb8..00000000 Binary files a/target/classes/org/hibernate/annotations/ValueGenerationType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/Where.class b/target/classes/org/hibernate/annotations/Where.class deleted file mode 100644 index 2963d03a..00000000 Binary files a/target/classes/org/hibernate/annotations/Where.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/WhereJoinTable.class b/target/classes/org/hibernate/annotations/WhereJoinTable.class deleted file mode 100644 index 854b4478..00000000 Binary files a/target/classes/org/hibernate/annotations/WhereJoinTable.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/AssertionFailure.class b/target/classes/org/hibernate/annotations/common/AssertionFailure.class deleted file mode 100644 index 6589126c..00000000 Binary files a/target/classes/org/hibernate/annotations/common/AssertionFailure.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/Version.class b/target/classes/org/hibernate/annotations/common/Version.class deleted file mode 100644 index f1374066..00000000 Binary files a/target/classes/org/hibernate/annotations/common/Version.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationDescriptor.class b/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationDescriptor.class deleted file mode 100644 index 6833cdea..00000000 Binary files a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationFactory.class b/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationFactory.class deleted file mode 100644 index c5618b3a..00000000 Binary files a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationProxy$1.class b/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationProxy$1.class deleted file mode 100644 index 6e8564be..00000000 Binary files a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationProxy$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationProxy.class b/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationProxy.class deleted file mode 100644 index 965a3eb5..00000000 Binary files a/target/classes/org/hibernate/annotations/common/annotationfactory/AnnotationProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/AnnotationReader.class b/target/classes/org/hibernate/annotations/common/reflection/AnnotationReader.class deleted file mode 100644 index 94d534ac..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/AnnotationReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/ClassLoaderDelegate.class b/target/classes/org/hibernate/annotations/common/reflection/ClassLoaderDelegate.class deleted file mode 100644 index 585af9a3..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/ClassLoaderDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/ClassLoadingException.class b/target/classes/org/hibernate/annotations/common/reflection/ClassLoadingException.class deleted file mode 100644 index 45292611..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/ClassLoadingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/Filter.class b/target/classes/org/hibernate/annotations/common/reflection/Filter.class deleted file mode 100644 index e853cb3d..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/Filter.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/MetadataProvider.class b/target/classes/org/hibernate/annotations/common/reflection/MetadataProvider.class deleted file mode 100644 index ae5bceb7..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/MetadataProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/MetadataProviderInjector.class b/target/classes/org/hibernate/annotations/common/reflection/MetadataProviderInjector.class deleted file mode 100644 index 9223ddd3..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/MetadataProviderInjector.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/ReflectionManager.class b/target/classes/org/hibernate/annotations/common/reflection/ReflectionManager.class deleted file mode 100644 index 73dfe9a1..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/ReflectionManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/ReflectionUtil.class b/target/classes/org/hibernate/annotations/common/reflection/ReflectionUtil.class deleted file mode 100644 index 60ca3319..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/ReflectionUtil.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/XAnnotatedElement.class b/target/classes/org/hibernate/annotations/common/reflection/XAnnotatedElement.class deleted file mode 100644 index 5bb543c6..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/XAnnotatedElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/XClass$1.class b/target/classes/org/hibernate/annotations/common/reflection/XClass$1.class deleted file mode 100644 index fdd6df57..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/XClass$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/XClass.class b/target/classes/org/hibernate/annotations/common/reflection/XClass.class deleted file mode 100644 index dc9d4b23..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/XClass.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/XMember.class b/target/classes/org/hibernate/annotations/common/reflection/XMember.class deleted file mode 100644 index 64863f52..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/XMember.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/XMethod.class b/target/classes/org/hibernate/annotations/common/reflection/XMethod.class deleted file mode 100644 index 234e9933..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/XMethod.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/XPackage.class b/target/classes/org/hibernate/annotations/common/reflection/XPackage.class deleted file mode 100644 index 5e56fd16..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/XPackage.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/XProperty.class b/target/classes/org/hibernate/annotations/common/reflection/XProperty.class deleted file mode 100644 index 19db41d9..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/XProperty.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaAnnotationReader.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaAnnotationReader.class deleted file mode 100644 index a081e55f..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaAnnotationReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaMetadataProvider.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaMetadataProvider.class deleted file mode 100644 index c0adb754..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaMetadataProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$1.class deleted file mode 100644 index cfa48e83..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$2.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$2.class deleted file mode 100644 index ca3c1c57..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$MemberKey.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$MemberKey.class deleted file mode 100644 index ecf5fd97..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$MemberKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$TypeKey.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$TypeKey.class deleted file mode 100644 index dd8484a4..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager$TypeKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager.class deleted file mode 100644 index 05f4a5c9..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaReflectionManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXAnnotatedElement.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXAnnotatedElement.class deleted file mode 100644 index 4a261dff..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXAnnotatedElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXArrayType$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXArrayType$1.class deleted file mode 100644 index 2693fdfb..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXArrayType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXArrayType.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXArrayType.class deleted file mode 100644 index 45f134df..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXArrayType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXClass.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXClass.class deleted file mode 100644 index b67d4afb..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXClass.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType$1.class deleted file mode 100644 index 980e110b..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType$2.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType$2.class deleted file mode 100644 index 113db9d0..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType.class deleted file mode 100644 index d9cbfe36..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXCollectionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXMember.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXMember.class deleted file mode 100644 index 1553af90..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXMember.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXMethod.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXMethod.class deleted file mode 100644 index 5cf84773..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXMethod.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXPackage.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXPackage.class deleted file mode 100644 index d499b030..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXPackage.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXProperty.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXProperty.class deleted file mode 100644 index c42c1e9b..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXProperty.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXSimpleType.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXSimpleType.class deleted file mode 100644 index 3423910c..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXSimpleType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXType.class b/target/classes/org/hibernate/annotations/common/reflection/java/JavaXType.class deleted file mode 100644 index 3b2454b6..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/JavaXType.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/Pair.class b/target/classes/org/hibernate/annotations/common/reflection/java/Pair.class deleted file mode 100644 index 3c994b1a..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/Pair.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment$1.class deleted file mode 100644 index 4fbc3d37..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment$2.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment$2.class deleted file mode 100644 index 7f1e4bfb..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment.class deleted file mode 100644 index 6a333312..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/ApproximatingTypeEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/CompoundTypeEnvironment.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/CompoundTypeEnvironment.class deleted file mode 100644 index 09bd4348..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/CompoundTypeEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/IdentityTypeEnvironment.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/IdentityTypeEnvironment.class deleted file mode 100644 index 63082c54..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/IdentityTypeEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/SimpleTypeEnvironment$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/SimpleTypeEnvironment$1.class deleted file mode 100644 index 184726fd..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/SimpleTypeEnvironment$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/SimpleTypeEnvironment.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/SimpleTypeEnvironment.class deleted file mode 100644 index e3b72765..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/SimpleTypeEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironment.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironment.class deleted file mode 100644 index 30a1af6d..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironmentFactory$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironmentFactory$1.class deleted file mode 100644 index 9c71fe40..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironmentFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironmentFactory.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironmentFactory.class deleted file mode 100644 index 578da811..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeEnvironmentFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory$1.class deleted file mode 100644 index dd7d6368..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory$2.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory$2.class deleted file mode 100644 index 0eadd2fe..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory.class deleted file mode 100644 index ef709fd6..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeSwitch.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeSwitch.class deleted file mode 100644 index d45fd16e..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeSwitch.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$1.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$1.class deleted file mode 100644 index ff86a5c2..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$2.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$2.class deleted file mode 100644 index 51c641f2..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$3.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$3.class deleted file mode 100644 index de288b7d..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$4.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$4.class deleted file mode 100644 index b6b7d9ad..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils.class b/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils.class deleted file mode 100644 index a967ba8a..00000000 Binary files a/target/classes/org/hibernate/annotations/common/reflection/java/generics/TypeUtils.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/util/ReflectHelper.class b/target/classes/org/hibernate/annotations/common/util/ReflectHelper.class deleted file mode 100644 index 94c7762b..00000000 Binary files a/target/classes/org/hibernate/annotations/common/util/ReflectHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/util/StandardClassLoaderDelegateImpl.class b/target/classes/org/hibernate/annotations/common/util/StandardClassLoaderDelegateImpl.class deleted file mode 100644 index 7ec93adf..00000000 Binary files a/target/classes/org/hibernate/annotations/common/util/StandardClassLoaderDelegateImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/util/StringHelper.class b/target/classes/org/hibernate/annotations/common/util/StringHelper.class deleted file mode 100644 index 4d866d83..00000000 Binary files a/target/classes/org/hibernate/annotations/common/util/StringHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/util/impl/Log.class b/target/classes/org/hibernate/annotations/common/util/impl/Log.class deleted file mode 100644 index fdb03ad6..00000000 Binary files a/target/classes/org/hibernate/annotations/common/util/impl/Log.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/util/impl/Log.i18n.properties b/target/classes/org/hibernate/annotations/common/util/impl/Log.i18n.properties deleted file mode 100644 index 8d070db0..00000000 --- a/target/classes/org/hibernate/annotations/common/util/impl/Log.i18n.properties +++ /dev/null @@ -1,15 +0,0 @@ -##################################################################################################### -# -# This file is for reference only, changes have no effect on the generated interface implementations. -# -##################################################################################################### - -# Id: 1 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Hibernate Commons Annotations {%1$s} -# @param 1: version - -version=Hibernate Commons Annotations {%1$s} -# Id: 2 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: An assertion failure occurred (this may indicate a bug in Hibernate) -assertionFailure=An assertion failure occurred (this may indicate a bug in Hibernate) diff --git a/target/classes/org/hibernate/annotations/common/util/impl/Log_$logger.class b/target/classes/org/hibernate/annotations/common/util/impl/Log_$logger.class deleted file mode 100644 index 2a4a9199..00000000 Binary files a/target/classes/org/hibernate/annotations/common/util/impl/Log_$logger.class and /dev/null differ diff --git a/target/classes/org/hibernate/annotations/common/util/impl/LoggerFactory.class b/target/classes/org/hibernate/annotations/common/util/impl/LoggerFactory.class deleted file mode 100644 index f6a02125..00000000 Binary files a/target/classes/org/hibernate/annotations/common/util/impl/LoggerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/CacheRegionDefinition$CacheRegionType.class b/target/classes/org/hibernate/boot/CacheRegionDefinition$CacheRegionType.class deleted file mode 100644 index cfb76944..00000000 Binary files a/target/classes/org/hibernate/boot/CacheRegionDefinition$CacheRegionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/CacheRegionDefinition.class b/target/classes/org/hibernate/boot/CacheRegionDefinition.class deleted file mode 100644 index c15a302f..00000000 Binary files a/target/classes/org/hibernate/boot/CacheRegionDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/InvalidMappingException.class b/target/classes/org/hibernate/boot/InvalidMappingException.class deleted file mode 100644 index 2a31cb55..00000000 Binary files a/target/classes/org/hibernate/boot/InvalidMappingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/JaccPermissionDefinition.class b/target/classes/org/hibernate/boot/JaccPermissionDefinition.class deleted file mode 100644 index e8b9415b..00000000 Binary files a/target/classes/org/hibernate/boot/JaccPermissionDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/MappingException.class b/target/classes/org/hibernate/boot/MappingException.class deleted file mode 100644 index 4798cec1..00000000 Binary files a/target/classes/org/hibernate/boot/MappingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/MappingNotFoundException.class b/target/classes/org/hibernate/boot/MappingNotFoundException.class deleted file mode 100644 index d93a0eb5..00000000 Binary files a/target/classes/org/hibernate/boot/MappingNotFoundException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/Metadata.class b/target/classes/org/hibernate/boot/Metadata.class deleted file mode 100644 index e9b98c10..00000000 Binary files a/target/classes/org/hibernate/boot/Metadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/MetadataBuilder.class b/target/classes/org/hibernate/boot/MetadataBuilder.class deleted file mode 100644 index b54e5c14..00000000 Binary files a/target/classes/org/hibernate/boot/MetadataBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/MetadataSources.class b/target/classes/org/hibernate/boot/MetadataSources.class deleted file mode 100644 index f605daff..00000000 Binary files a/target/classes/org/hibernate/boot/MetadataSources.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/SchemaAutoTooling.class b/target/classes/org/hibernate/boot/SchemaAutoTooling.class deleted file mode 100644 index 92b5c553..00000000 Binary files a/target/classes/org/hibernate/boot/SchemaAutoTooling.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/SessionFactoryBuilder.class b/target/classes/org/hibernate/boot/SessionFactoryBuilder.class deleted file mode 100644 index 624b4bc1..00000000 Binary files a/target/classes/org/hibernate/boot/SessionFactoryBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/TempTableDdlTransactionHandling.class b/target/classes/org/hibernate/boot/TempTableDdlTransactionHandling.class deleted file mode 100644 index 9e71c103..00000000 Binary files a/target/classes/org/hibernate/boot/TempTableDdlTransactionHandling.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/UnsupportedOrmXsdVersionException.class b/target/classes/org/hibernate/boot/UnsupportedOrmXsdVersionException.class deleted file mode 100644 index 517d0863..00000000 Binary files a/target/classes/org/hibernate/boot/UnsupportedOrmXsdVersionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/ArchiveHelper.class b/target/classes/org/hibernate/boot/archive/internal/ArchiveHelper.class deleted file mode 100644 index cca622ab..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/ArchiveHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/ByteArrayInputStreamAccess.class b/target/classes/org/hibernate/boot/archive/internal/ByteArrayInputStreamAccess.class deleted file mode 100644 index e7890675..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/ByteArrayInputStreamAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor$1.class b/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor$1.class deleted file mode 100644 index 2d9e787f..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor$2.class b/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor$2.class deleted file mode 100644 index ac5b9c78..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor.class b/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor.class deleted file mode 100644 index d0de2d5b..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/ExplodedArchiveDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/FileInputStreamAccess.class b/target/classes/org/hibernate/boot/archive/internal/FileInputStreamAccess.class deleted file mode 100644 index d874db25..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/FileInputStreamAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor$1.class b/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor$1.class deleted file mode 100644 index 750854b7..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor$2.class b/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor$2.class deleted file mode 100644 index e76993f9..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor.class b/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor.class deleted file mode 100644 index a9b113b1..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/JarFileBasedArchiveDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor$1.class b/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor$1.class deleted file mode 100644 index 83668e3a..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor$2.class b/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor$2.class deleted file mode 100644 index 425138cd..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor.class b/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor.class deleted file mode 100644 index bed57c56..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/JarInputStreamBasedArchiveDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/JarProtocolArchiveDescriptor.class b/target/classes/org/hibernate/boot/archive/internal/JarProtocolArchiveDescriptor.class deleted file mode 100644 index 2210b5ba..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/JarProtocolArchiveDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/StandardArchiveDescriptorFactory.class b/target/classes/org/hibernate/boot/archive/internal/StandardArchiveDescriptorFactory.class deleted file mode 100644 index 2cfae7fe..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/StandardArchiveDescriptorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/internal/UrlInputStreamAccess.class b/target/classes/org/hibernate/boot/archive/internal/UrlInputStreamAccess.class deleted file mode 100644 index d6305b32..00000000 Binary files a/target/classes/org/hibernate/boot/archive/internal/UrlInputStreamAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/ClassDescriptorImpl.class b/target/classes/org/hibernate/boot/archive/scan/internal/ClassDescriptorImpl.class deleted file mode 100644 index cd52dbb1..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/ClassDescriptorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/MappingFileDescriptorImpl.class b/target/classes/org/hibernate/boot/archive/scan/internal/MappingFileDescriptorImpl.class deleted file mode 100644 index d498b576..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/MappingFileDescriptorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/PackageDescriptorImpl.class b/target/classes/org/hibernate/boot/archive/scan/internal/PackageDescriptorImpl.class deleted file mode 100644 index 5aeb8084..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/PackageDescriptorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/ScanResultCollector.class b/target/classes/org/hibernate/boot/archive/scan/internal/ScanResultCollector.class deleted file mode 100644 index 9ca03f4c..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/ScanResultCollector.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/ScanResultImpl.class b/target/classes/org/hibernate/boot/archive/scan/internal/ScanResultImpl.class deleted file mode 100644 index e55cdda7..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/ScanResultImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanOptions.class b/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanOptions.class deleted file mode 100644 index ce8d68a2..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanParameters.class b/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanParameters.class deleted file mode 100644 index b5cac4c0..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanParameters.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanner.class b/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanner.class deleted file mode 100644 index 19920bb2..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/internal/StandardScanner.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl$ArchiveContextImpl.class b/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl$ArchiveContextImpl.class deleted file mode 100644 index d29e2077..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl$ArchiveContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl$ArchiveDescriptorInfo.class b/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl$ArchiveDescriptorInfo.class deleted file mode 100644 index 69112424..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl$ArchiveDescriptorInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl.class b/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl.class deleted file mode 100644 index 12479438..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/AbstractScannerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/ClassDescriptor$Categorization.class b/target/classes/org/hibernate/boot/archive/scan/spi/ClassDescriptor$Categorization.class deleted file mode 100644 index 3c23a019..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/ClassDescriptor$Categorization.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/ClassDescriptor.class b/target/classes/org/hibernate/boot/archive/scan/spi/ClassDescriptor.class deleted file mode 100644 index 20aa3d66..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/ClassDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/ClassFileArchiveEntryHandler.class b/target/classes/org/hibernate/boot/archive/scan/spi/ClassFileArchiveEntryHandler.class deleted file mode 100644 index 66c0a2e2..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/ClassFileArchiveEntryHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/MappingFileDescriptor.class b/target/classes/org/hibernate/boot/archive/scan/spi/MappingFileDescriptor.class deleted file mode 100644 index 17e0355e..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/MappingFileDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/NonClassFileArchiveEntryHandler.class b/target/classes/org/hibernate/boot/archive/scan/spi/NonClassFileArchiveEntryHandler.class deleted file mode 100644 index 52a08d4b..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/NonClassFileArchiveEntryHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/PackageDescriptor.class b/target/classes/org/hibernate/boot/archive/scan/spi/PackageDescriptor.class deleted file mode 100644 index 3cfb6164..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/PackageDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/PackageInfoArchiveEntryHandler.class b/target/classes/org/hibernate/boot/archive/scan/spi/PackageInfoArchiveEntryHandler.class deleted file mode 100644 index 194d134f..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/PackageInfoArchiveEntryHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/ScanEnvironment.class b/target/classes/org/hibernate/boot/archive/scan/spi/ScanEnvironment.class deleted file mode 100644 index 777a6ecf..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/ScanEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/ScanOptions.class b/target/classes/org/hibernate/boot/archive/scan/spi/ScanOptions.class deleted file mode 100644 index b8da5550..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/ScanOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/ScanParameters.class b/target/classes/org/hibernate/boot/archive/scan/spi/ScanParameters.class deleted file mode 100644 index 7cca56ab..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/ScanParameters.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/ScanResult.class b/target/classes/org/hibernate/boot/archive/scan/spi/ScanResult.class deleted file mode 100644 index 062aea70..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/ScanResult.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/scan/spi/Scanner.class b/target/classes/org/hibernate/boot/archive/scan/spi/Scanner.class deleted file mode 100644 index 660fa05f..00000000 Binary files a/target/classes/org/hibernate/boot/archive/scan/spi/Scanner.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/AbstractArchiveDescriptor.class b/target/classes/org/hibernate/boot/archive/spi/AbstractArchiveDescriptor.class deleted file mode 100644 index 639b2b55..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/AbstractArchiveDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/AbstractArchiveDescriptorFactory.class b/target/classes/org/hibernate/boot/archive/spi/AbstractArchiveDescriptorFactory.class deleted file mode 100644 index cbf7bbfa..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/AbstractArchiveDescriptorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/ArchiveContext.class b/target/classes/org/hibernate/boot/archive/spi/ArchiveContext.class deleted file mode 100644 index df9d1f67..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/ArchiveContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/ArchiveDescriptor.class b/target/classes/org/hibernate/boot/archive/spi/ArchiveDescriptor.class deleted file mode 100644 index 42597740..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/ArchiveDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/ArchiveDescriptorFactory.class b/target/classes/org/hibernate/boot/archive/spi/ArchiveDescriptorFactory.class deleted file mode 100644 index c015fb84..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/ArchiveDescriptorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/ArchiveEntry.class b/target/classes/org/hibernate/boot/archive/spi/ArchiveEntry.class deleted file mode 100644 index f494f95d..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/ArchiveEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/ArchiveEntryHandler.class b/target/classes/org/hibernate/boot/archive/spi/ArchiveEntryHandler.class deleted file mode 100644 index 5c74fd28..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/ArchiveEntryHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/ArchiveException.class b/target/classes/org/hibernate/boot/archive/spi/ArchiveException.class deleted file mode 100644 index 0ff0f84e..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/ArchiveException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/InputStreamAccess.class b/target/classes/org/hibernate/boot/archive/spi/InputStreamAccess.class deleted file mode 100644 index 11253b74..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/InputStreamAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/archive/spi/JarFileEntryUrlAdjuster.class b/target/classes/org/hibernate/boot/archive/spi/JarFileEntryUrlAdjuster.class deleted file mode 100644 index c04762f8..00000000 Binary files a/target/classes/org/hibernate/boot/archive/spi/JarFileEntryUrlAdjuster.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/internal/CfgXmlAccessServiceImpl.class b/target/classes/org/hibernate/boot/cfgxml/internal/CfgXmlAccessServiceImpl.class deleted file mode 100644 index 391c7bc8..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/internal/CfgXmlAccessServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/internal/CfgXmlAccessServiceInitiator.class b/target/classes/org/hibernate/boot/cfgxml/internal/CfgXmlAccessServiceInitiator.class deleted file mode 100644 index b8642cca..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/internal/CfgXmlAccessServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/internal/ConfigLoader$1.class b/target/classes/org/hibernate/boot/cfgxml/internal/ConfigLoader$1.class deleted file mode 100644 index 7b24bf57..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/internal/ConfigLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/internal/ConfigLoader.class b/target/classes/org/hibernate/boot/cfgxml/internal/ConfigLoader.class deleted file mode 100644 index cf3afbc9..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/internal/ConfigLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor$ContextProvidingValidationEventHandler.class b/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor$ContextProvidingValidationEventHandler.class deleted file mode 100644 index b0513945..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor$ContextProvidingValidationEventHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor$NamespaceAddingEventReader.class b/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor$NamespaceAddingEventReader.class deleted file mode 100644 index 21420efc..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor$NamespaceAddingEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor.class b/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor.class deleted file mode 100644 index 741eeba4..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/internal/JaxbCfgProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/spi/CfgXmlAccessService.class b/target/classes/org/hibernate/boot/cfgxml/spi/CfgXmlAccessService.class deleted file mode 100644 index e67a11f8..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/spi/CfgXmlAccessService.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/spi/LoadedConfig.class b/target/classes/org/hibernate/boot/cfgxml/spi/LoadedConfig.class deleted file mode 100644 index a52389a2..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/spi/LoadedConfig.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference$1.class b/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference$1.class deleted file mode 100644 index 1ac87596..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference$Type.class b/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference$Type.class deleted file mode 100644 index cd901573..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference$Type.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference.class b/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference.class deleted file mode 100644 index 39183106..00000000 Binary files a/target/classes/org/hibernate/boot/cfgxml/spi/MappingReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorImpl.class b/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorImpl.class deleted file mode 100644 index dbddef9e..00000000 Binary files a/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorNonAutoApplicableImpl$1.class b/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorNonAutoApplicableImpl$1.class deleted file mode 100644 index 1f62152c..00000000 Binary files a/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorNonAutoApplicableImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorNonAutoApplicableImpl.class b/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorNonAutoApplicableImpl.class deleted file mode 100644 index 91999add..00000000 Binary files a/target/classes/org/hibernate/boot/internal/AttributeConverterDescriptorNonAutoApplicableImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/AttributeConverterManager$1.class b/target/classes/org/hibernate/boot/internal/AttributeConverterManager$1.class deleted file mode 100644 index 65909638..00000000 Binary files a/target/classes/org/hibernate/boot/internal/AttributeConverterManager$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/AttributeConverterManager.class b/target/classes/org/hibernate/boot/internal/AttributeConverterManager.class deleted file mode 100644 index 2961e36b..00000000 Binary files a/target/classes/org/hibernate/boot/internal/AttributeConverterManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/ClassLoaderAccessImpl.class b/target/classes/org/hibernate/boot/internal/ClassLoaderAccessImpl.class deleted file mode 100644 index bc7b468f..00000000 Binary files a/target/classes/org/hibernate/boot/internal/ClassLoaderAccessImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/ClassmateContext.class b/target/classes/org/hibernate/boot/internal/ClassmateContext.class deleted file mode 100644 index 65994be9..00000000 Binary files a/target/classes/org/hibernate/boot/internal/ClassmateContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/DefaultCustomEntityDirtinessStrategy.class b/target/classes/org/hibernate/boot/internal/DefaultCustomEntityDirtinessStrategy.class deleted file mode 100644 index 3e4dac3e..00000000 Binary files a/target/classes/org/hibernate/boot/internal/DefaultCustomEntityDirtinessStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$1.class b/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$1.class deleted file mode 100644 index c1cc3300..00000000 Binary files a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$FallbackInterpreter.class b/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$FallbackInterpreter.class deleted file mode 100644 index bf6867ce..00000000 Binary files a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$FallbackInterpreter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$LegacyFallbackInterpreter.class b/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$LegacyFallbackInterpreter.class deleted file mode 100644 index 6c100da6..00000000 Binary files a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl$LegacyFallbackInterpreter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl.class b/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl.class deleted file mode 100644 index 35666226..00000000 Binary files a/target/classes/org/hibernate/boot/internal/IdGeneratorInterpreterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$1.class b/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$1.class deleted file mode 100644 index d7cb950e..00000000 Binary files a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$2.class b/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$2.class deleted file mode 100644 index ec03136b..00000000 Binary files a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$3.class b/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$3.class deleted file mode 100644 index d137635d..00000000 Binary files a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$DelayedPropertyReferenceHandlerAnnotationImpl.class b/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$DelayedPropertyReferenceHandlerAnnotationImpl.class deleted file mode 100644 index fa070673..00000000 Binary files a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$DelayedPropertyReferenceHandlerAnnotationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$EntityTableXrefImpl.class b/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$EntityTableXrefImpl.class deleted file mode 100644 index 0b92b9ad..00000000 Binary files a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$EntityTableXrefImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$TableColumnNameBinding.class b/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$TableColumnNameBinding.class deleted file mode 100644 index 29b77ba3..00000000 Binary files a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl$TableColumnNameBinding.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl.class b/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl.class deleted file mode 100644 index bc42f98c..00000000 Binary files a/target/classes/org/hibernate/boot/internal/InFlightMetadataCollectorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MappingDefaultsImpl$1.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MappingDefaultsImpl$1.class deleted file mode 100644 index 37c28480..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MappingDefaultsImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MappingDefaultsImpl.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MappingDefaultsImpl.class deleted file mode 100644 index be5631f5..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MappingDefaultsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$1.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$1.class deleted file mode 100644 index 9ba5d8ff..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$2.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$2.class deleted file mode 100644 index e4c72b3a..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$3.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$3.class deleted file mode 100644 index 912c55ff..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$4.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$4.class deleted file mode 100644 index d76f2906..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl.class deleted file mode 100644 index 85ed1ea4..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl$MetadataBuildingOptionsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl.class b/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl.class deleted file mode 100644 index e03546f8..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuildingContextRootImpl$1.class b/target/classes/org/hibernate/boot/internal/MetadataBuildingContextRootImpl$1.class deleted file mode 100644 index 2bf2d796..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuildingContextRootImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataBuildingContextRootImpl.class b/target/classes/org/hibernate/boot/internal/MetadataBuildingContextRootImpl.class deleted file mode 100644 index 3c9beff5..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataBuildingContextRootImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/MetadataImpl.class b/target/classes/org/hibernate/boot/internal/MetadataImpl.class deleted file mode 100644 index 889aa06c..00000000 Binary files a/target/classes/org/hibernate/boot/internal/MetadataImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/SessionFactoryBuilderImpl$SessionFactoryOptionsStateStandardImpl.class b/target/classes/org/hibernate/boot/internal/SessionFactoryBuilderImpl$SessionFactoryOptionsStateStandardImpl.class deleted file mode 100644 index a626da0f..00000000 Binary files a/target/classes/org/hibernate/boot/internal/SessionFactoryBuilderImpl$SessionFactoryOptionsStateStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/SessionFactoryBuilderImpl.class b/target/classes/org/hibernate/boot/internal/SessionFactoryBuilderImpl.class deleted file mode 100644 index fdd2ec4d..00000000 Binary files a/target/classes/org/hibernate/boot/internal/SessionFactoryBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/SessionFactoryOptionsImpl.class b/target/classes/org/hibernate/boot/internal/SessionFactoryOptionsImpl.class deleted file mode 100644 index 0c4aae9f..00000000 Binary files a/target/classes/org/hibernate/boot/internal/SessionFactoryOptionsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/SessionFactoryOptionsState.class b/target/classes/org/hibernate/boot/internal/SessionFactoryOptionsState.class deleted file mode 100644 index 35b55671..00000000 Binary files a/target/classes/org/hibernate/boot/internal/SessionFactoryOptionsState.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/internal/StandardEntityNotFoundDelegate.class b/target/classes/org/hibernate/boot/internal/StandardEntityNotFoundDelegate.class deleted file mode 100644 index 1275d1ce..00000000 Binary files a/target/classes/org/hibernate/boot/internal/StandardEntityNotFoundDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/Origin.class b/target/classes/org/hibernate/boot/jaxb/Origin.class deleted file mode 100644 index 0b7b4bd3..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/Origin.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/SourceType.class b/target/classes/org/hibernate/boot/jaxb/SourceType.class deleted file mode 100644 index 602527af..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/SourceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgCacheUsageEnum.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgCacheUsageEnum.class deleted file mode 100644 index eeed3e9f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgCacheUsageEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgCollectionCacheType.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgCollectionCacheType.class deleted file mode 100644 index 4227be02..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgCollectionCacheType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgConfigPropertyType.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgConfigPropertyType.class deleted file mode 100644 index b4d95767..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgConfigPropertyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEntityCacheType.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEntityCacheType.class deleted file mode 100644 index 26822318..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEntityCacheType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventListenerGroupType.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventListenerGroupType.class deleted file mode 100644 index ad78002c..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventListenerGroupType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventListenerType.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventListenerType.class deleted file mode 100644 index 91b7cc98..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventListenerType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventTypeEnum.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventTypeEnum.class deleted file mode 100644 index 8f628b03..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgEventTypeEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSecurity$JaxbCfgGrant.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSecurity$JaxbCfgGrant.class deleted file mode 100644 index 5d35dfad..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSecurity$JaxbCfgGrant.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSecurity.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSecurity.class deleted file mode 100644 index afaa0912..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSecurity.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSessionFactory.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSessionFactory.class deleted file mode 100644 index 6581d46a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration$JaxbCfgSessionFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration.class deleted file mode 100644 index a87b9c92..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgHibernateConfiguration.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgMappingReferenceType.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgMappingReferenceType.class deleted file mode 100644 index 1a1306d6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/JaxbCfgMappingReferenceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/ObjectFactory.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/ObjectFactory.class deleted file mode 100644 index 8580d09a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/ObjectFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/cfg/spi/package-info.class b/target/classes/org/hibernate/boot/jaxb/cfg/spi/package-info.class deleted file mode 100644 index 8fa60784..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/cfg/spi/package-info.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/CacheAccessTypeConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/CacheAccessTypeConverter.class deleted file mode 100644 index 43d799fc..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/CacheAccessTypeConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/CacheModeConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/CacheModeConverter.class deleted file mode 100644 index 1141c1b3..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/CacheModeConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/EntityModeConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/EntityModeConverter.class deleted file mode 100644 index 08968fec..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/EntityModeConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/ExecuteUpdateResultCheckStyleConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/ExecuteUpdateResultCheckStyleConverter.class deleted file mode 100644 index 91f7731b..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/ExecuteUpdateResultCheckStyleConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/FlushModeConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/FlushModeConverter.class deleted file mode 100644 index a24f6ebe..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/FlushModeConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/GenerationTimingConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/GenerationTimingConverter.class deleted file mode 100644 index ee6f642f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/GenerationTimingConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/ImplicitResultSetMappingDefinition$Builder.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/ImplicitResultSetMappingDefinition$Builder.class deleted file mode 100644 index e496439b..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/ImplicitResultSetMappingDefinition$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/ImplicitResultSetMappingDefinition.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/ImplicitResultSetMappingDefinition.class deleted file mode 100644 index 06e3ca49..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/ImplicitResultSetMappingDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/LockModeConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/LockModeConverter.class deleted file mode 100644 index 85b8a643..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/LockModeConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/internal/OptimisticLockStyleConverter.class b/target/classes/org/hibernate/boot/jaxb/hbm/internal/OptimisticLockStyleConverter.class deleted file mode 100644 index 2f33ca7e..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/internal/OptimisticLockStyleConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter1.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter1.class deleted file mode 100644 index 89abc2d2..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter2.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter2.class deleted file mode 100644 index 9fca7254..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter3.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter3.class deleted file mode 100644 index 252f3e85..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter4.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter4.class deleted file mode 100644 index 228ef1b9..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter4.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter5.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter5.class deleted file mode 100644 index 4190e6e6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter5.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter6.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter6.class deleted file mode 100644 index f6c38bb6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter6.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter7.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter7.class deleted file mode 100644 index 8a30c062..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter7.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter8.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter8.class deleted file mode 100644 index 58eba326..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter8.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter9.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter9.class deleted file mode 100644 index 5eb1e586..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/Adapter9.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/AttributeMapping.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/AttributeMapping.class deleted file mode 100644 index 27d65ca4..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/AttributeMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ConfigParameterContainer.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/ConfigParameterContainer.class deleted file mode 100644 index 6167428d..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ConfigParameterContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/EntityInfo.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/EntityInfo.class deleted file mode 100644 index dfb2ec67..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/EntityInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAnyAssociationType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAnyAssociationType.class deleted file mode 100644 index 19b7dcaa..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAnyAssociationType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAnyValueMappingType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAnyValueMappingType.class deleted file mode 100644 index b3d9c04c..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAnyValueMappingType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmArrayType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmArrayType.class deleted file mode 100644 index dae9d782..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmArrayType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAuxiliaryDatabaseObjectType$JaxbHbmDefinition.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAuxiliaryDatabaseObjectType$JaxbHbmDefinition.class deleted file mode 100644 index 8b22eef1..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAuxiliaryDatabaseObjectType$JaxbHbmDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAuxiliaryDatabaseObjectType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAuxiliaryDatabaseObjectType.class deleted file mode 100644 index f71c4783..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmAuxiliaryDatabaseObjectType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBagCollectionType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBagCollectionType.class deleted file mode 100644 index 95db37d0..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBagCollectionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBaseVersionAttributeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBaseVersionAttributeType.class deleted file mode 100644 index 6b3e5894..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBaseVersionAttributeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBasicAttributeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBasicAttributeType.class deleted file mode 100644 index b957c052..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBasicAttributeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBasicCollectionElementType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBasicCollectionElementType.class deleted file mode 100644 index bc32b572..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmBasicCollectionElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCacheInclusionEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCacheInclusionEnum.class deleted file mode 100644 index 4964ebd9..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCacheInclusionEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCacheType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCacheType.class deleted file mode 100644 index 9a499c45..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCacheType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmClassRenameType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmClassRenameType.class deleted file mode 100644 index 627484fe..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmClassRenameType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCollectionIdType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCollectionIdType.class deleted file mode 100644 index b4674d76..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCollectionIdType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmColumnType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmColumnType.class deleted file mode 100644 index 20fcec14..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmColumnType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeAttributeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeAttributeType.class deleted file mode 100644 index 69ad93ca..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeAttributeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeCollectionElementType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeCollectionElementType.class deleted file mode 100644 index d68055e8..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeCollectionElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeIdType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeIdType.class deleted file mode 100644 index 471e0c48..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeIdType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeIndexType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeIndexType.class deleted file mode 100644 index c39bec1f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeIndexType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeKeyBasicAttributeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeKeyBasicAttributeType.class deleted file mode 100644 index 84b006c6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeKeyBasicAttributeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeKeyManyToOneType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeKeyManyToOneType.class deleted file mode 100644 index 502e7fc9..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCompositeKeyManyToOneType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmConfigParameterContainer.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmConfigParameterContainer.class deleted file mode 100644 index db3b4d29..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmConfigParameterContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmConfigParameterType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmConfigParameterType.class deleted file mode 100644 index 5720275a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmConfigParameterType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCustomSqlDmlType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCustomSqlDmlType.class deleted file mode 100644 index 0af75d25..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmCustomSqlDmlType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDialectScopeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDialectScopeType.class deleted file mode 100644 index 3434545e..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDialectScopeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDiscriminatorSubclassEntityType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDiscriminatorSubclassEntityType.class deleted file mode 100644 index 62c46dc5..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDiscriminatorSubclassEntityType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDynamicComponentType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDynamicComponentType.class deleted file mode 100644 index 4db3f98f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmDynamicComponentType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmEntityBaseDefinition.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmEntityBaseDefinition.class deleted file mode 100644 index 14ce8694..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmEntityBaseDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmEntityDiscriminatorType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmEntityDiscriminatorType.class deleted file mode 100644 index 9ee87f65..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmEntityDiscriminatorType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchProfileType$JaxbHbmFetch.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchProfileType$JaxbHbmFetch.class deleted file mode 100644 index 9cf9111b..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchProfileType$JaxbHbmFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchProfileType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchProfileType.class deleted file mode 100644 index 16d7dae3..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchProfileType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchStyleEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchStyleEnum.class deleted file mode 100644 index 522d276c..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchStyleEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchStyleWithSubselectEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchStyleWithSubselectEnum.class deleted file mode 100644 index 9c024315..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFetchStyleWithSubselectEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterAliasMappingType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterAliasMappingType.class deleted file mode 100644 index c2d0c587..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterAliasMappingType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterDefinitionType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterDefinitionType.class deleted file mode 100644 index 177cd18a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterDefinitionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterParameterType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterParameterType.class deleted file mode 100644 index 214d9eb9..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterParameterType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterType.class deleted file mode 100644 index 22ace1af..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmFilterType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmGeneratorSpecificationType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmGeneratorSpecificationType.class deleted file mode 100644 index ede03905..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmGeneratorSpecificationType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmHibernateMapping.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmHibernateMapping.class deleted file mode 100644 index 51deabe6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmHibernateMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIdBagCollectionType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIdBagCollectionType.class deleted file mode 100644 index b83d1d5c..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIdBagCollectionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIdentifierGeneratorDefinitionType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIdentifierGeneratorDefinitionType.class deleted file mode 100644 index 56439154..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIdentifierGeneratorDefinitionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexManyToAnyType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexManyToAnyType.class deleted file mode 100644 index a500e61f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexManyToAnyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexManyToManyType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexManyToManyType.class deleted file mode 100644 index 33d6a5bd..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexManyToManyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexType.class deleted file mode 100644 index 742ecf21..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmIndexType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmJoinedSubclassEntityType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmJoinedSubclassEntityType.class deleted file mode 100644 index e2b1dd33..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmJoinedSubclassEntityType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmKeyType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmKeyType.class deleted file mode 100644 index b43b8a32..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmKeyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyEnum.class deleted file mode 100644 index 3cc5875d..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyWithExtraEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyWithExtraEnum.class deleted file mode 100644 index 0f6dc443..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyWithExtraEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyWithNoProxyEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyWithNoProxyEnum.class deleted file mode 100644 index 40f9eea0..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLazyWithNoProxyEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmListIndexType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmListIndexType.class deleted file mode 100644 index 6348082f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmListIndexType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmListType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmListType.class deleted file mode 100644 index e9c5e790..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmListType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLoaderType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLoaderType.class deleted file mode 100644 index 1a1cb274..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmLoaderType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToAnyCollectionElementType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToAnyCollectionElementType.class deleted file mode 100644 index 2b6d6f88..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToAnyCollectionElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToManyCollectionElementType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToManyCollectionElementType.class deleted file mode 100644 index 0d61f04d..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToManyCollectionElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToOneType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToOneType.class deleted file mode 100644 index 89dea5d2..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmManyToOneType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyBasicType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyBasicType.class deleted file mode 100644 index ddba3fc0..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyBasicType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyCompositeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyCompositeType.class deleted file mode 100644 index 6670280e..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyCompositeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyManyToManyType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyManyToManyType.class deleted file mode 100644 index 72d8dc34..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapKeyManyToManyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapType.class deleted file mode 100644 index 9b8e0675..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMapType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMultiTenancyType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMultiTenancyType.class deleted file mode 100644 index b9fdc546..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmMultiTenancyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNamedNativeQueryType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNamedNativeQueryType.class deleted file mode 100644 index 1abb574e..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNamedNativeQueryType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNamedQueryType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNamedQueryType.class deleted file mode 100644 index 705927a4..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNamedQueryType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryCollectionLoadReturnType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryCollectionLoadReturnType.class deleted file mode 100644 index e9de4d9f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryCollectionLoadReturnType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryJoinReturnType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryJoinReturnType.class deleted file mode 100644 index f10c2ae0..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryJoinReturnType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryPropertyReturnType$JaxbHbmReturnColumn.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryPropertyReturnType$JaxbHbmReturnColumn.class deleted file mode 100644 index 721c1678..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryPropertyReturnType$JaxbHbmReturnColumn.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryPropertyReturnType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryPropertyReturnType.class deleted file mode 100644 index 5d0b40ef..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryPropertyReturnType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryReturnType$JaxbHbmReturnDiscriminator.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryReturnType$JaxbHbmReturnDiscriminator.class deleted file mode 100644 index bcb31a0a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryReturnType$JaxbHbmReturnDiscriminator.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryReturnType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryReturnType.class deleted file mode 100644 index 33e926a2..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryReturnType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryScalarReturnType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryScalarReturnType.class deleted file mode 100644 index d7891fc5..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNativeQueryScalarReturnType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNaturalIdCacheType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNaturalIdCacheType.class deleted file mode 100644 index 552dec0e..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNaturalIdCacheType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNaturalIdType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNaturalIdType.class deleted file mode 100644 index 37162fa2..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNaturalIdType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNestedCompositeElementType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNestedCompositeElementType.class deleted file mode 100644 index 22b32e34..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNestedCompositeElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNotFoundEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNotFoundEnum.class deleted file mode 100644 index 8ccb8ef4..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmNotFoundEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOnDeleteEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOnDeleteEnum.class deleted file mode 100644 index 6f528ce9..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOnDeleteEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOneToManyCollectionElementType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOneToManyCollectionElementType.class deleted file mode 100644 index a22b7ed1..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOneToManyCollectionElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOneToOneType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOneToOneType.class deleted file mode 100644 index 0d71accc..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOneToOneType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOuterJoinEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOuterJoinEnum.class deleted file mode 100644 index 95b8b686..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmOuterJoinEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmParentType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmParentType.class deleted file mode 100644 index 6cff2371..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmParentType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPolymorphismEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPolymorphismEnum.class deleted file mode 100644 index a8e2e853..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPolymorphismEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPrimitiveArrayType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPrimitiveArrayType.class deleted file mode 100644 index f381011f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPrimitiveArrayType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPropertiesType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPropertiesType.class deleted file mode 100644 index 82c47dad..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmPropertiesType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmQueryParamType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmQueryParamType.class deleted file mode 100644 index 060f30d0..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmQueryParamType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmResultSetMappingType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmResultSetMappingType.class deleted file mode 100644 index 984f5afc..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmResultSetMappingType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmRootEntityType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmRootEntityType.class deleted file mode 100644 index 5469bb46..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmRootEntityType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSecondaryTableType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSecondaryTableType.class deleted file mode 100644 index 62f94fc6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSecondaryTableType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSetType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSetType.class deleted file mode 100644 index 6392b5c9..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSetType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSimpleIdType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSimpleIdType.class deleted file mode 100644 index aae52273..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSimpleIdType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSubclassEntityBaseDefinition.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSubclassEntityBaseDefinition.class deleted file mode 100644 index fef74d95..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSubclassEntityBaseDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSynchronizeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSynchronizeType.class deleted file mode 100644 index 8c1e5004..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmSynchronizeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTimestampAttributeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTimestampAttributeType.class deleted file mode 100644 index 027fe7ee..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTimestampAttributeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTimestampSourceEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTimestampSourceEnum.class deleted file mode 100644 index 6aece14d..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTimestampSourceEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmToolingHintContainer.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmToolingHintContainer.class deleted file mode 100644 index 89a4d60b..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmToolingHintContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmToolingHintType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmToolingHintType.class deleted file mode 100644 index b7468470..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmToolingHintType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTuplizerType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTuplizerType.class deleted file mode 100644 index 8f9bf574..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTuplizerType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTypeDefinitionType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTypeDefinitionType.class deleted file mode 100644 index a0702a4f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTypeDefinitionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTypeSpecificationType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTypeSpecificationType.class deleted file mode 100644 index ee714afb..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmTypeSpecificationType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnionSubclassEntityType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnionSubclassEntityType.class deleted file mode 100644 index 11c58567..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnionSubclassEntityType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueCompositeIdEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueCompositeIdEnum.class deleted file mode 100644 index 46c8957a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueCompositeIdEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueTimestampEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueTimestampEnum.class deleted file mode 100644 index 2812fb48..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueTimestampEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueVersionEnum.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueVersionEnum.class deleted file mode 100644 index d7d1818b..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmUnsavedValueVersionEnum.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmVersionAttributeType.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmVersionAttributeType.class deleted file mode 100644 index 35ac12a7..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/JaxbHbmVersionAttributeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/NativeQueryNonScalarRootReturn.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/NativeQueryNonScalarRootReturn.class deleted file mode 100644 index 8eab71a4..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/NativeQueryNonScalarRootReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ObjectFactory.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/ObjectFactory.class deleted file mode 100644 index 25981f1f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ObjectFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfo.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfo.class deleted file mode 100644 index ba9f590d..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfoIdBagAdapter.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfoIdBagAdapter.class deleted file mode 100644 index 40cefbe5..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfoIdBagAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfoPrimitiveArrayAdapter.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfoPrimitiveArrayAdapter.class deleted file mode 100644 index fd7d1ef6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/PluralAttributeInfoPrimitiveArrayAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ResultSetMappingBindingDefinition.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/ResultSetMappingBindingDefinition.class deleted file mode 100644 index 1ff0838a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ResultSetMappingBindingDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SecondaryTableContainer.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/SecondaryTableContainer.class deleted file mode 100644 index 7e20a97c..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SecondaryTableContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SimpleValueTypeInfo.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/SimpleValueTypeInfo.class deleted file mode 100644 index 00c73458..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SimpleValueTypeInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SingularAttributeInfo.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/SingularAttributeInfo.class deleted file mode 100644 index 899b549d..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SingularAttributeInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SubEntityInfo.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/SubEntityInfo.class deleted file mode 100644 index 5b9a5013..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/SubEntityInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/TableInformationContainer.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/TableInformationContainer.class deleted file mode 100644 index ecef9087..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/TableInformationContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ToolingHintContainer.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/ToolingHintContainer.class deleted file mode 100644 index 4c5470f9..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/ToolingHintContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/TypeContainer.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/TypeContainer.class deleted file mode 100644 index 4cd4e24a..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/TypeContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/hbm/spi/package-info.class b/target/classes/org/hibernate/boot/jaxb/hbm/spi/package-info.class deleted file mode 100644 index 854ea5ce..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/hbm/spi/package-info.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/AbstractBinder.class b/target/classes/org/hibernate/boot/jaxb/internal/AbstractBinder.class deleted file mode 100644 index 8802ddc8..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/AbstractBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/CacheableFileXmlSource.class b/target/classes/org/hibernate/boot/jaxb/internal/CacheableFileXmlSource.class deleted file mode 100644 index c603f9f7..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/CacheableFileXmlSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/ContextProvidingValidationEventHandler.class b/target/classes/org/hibernate/boot/jaxb/internal/ContextProvidingValidationEventHandler.class deleted file mode 100644 index 5df8485c..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/ContextProvidingValidationEventHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/FileXmlSource.class b/target/classes/org/hibernate/boot/jaxb/internal/FileXmlSource.class deleted file mode 100644 index d2f19e42..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/FileXmlSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/InputStreamXmlSource.class b/target/classes/org/hibernate/boot/jaxb/internal/InputStreamXmlSource.class deleted file mode 100644 index 11fd0cbe..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/InputStreamXmlSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/JarFileEntryXmlSource.class b/target/classes/org/hibernate/boot/jaxb/internal/JarFileEntryXmlSource.class deleted file mode 100644 index f097eafa..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/JarFileEntryXmlSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/JaxpSourceXmlSource.class b/target/classes/org/hibernate/boot/jaxb/internal/JaxpSourceXmlSource.class deleted file mode 100644 index 317cecfe..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/JaxpSourceXmlSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/MappingBinder$1.class b/target/classes/org/hibernate/boot/jaxb/internal/MappingBinder$1.class deleted file mode 100644 index d42c178f..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/MappingBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/MappingBinder.class b/target/classes/org/hibernate/boot/jaxb/internal/MappingBinder.class deleted file mode 100644 index 4832acbd..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/MappingBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/UrlXmlSource.class b/target/classes/org/hibernate/boot/jaxb/internal/UrlXmlSource.class deleted file mode 100644 index f735a866..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/UrlXmlSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/BaseXMLEventReader.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/BaseXMLEventReader.class deleted file mode 100644 index b65900d0..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/BaseXMLEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/BufferedXMLEventReader.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/BufferedXMLEventReader.class deleted file mode 100644 index 9db4a2b4..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/BufferedXMLEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/FilteringXMLEventReader.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/FilteringXMLEventReader.class deleted file mode 100644 index cd255276..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/FilteringXMLEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/HbmEventReader.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/HbmEventReader.class deleted file mode 100644 index 3eec3519..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/HbmEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/JpaOrmXmlEventReader$BadVersionException.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/JpaOrmXmlEventReader$BadVersionException.class deleted file mode 100644 index 5b97cbbd..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/JpaOrmXmlEventReader$BadVersionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/JpaOrmXmlEventReader.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/JpaOrmXmlEventReader.class deleted file mode 100644 index 7931fe42..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/JpaOrmXmlEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalSchema.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalSchema.class deleted file mode 100644 index 5c67e1ec..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalSchema.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalSchemaLocator.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalSchemaLocator.class deleted file mode 100644 index adf21bbe..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalSchemaLocator.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver$DtdMapping.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver$DtdMapping.class deleted file mode 100644 index b074b7f0..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver$DtdMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver$NamespaceSchemaMapping.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver$NamespaceSchemaMapping.class deleted file mode 100644 index bb2d47c6..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver$NamespaceSchemaMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver.class deleted file mode 100644 index 55e8a771..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/LocalXmlResourceResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/SupportedOrmXsdVersion.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/SupportedOrmXsdVersion.class deleted file mode 100644 index 0f1962fb..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/SupportedOrmXsdVersion.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/UnsupportedOrmXsdVersionException.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/UnsupportedOrmXsdVersionException.class deleted file mode 100644 index 16238225..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/UnsupportedOrmXsdVersionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/XMLStreamConstantsUtils.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/XMLStreamConstantsUtils.class deleted file mode 100644 index 9b2988db..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/XMLStreamConstantsUtils.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/internal/stax/XmlInfrastructureException.class b/target/classes/org/hibernate/boot/jaxb/internal/stax/XmlInfrastructureException.class deleted file mode 100644 index ce4e93ac..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/internal/stax/XmlInfrastructureException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/spi/Binder.class b/target/classes/org/hibernate/boot/jaxb/spi/Binder.class deleted file mode 100644 index f5b7dbdb..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/spi/Binder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/spi/Binding.class b/target/classes/org/hibernate/boot/jaxb/spi/Binding.class deleted file mode 100644 index 9ad0f037..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/spi/Binding.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/jaxb/spi/XmlSource.class b/target/classes/org/hibernate/boot/jaxb/spi/XmlSource.class deleted file mode 100644 index 2bc12514..00000000 Binary files a/target/classes/org/hibernate/boot/jaxb/spi/XmlSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/Caching.class b/target/classes/org/hibernate/boot/model/Caching.class deleted file mode 100644 index 1b52fc92..00000000 Binary files a/target/classes/org/hibernate/boot/model/Caching.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/CustomSql.class b/target/classes/org/hibernate/boot/model/CustomSql.class deleted file mode 100644 index 8cd935f8..00000000 Binary files a/target/classes/org/hibernate/boot/model/CustomSql.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/IdGeneratorStrategyInterpreter$GeneratorNameDeterminationContext.class b/target/classes/org/hibernate/boot/model/IdGeneratorStrategyInterpreter$GeneratorNameDeterminationContext.class deleted file mode 100644 index aca1448a..00000000 Binary files a/target/classes/org/hibernate/boot/model/IdGeneratorStrategyInterpreter$GeneratorNameDeterminationContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/IdGeneratorStrategyInterpreter.class b/target/classes/org/hibernate/boot/model/IdGeneratorStrategyInterpreter.class deleted file mode 100644 index f360ae17..00000000 Binary files a/target/classes/org/hibernate/boot/model/IdGeneratorStrategyInterpreter.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/IdentifierGeneratorDefinition$Builder.class b/target/classes/org/hibernate/boot/model/IdentifierGeneratorDefinition$Builder.class deleted file mode 100644 index 66134d2c..00000000 Binary files a/target/classes/org/hibernate/boot/model/IdentifierGeneratorDefinition$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/IdentifierGeneratorDefinition.class b/target/classes/org/hibernate/boot/model/IdentifierGeneratorDefinition.class deleted file mode 100644 index dce2d557..00000000 Binary files a/target/classes/org/hibernate/boot/model/IdentifierGeneratorDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/JavaTypeDescriptor.class b/target/classes/org/hibernate/boot/model/JavaTypeDescriptor.class deleted file mode 100644 index b7597878..00000000 Binary files a/target/classes/org/hibernate/boot/model/JavaTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/TruthValue.class b/target/classes/org/hibernate/boot/model/TruthValue.class deleted file mode 100644 index e9683412..00000000 Binary files a/target/classes/org/hibernate/boot/model/TruthValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/TypeContributions.class b/target/classes/org/hibernate/boot/model/TypeContributions.class deleted file mode 100644 index b80aa855..00000000 Binary files a/target/classes/org/hibernate/boot/model/TypeContributions.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/TypeContributor.class b/target/classes/org/hibernate/boot/model/TypeContributor.class deleted file mode 100644 index e0afb79f..00000000 Binary files a/target/classes/org/hibernate/boot/model/TypeContributor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/TypeDefinition.class b/target/classes/org/hibernate/boot/model/TypeDefinition.class deleted file mode 100644 index 881e2c64..00000000 Binary files a/target/classes/org/hibernate/boot/model/TypeDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/DatabaseIdentifier.class b/target/classes/org/hibernate/boot/model/naming/DatabaseIdentifier.class deleted file mode 100644 index d058f7ae..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/DatabaseIdentifier.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/EntityNaming.class b/target/classes/org/hibernate/boot/model/naming/EntityNaming.class deleted file mode 100644 index 9ff5d515..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/EntityNaming.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/Identifier.class b/target/classes/org/hibernate/boot/model/naming/Identifier.class deleted file mode 100644 index 8d4ba32f..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/Identifier.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/IllegalIdentifierException.class b/target/classes/org/hibernate/boot/model/naming/IllegalIdentifierException.class deleted file mode 100644 index 3911ed20..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/IllegalIdentifierException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitAnyDiscriminatorColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitAnyDiscriminatorColumnNameSource.class deleted file mode 100644 index e4474ddf..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitAnyDiscriminatorColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitAnyKeyColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitAnyKeyColumnNameSource.class deleted file mode 100644 index 4309e13f..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitAnyKeyColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitBasicColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitBasicColumnNameSource.class deleted file mode 100644 index 56978bbf..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitBasicColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitCollectionTableNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitCollectionTableNameSource.class deleted file mode 100644 index f1f75dd7..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitCollectionTableNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitConstraintNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitConstraintNameSource.class deleted file mode 100644 index 30c188d5..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitConstraintNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitDiscriminatorColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitDiscriminatorColumnNameSource.class deleted file mode 100644 index ae2131e1..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitDiscriminatorColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitEntityNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitEntityNameSource.class deleted file mode 100644 index dc269d38..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitEntityNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitForeignKeyNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitForeignKeyNameSource.class deleted file mode 100644 index c24f554f..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitForeignKeyNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitIdentifierColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitIdentifierColumnNameSource.class deleted file mode 100644 index a5a51363..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitIdentifierColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitIndexColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitIndexColumnNameSource.class deleted file mode 100644 index 07e93acb..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitIndexColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitIndexNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitIndexNameSource.class deleted file mode 100644 index c45c2151..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitIndexNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitJoinColumnNameSource$Nature.class b/target/classes/org/hibernate/boot/model/naming/ImplicitJoinColumnNameSource$Nature.class deleted file mode 100644 index d5a7f5f9..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitJoinColumnNameSource$Nature.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitJoinColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitJoinColumnNameSource.class deleted file mode 100644 index 19ac33c8..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitJoinColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitJoinTableNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitJoinTableNameSource.class deleted file mode 100644 index 4e86a429..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitJoinTableNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitMapKeyColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitMapKeyColumnNameSource.class deleted file mode 100644 index 522e8d2b..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitMapKeyColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitNameSource.class deleted file mode 100644 index 9d6293b2..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategy.class b/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategy.class deleted file mode 100644 index d0b3eae5..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyComponentPathImpl.class b/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyComponentPathImpl.class deleted file mode 100644 index 7646377b..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyComponentPathImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyJpaCompliantImpl.class b/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyJpaCompliantImpl.class deleted file mode 100644 index 6c146452..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyJpaCompliantImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyLegacyHbmImpl.class b/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyLegacyHbmImpl.class deleted file mode 100644 index 590aa0b8..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyLegacyHbmImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyLegacyJpaImpl.class b/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyLegacyJpaImpl.class deleted file mode 100644 index 59a2f16c..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitNamingStrategyLegacyJpaImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitPrimaryKeyJoinColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitPrimaryKeyJoinColumnNameSource.class deleted file mode 100644 index a296ca9a..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitPrimaryKeyJoinColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitTenantIdColumnNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitTenantIdColumnNameSource.class deleted file mode 100644 index f54f54bb..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitTenantIdColumnNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ImplicitUniqueKeyNameSource.class b/target/classes/org/hibernate/boot/model/naming/ImplicitUniqueKeyNameSource.class deleted file mode 100644 index aa500881..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ImplicitUniqueKeyNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/NamingHelper$1.class b/target/classes/org/hibernate/boot/model/naming/NamingHelper$1.class deleted file mode 100644 index 10ae2345..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/NamingHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/NamingHelper$2.class b/target/classes/org/hibernate/boot/model/naming/NamingHelper$2.class deleted file mode 100644 index 2b337e76..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/NamingHelper$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/NamingHelper.class b/target/classes/org/hibernate/boot/model/naming/NamingHelper.class deleted file mode 100644 index cb11ac8d..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/NamingHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/NamingStrategyHelper.class b/target/classes/org/hibernate/boot/model/naming/NamingStrategyHelper.class deleted file mode 100644 index 2edba98f..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/NamingStrategyHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/ObjectNameNormalizer.class b/target/classes/org/hibernate/boot/model/naming/ObjectNameNormalizer.class deleted file mode 100644 index 93cbf67e..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/ObjectNameNormalizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/PhysicalNamingStrategy.class b/target/classes/org/hibernate/boot/model/naming/PhysicalNamingStrategy.class deleted file mode 100644 index f11cede1..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/PhysicalNamingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/naming/PhysicalNamingStrategyStandardImpl.class b/target/classes/org/hibernate/boot/model/naming/PhysicalNamingStrategyStandardImpl.class deleted file mode 100644 index 94956834..00000000 Binary files a/target/classes/org/hibernate/boot/model/naming/PhysicalNamingStrategyStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/process/internal/ManagedResourcesImpl.class b/target/classes/org/hibernate/boot/model/process/internal/ManagedResourcesImpl.class deleted file mode 100644 index 0874418f..00000000 Binary files a/target/classes/org/hibernate/boot/model/process/internal/ManagedResourcesImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/process/internal/ScanningCoordinator.class b/target/classes/org/hibernate/boot/model/process/internal/ScanningCoordinator.class deleted file mode 100644 index e2ca9006..00000000 Binary files a/target/classes/org/hibernate/boot/model/process/internal/ScanningCoordinator.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/process/spi/ManagedResources.class b/target/classes/org/hibernate/boot/model/process/spi/ManagedResources.class deleted file mode 100644 index 56251be7..00000000 Binary files a/target/classes/org/hibernate/boot/model/process/spi/ManagedResources.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess$1.class b/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess$1.class deleted file mode 100644 index 102de0be..00000000 Binary files a/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess$2.class b/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess$2.class deleted file mode 100644 index 876a4fa2..00000000 Binary files a/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess.class b/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess.class deleted file mode 100644 index 74920d4a..00000000 Binary files a/target/classes/org/hibernate/boot/model/process/spi/MetadataBuildingProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/AbstractAuxiliaryDatabaseObject.class b/target/classes/org/hibernate/boot/model/relational/AbstractAuxiliaryDatabaseObject.class deleted file mode 100644 index 5f6b05f7..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/AbstractAuxiliaryDatabaseObject.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/AuxiliaryDatabaseObject$Expandable.class b/target/classes/org/hibernate/boot/model/relational/AuxiliaryDatabaseObject$Expandable.class deleted file mode 100644 index 26001585..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/AuxiliaryDatabaseObject$Expandable.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/AuxiliaryDatabaseObject.class b/target/classes/org/hibernate/boot/model/relational/AuxiliaryDatabaseObject.class deleted file mode 100644 index 6685eb23..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/AuxiliaryDatabaseObject.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Database.class b/target/classes/org/hibernate/boot/model/relational/Database.class deleted file mode 100644 index bf42b082..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Database.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Exportable.class b/target/classes/org/hibernate/boot/model/relational/Exportable.class deleted file mode 100644 index a8af4a2e..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Exportable.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/ExportableProducer.class b/target/classes/org/hibernate/boot/model/relational/ExportableProducer.class deleted file mode 100644 index 33bb200c..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/ExportableProducer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/InitCommand.class b/target/classes/org/hibernate/boot/model/relational/InitCommand.class deleted file mode 100644 index d6a39ce5..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/InitCommand.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Loggable.class b/target/classes/org/hibernate/boot/model/relational/Loggable.class deleted file mode 100644 index 38c01c3a..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Loggable.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/NamedAuxiliaryDatabaseObject.class b/target/classes/org/hibernate/boot/model/relational/NamedAuxiliaryDatabaseObject.class deleted file mode 100644 index 023a900c..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/NamedAuxiliaryDatabaseObject.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Namespace$ComparableHelper.class b/target/classes/org/hibernate/boot/model/relational/Namespace$ComparableHelper.class deleted file mode 100644 index defbb9cf..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Namespace$ComparableHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Namespace$Name.class b/target/classes/org/hibernate/boot/model/relational/Namespace$Name.class deleted file mode 100644 index c75efb60..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Namespace$Name.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Namespace.class b/target/classes/org/hibernate/boot/model/relational/Namespace.class deleted file mode 100644 index 47102161..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Namespace.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/QualifiedName.class b/target/classes/org/hibernate/boot/model/relational/QualifiedName.class deleted file mode 100644 index 94aa51c8..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/QualifiedName.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/QualifiedNameImpl.class b/target/classes/org/hibernate/boot/model/relational/QualifiedNameImpl.class deleted file mode 100644 index 20b8d4b2..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/QualifiedNameImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/QualifiedNameParser$NameParts.class b/target/classes/org/hibernate/boot/model/relational/QualifiedNameParser$NameParts.class deleted file mode 100644 index e5e52cb4..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/QualifiedNameParser$NameParts.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/QualifiedNameParser.class b/target/classes/org/hibernate/boot/model/relational/QualifiedNameParser.class deleted file mode 100644 index 6a283505..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/QualifiedNameParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/QualifiedSequenceName.class b/target/classes/org/hibernate/boot/model/relational/QualifiedSequenceName.class deleted file mode 100644 index 65f384d1..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/QualifiedSequenceName.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/QualifiedTableName.class b/target/classes/org/hibernate/boot/model/relational/QualifiedTableName.class deleted file mode 100644 index 342454f6..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/QualifiedTableName.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Sequence$Name.class b/target/classes/org/hibernate/boot/model/relational/Sequence$Name.class deleted file mode 100644 index 11b8dca3..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Sequence$Name.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/Sequence.class b/target/classes/org/hibernate/boot/model/relational/Sequence.class deleted file mode 100644 index c62178e9..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/Sequence.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/relational/SimpleAuxiliaryDatabaseObject.class b/target/classes/org/hibernate/boot/model/relational/SimpleAuxiliaryDatabaseObject.class deleted file mode 100644 index acdf6605..00000000 Binary files a/target/classes/org/hibernate/boot/model/relational/SimpleAuxiliaryDatabaseObject.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/ImplicitColumnNamingSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/ImplicitColumnNamingSecondPass.class deleted file mode 100644 index a34453b1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/ImplicitColumnNamingSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/OverriddenMappingDefaults$Builder.class b/target/classes/org/hibernate/boot/model/source/internal/OverriddenMappingDefaults$Builder.class deleted file mode 100644 index 70bf730c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/OverriddenMappingDefaults$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/OverriddenMappingDefaults.class b/target/classes/org/hibernate/boot/model/source/internal/OverriddenMappingDefaults.class deleted file mode 100644 index ca98e71a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/OverriddenMappingDefaults.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl$1.class deleted file mode 100644 index af57e3e3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl$AttributeConverterManager.class b/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl$AttributeConverterManager.class deleted file mode 100644 index 57ee37ec..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl$AttributeConverterManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl.class b/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl.class deleted file mode 100644 index 8c56f2fc..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/annotations/AnnotationMetadataSourceProcessorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl$1.class deleted file mode 100644 index cd99bfb5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl$2.class deleted file mode 100644 index e2cb45c8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl.class deleted file mode 100644 index 46050501..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractEntitySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractHbmSourceNode.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractHbmSourceNode.class deleted file mode 100644 index 42872a28..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractHbmSourceNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAssociationElementSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAssociationElementSourceImpl.class deleted file mode 100644 index 38105a5a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAssociationElementSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAttributeSourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAttributeSourceImpl$1.class deleted file mode 100644 index e97fe7c9..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAttributeSourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAttributeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAttributeSourceImpl.class deleted file mode 100644 index 9bcc4e88..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractPluralAttributeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractSingularAttributeSourceEmbeddedImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractSingularAttributeSourceEmbeddedImpl$1.class deleted file mode 100644 index d241bd03..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractSingularAttributeSourceEmbeddedImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractSingularAttributeSourceEmbeddedImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractSingularAttributeSourceEmbeddedImpl.class deleted file mode 100644 index 867a45c4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractSingularAttributeSourceEmbeddedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractToOneAttributeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractToOneAttributeSourceImpl.class deleted file mode 100644 index a9f475ff..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AbstractToOneAttributeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$1.class deleted file mode 100644 index cd47edae..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$2.class deleted file mode 100644 index 9b136f95..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$3.class deleted file mode 100644 index f960846e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$4.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$4.class deleted file mode 100644 index 242804ac..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$Callback.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$Callback.class deleted file mode 100644 index ce703252..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper$Callback.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper.class deleted file mode 100644 index fb7cab38..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AttributesHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/AuxiliaryDatabaseObjectBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/AuxiliaryDatabaseObjectBinder.class deleted file mode 100644 index 189050bb..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/AuxiliaryDatabaseObjectBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/BasicAttributeColumnsAndFormulasSource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/BasicAttributeColumnsAndFormulasSource.class deleted file mode 100644 index b468acc1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/BasicAttributeColumnsAndFormulasSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/BasicAttributePropertySource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/BasicAttributePropertySource.class deleted file mode 100644 index b7042cf8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/BasicAttributePropertySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ColumnAttributeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ColumnAttributeSourceImpl.class deleted file mode 100644 index 43048f19..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ColumnAttributeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ColumnSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ColumnSourceImpl.class deleted file mode 100644 index ec82f74a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ColumnSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/CommaSeparatedStringHelper.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/CommaSeparatedStringHelper.class deleted file mode 100644 index 9e700331..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/CommaSeparatedStringHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceBasicImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceBasicImpl$1.class deleted file mode 100644 index c9c80001..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceBasicImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceBasicImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceBasicImpl.class deleted file mode 100644 index 410a3863..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceBasicImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl$1.class deleted file mode 100644 index e4e87a38..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl$2.class deleted file mode 100644 index 48355c46..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl.class deleted file mode 100644 index da5f4689..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/CompositeIdentifierSingularAttributeSourceManyToOneImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ConfigParameterHelper.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ConfigParameterHelper.class deleted file mode 100644 index 1cc163f8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ConfigParameterHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceContainer.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceContainer.class deleted file mode 100644 index cd3bc80b..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl$1.class deleted file mode 100644 index 9eac7e21..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl$2.class deleted file mode 100644 index 7abf00c9..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl.class deleted file mode 100644 index 334d83a5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl$1.class deleted file mode 100644 index b932667a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl$2.class deleted file mode 100644 index b8d8e090..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl.class deleted file mode 100644 index d0bc8803..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EmbeddableSourceVirtualImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchyBuilder$ExtendsQueueEntry.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchyBuilder$ExtendsQueueEntry.class deleted file mode 100644 index b2e70633..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchyBuilder$ExtendsQueueEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchyBuilder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchyBuilder.class deleted file mode 100644 index 2e29a004..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchyBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$1.class deleted file mode 100644 index 5983aae7..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$2.class deleted file mode 100644 index 8e41d721..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$3.class deleted file mode 100644 index abcc8bae..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$4.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$4.class deleted file mode 100644 index 8a2df9a4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl.class deleted file mode 100644 index e51d0348..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityHierarchySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityNamingSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityNamingSourceImpl.class deleted file mode 100644 index 4ae4ea0e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/EntityNamingSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsPluralAttributeImpl$Builder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsPluralAttributeImpl$Builder.class deleted file mode 100644 index 76a8912c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsPluralAttributeImpl$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsPluralAttributeImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsPluralAttributeImpl.class deleted file mode 100644 index f08d8858..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsPluralAttributeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl$1.class deleted file mode 100644 index 67dfb171..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl$Builder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl$Builder.class deleted file mode 100644 index 04cdc230..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl.class deleted file mode 100644 index 2759f452..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchCharacteristicsSingularAssociationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchProfileBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchProfileBinder.class deleted file mode 100644 index a0e426a4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FetchProfileBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FilterDefinitionBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FilterDefinitionBinder.class deleted file mode 100644 index a1fe4db4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FilterDefinitionBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FilterSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FilterSourceImpl.class deleted file mode 100644 index b17d8e7f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FilterSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/FormulaImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/FormulaImpl.class deleted file mode 100644 index ac6ccae0..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/FormulaImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/HbmLocalMetadataBuildingContext.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/HbmLocalMetadataBuildingContext.class deleted file mode 100644 index 75d00e17..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/HbmLocalMetadataBuildingContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/HbmMetadataSourceProcessorImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/HbmMetadataSourceProcessorImpl.class deleted file mode 100644 index b92163e3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/HbmMetadataSourceProcessorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/Helper$InLineViewNameInferrer.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/Helper$InLineViewNameInferrer.class deleted file mode 100644 index 254906ce..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/Helper$InLineViewNameInferrer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/Helper.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/Helper.class deleted file mode 100644 index e5b7e392..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/HibernateTypeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/HibernateTypeSourceImpl.class deleted file mode 100644 index 22dd28ab..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/HibernateTypeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdClassSource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdClassSource.class deleted file mode 100644 index a06d48ec..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdClassSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierGeneratorDefinitionBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierGeneratorDefinitionBinder.class deleted file mode 100644 index 25b954b2..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierGeneratorDefinitionBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$1.class deleted file mode 100644 index b1fa936f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$EmbeddedAttributeMappingAdapterAggregatedCompositeId.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$EmbeddedAttributeMappingAdapterAggregatedCompositeId.class deleted file mode 100644 index d174a25d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$EmbeddedAttributeMappingAdapterAggregatedCompositeId.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$SingularAttributeSourceAggregatedCompositeIdentifierImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$SingularAttributeSourceAggregatedCompositeIdentifierImpl.class deleted file mode 100644 index f6a0dc3f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl$SingularAttributeSourceAggregatedCompositeIdentifierImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl.class deleted file mode 100644 index 50661f6f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceAggregatedCompositeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl$1.class deleted file mode 100644 index 339cb2f3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl$2.class deleted file mode 100644 index 0d41f325..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl.class deleted file mode 100644 index a1d5ed2d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceNonAggregatedCompositeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceSimpleImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceSimpleImpl.class deleted file mode 100644 index 562305fc..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IdentifierSourceSimpleImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/InLineViewSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/InLineViewSourceImpl.class deleted file mode 100644 index 7b6ff173..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/InLineViewSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/IndexedPluralAttributeSource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/IndexedPluralAttributeSource.class deleted file mode 100644 index 1566b4b5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/IndexedPluralAttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/JoinedSubclassEntitySourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/JoinedSubclassEntitySourceImpl$1.class deleted file mode 100644 index 62909db1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/JoinedSubclassEntitySourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/JoinedSubclassEntitySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/JoinedSubclassEntitySourceImpl.class deleted file mode 100644 index 69b5bc0d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/JoinedSubclassEntitySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ManyToOneAttributeColumnsAndFormulasSource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ManyToOneAttributeColumnsAndFormulasSource.class deleted file mode 100644 index 951a51b1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ManyToOneAttributeColumnsAndFormulasSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ManyToOnePropertySource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ManyToOnePropertySource.class deleted file mode 100644 index 55368a13..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ManyToOnePropertySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/MappingDocument.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/MappingDocument.class deleted file mode 100644 index 82d0ce05..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/MappingDocument.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$1.class deleted file mode 100644 index fe186d3f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$10.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$10.class deleted file mode 100644 index aa8c33a7..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$10.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$11.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$11.class deleted file mode 100644 index 1cd391b1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$11.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$12$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$12$1.class deleted file mode 100644 index 81ece6b5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$12$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$12.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$12.class deleted file mode 100644 index 0b368541..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$12.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$13.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$13.class deleted file mode 100644 index e4e8704f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$13.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$14$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$14$1.class deleted file mode 100644 index b4a52928..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$14$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$14.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$14.class deleted file mode 100644 index 7f045301..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$14.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$15.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$15.class deleted file mode 100644 index e59390ba..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$15.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$2.class deleted file mode 100644 index 5f3cb8ac..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$3$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$3$1.class deleted file mode 100644 index 034db8ca..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$3$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$3.class deleted file mode 100644 index 7900da50..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$4.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$4.class deleted file mode 100644 index c86f2b80..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$5.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$5.class deleted file mode 100644 index 71b139b7..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$6.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$6.class deleted file mode 100644 index dd8baa9f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$7.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$7.class deleted file mode 100644 index c23df7ff..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$7.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$8.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$8.class deleted file mode 100644 index dc34a492..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$8.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$9.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$9.class deleted file mode 100644 index 8be4acbb..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$9.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$1.class deleted file mode 100644 index c3a666c4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$2.class deleted file mode 100644 index 1501e1f6..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$3.class deleted file mode 100644 index 52b0db9c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$4.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$4.class deleted file mode 100644 index bba84abf..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$5.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$5.class deleted file mode 100644 index dd23eeac..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass.class deleted file mode 100644 index 91126a7e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$AbstractPluralAttributeSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$DelayedPropertyReferenceHandlerImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$DelayedPropertyReferenceHandlerImpl.class deleted file mode 100644 index 90f09df5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$DelayedPropertyReferenceHandlerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$1.class deleted file mode 100644 index a9fabdf1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$2$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$2$1.class deleted file mode 100644 index 39462c84..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$2.class deleted file mode 100644 index bf07d7a8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder.class deleted file mode 100644 index db6cdc57..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneColumnBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneFkSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneFkSecondPass.class deleted file mode 100644 index b9ac5318..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$ManyToOneFkSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$NaturalIdUniqueKeyBinderImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$NaturalIdUniqueKeyBinderImpl$1.class deleted file mode 100644 index 0d63df26..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$NaturalIdUniqueKeyBinderImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$NaturalIdUniqueKeyBinderImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$NaturalIdUniqueKeyBinderImpl.class deleted file mode 100644 index 82323972..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$NaturalIdUniqueKeyBinderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeArraySecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeArraySecondPass.class deleted file mode 100644 index a5541f1d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeArraySecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeBagSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeBagSecondPass.class deleted file mode 100644 index ed722e14..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeBagSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeIdBagSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeIdBagSecondPass.class deleted file mode 100644 index 5b2a064b..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeIdBagSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeListSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeListSecondPass.class deleted file mode 100644 index 1013caee..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeListSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeMapSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeMapSecondPass.class deleted file mode 100644 index b5d64cea..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeMapSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributePrimitiveArraySecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributePrimitiveArraySecondPass.class deleted file mode 100644 index ad5c9196..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributePrimitiveArraySecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeSetSecondPass.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeSetSecondPass.class deleted file mode 100644 index 594e8c62..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$PluralAttributeSetSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$TypeResolution.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$TypeResolution.class deleted file mode 100644 index 5cad3d5c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder$TypeResolution.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder.class deleted file mode 100644 index e19e2a43..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ModelBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/NamedQueryBinder$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/NamedQueryBinder$1.class deleted file mode 100644 index 65519885..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/NamedQueryBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/NamedQueryBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/NamedQueryBinder.class deleted file mode 100644 index 4ce01bc5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/NamedQueryBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceBasicImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceBasicImpl$1.class deleted file mode 100644 index 2eded588..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceBasicImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceBasicImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceBasicImpl.class deleted file mode 100644 index 8f8e5c3c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceBasicImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl$1.class deleted file mode 100644 index 7dd9557e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl$2.class deleted file mode 100644 index 22e0c167..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl.class deleted file mode 100644 index 96a57eba..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceEmbeddedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$1.class deleted file mode 100644 index 1e684532..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$2.class deleted file mode 100644 index 8051ee86..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$3.class deleted file mode 100644 index 9b6198fc..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl.class deleted file mode 100644 index 75278bd2..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToAnyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToManyImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToManyImpl$1.class deleted file mode 100644 index bee37e9e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToManyImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToManyImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToManyImpl.class deleted file mode 100644 index 460c206c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceManyToManyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceOneToManyImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceOneToManyImpl.class deleted file mode 100644 index 287f1d15..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeElementSourceOneToManyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeKeySourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeKeySourceImpl$1.class deleted file mode 100644 index 311da637..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeKeySourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeKeySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeKeySourceImpl.class deleted file mode 100644 index df1572b6..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeKeySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$1.class deleted file mode 100644 index 2787f92b..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$2.class deleted file mode 100644 index 29b6d87c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$3.class deleted file mode 100644 index 8db58e25..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$4.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$4.class deleted file mode 100644 index 692b862a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl.class deleted file mode 100644 index e3b33fad..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToAnySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl$1.class deleted file mode 100644 index 5ed19353..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl$2.class deleted file mode 100644 index 19b939fb..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl.class deleted file mode 100644 index 48cb35b5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeyManyToManySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl$1.class deleted file mode 100644 index 7b0aabd0..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl$2.class deleted file mode 100644 index bac17012..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl.class deleted file mode 100644 index 130e4bb1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceBasicImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$1.class deleted file mode 100644 index 30edbd6b..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$2.class deleted file mode 100644 index 91a467dd..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$3.class deleted file mode 100644 index 7753ab8a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl.class deleted file mode 100644 index 98b94d98..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeMapKeySourceEmbeddedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl$1.class deleted file mode 100644 index d84e6fdd..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl$2.class deleted file mode 100644 index 5255dab9..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl.class deleted file mode 100644 index 4c830054..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSequentialIndexSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceArrayImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceArrayImpl.class deleted file mode 100644 index 9b775fd2..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceArrayImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceBagImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceBagImpl.class deleted file mode 100644 index 65dc9995..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceBagImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl$1.class deleted file mode 100644 index fd5ee5ef..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl$CollectionIdSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl$CollectionIdSourceImpl.class deleted file mode 100644 index 8d5a6b73..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl$CollectionIdSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl.class deleted file mode 100644 index 2cf90fc1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceIdBagImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceListImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceListImpl.class deleted file mode 100644 index 59caace6..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceListImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceMapImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceMapImpl.class deleted file mode 100644 index 163b0461..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceMapImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourcePrimitiveArrayImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourcePrimitiveArrayImpl.class deleted file mode 100644 index 028d7de4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourcePrimitiveArrayImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceSetImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceSetImpl.class deleted file mode 100644 index f62a3f24..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PluralAttributeSourceSetImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/PropertySource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/PropertySource.class deleted file mode 100644 index 2cca94be..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/PropertySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalObjectBinder$ColumnNamingDelegate.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalObjectBinder$ColumnNamingDelegate.class deleted file mode 100644 index e8a96954..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalObjectBinder$ColumnNamingDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalObjectBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalObjectBinder.class deleted file mode 100644 index 01063c48..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalObjectBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper$AbstractColumnsAndFormulasSource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper$AbstractColumnsAndFormulasSource.class deleted file mode 100644 index a16bd372..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper$AbstractColumnsAndFormulasSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper$ColumnsAndFormulasSource.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper$ColumnsAndFormulasSource.class deleted file mode 100644 index 339eb887..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper$ColumnsAndFormulasSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper.class deleted file mode 100644 index e9a7e0fc..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/RelationalValueSourceHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/ResultSetMappingBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/ResultSetMappingBinder.class deleted file mode 100644 index aac07012..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/ResultSetMappingBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/RootEntitySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/RootEntitySourceImpl.class deleted file mode 100644 index 98e84c94..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/RootEntitySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SecondaryTableSourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SecondaryTableSourceImpl$1.class deleted file mode 100644 index c53677d8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SecondaryTableSourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SecondaryTableSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SecondaryTableSourceImpl.class deleted file mode 100644 index ee5500b6..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SecondaryTableSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$1.class deleted file mode 100644 index 84101aae..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$2.class deleted file mode 100644 index 65b33778..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$3.class deleted file mode 100644 index 7184f201..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl.class deleted file mode 100644 index bd0f6a6d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceAnyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceBasicImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceBasicImpl.class deleted file mode 100644 index dd7be1b1..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceBasicImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$1$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$1$1.class deleted file mode 100644 index ed1bfdc4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$1.class deleted file mode 100644 index 86b7c35a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$2$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$2$1.class deleted file mode 100644 index 0b65dd5a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$2.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$2.class deleted file mode 100644 index 47c1cfd9..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$3$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$3$1.class deleted file mode 100644 index 13600459..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$3$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$3.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$3.class deleted file mode 100644 index 9493e7d8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl.class deleted file mode 100644 index 1d68f61e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceEmbeddedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceManyToOneImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceManyToOneImpl$1.class deleted file mode 100644 index 27d7c6e0..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceManyToOneImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceManyToOneImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceManyToOneImpl.class deleted file mode 100644 index f8c2e290..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceManyToOneImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceOneToOneImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceOneToOneImpl$1.class deleted file mode 100644 index c36b71dc..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceOneToOneImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceOneToOneImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceOneToOneImpl.class deleted file mode 100644 index f7ce3f0d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularAttributeSourceOneToOneImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularIdentifierAttributeSourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularIdentifierAttributeSourceImpl$1.class deleted file mode 100644 index cfcf8361..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularIdentifierAttributeSourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularIdentifierAttributeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularIdentifierAttributeSourceImpl.class deleted file mode 100644 index 74fd177a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SingularIdentifierAttributeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SizeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SizeSourceImpl.class deleted file mode 100644 index a9db0988..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SizeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/SubclassEntitySourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/SubclassEntitySourceImpl.class deleted file mode 100644 index 9c00947d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/SubclassEntitySourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/TableSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/TableSourceImpl.class deleted file mode 100644 index d698a9fd..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/TableSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/TimestampAttributeSourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/TimestampAttributeSourceImpl$1.class deleted file mode 100644 index 1c54b11d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/TimestampAttributeSourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/TimestampAttributeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/TimestampAttributeSourceImpl.class deleted file mode 100644 index 51df5979..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/TimestampAttributeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/TypeDefinitionBinder.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/TypeDefinitionBinder.class deleted file mode 100644 index b97e35ef..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/TypeDefinitionBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/VersionAttributeSourceImpl$1.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/VersionAttributeSourceImpl$1.class deleted file mode 100644 index 8128757d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/VersionAttributeSourceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/VersionAttributeSourceImpl.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/VersionAttributeSourceImpl.class deleted file mode 100644 index 95847b8e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/VersionAttributeSourceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/internal/hbm/XmlElementMetadata.class b/target/classes/org/hibernate/boot/model/source/internal/hbm/XmlElementMetadata.class deleted file mode 100644 index b2ac3e32..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/internal/hbm/XmlElementMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AbstractAttributeKey.class b/target/classes/org/hibernate/boot/model/source/spi/AbstractAttributeKey.class deleted file mode 100644 index e1dcee8a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AbstractAttributeKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AnyDiscriminatorSource.class b/target/classes/org/hibernate/boot/model/source/spi/AnyDiscriminatorSource.class deleted file mode 100644 index e22306a3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AnyDiscriminatorSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AnyKeySource.class b/target/classes/org/hibernate/boot/model/source/spi/AnyKeySource.class deleted file mode 100644 index 42fc206d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AnyKeySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AnyMappingSource.class b/target/classes/org/hibernate/boot/model/source/spi/AnyMappingSource.class deleted file mode 100644 index 98028aee..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AnyMappingSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AssociationSource.class b/target/classes/org/hibernate/boot/model/source/spi/AssociationSource.class deleted file mode 100644 index 812bfcd4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AssociationSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AttributePath.class b/target/classes/org/hibernate/boot/model/source/spi/AttributePath.class deleted file mode 100644 index 8abf02bd..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AttributePath.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AttributeRole.class b/target/classes/org/hibernate/boot/model/source/spi/AttributeRole.class deleted file mode 100644 index a8272b8c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AttributeRole.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AttributeSource.class b/target/classes/org/hibernate/boot/model/source/spi/AttributeSource.class deleted file mode 100644 index 8497431a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/AttributeSourceContainer.class b/target/classes/org/hibernate/boot/model/source/spi/AttributeSourceContainer.class deleted file mode 100644 index 0c0d32fb..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/AttributeSourceContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/CascadeStyleSource.class b/target/classes/org/hibernate/boot/model/source/spi/CascadeStyleSource.class deleted file mode 100644 index 3a47bf73..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/CascadeStyleSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/CollectionIdSource.class b/target/classes/org/hibernate/boot/model/source/spi/CollectionIdSource.class deleted file mode 100644 index f754a69a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/CollectionIdSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/ColumnBindingDefaults.class b/target/classes/org/hibernate/boot/model/source/spi/ColumnBindingDefaults.class deleted file mode 100644 index 3b4cd13c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/ColumnBindingDefaults.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/ColumnSource.class b/target/classes/org/hibernate/boot/model/source/spi/ColumnSource.class deleted file mode 100644 index f147455c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/ColumnSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/ColumnsAndFormulasSourceContainer.class b/target/classes/org/hibernate/boot/model/source/spi/ColumnsAndFormulasSourceContainer.class deleted file mode 100644 index 68db2859..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/ColumnsAndFormulasSourceContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/CompositeIdentifierSource.class b/target/classes/org/hibernate/boot/model/source/spi/CompositeIdentifierSource.class deleted file mode 100644 index 7009ef9f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/CompositeIdentifierSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/DerivedValueSource.class b/target/classes/org/hibernate/boot/model/source/spi/DerivedValueSource.class deleted file mode 100644 index 59d6a14c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/DerivedValueSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/DiscriminatorSource.class b/target/classes/org/hibernate/boot/model/source/spi/DiscriminatorSource.class deleted file mode 100644 index 5708e6a0..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/DiscriminatorSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EmbeddableMapping.class b/target/classes/org/hibernate/boot/model/source/spi/EmbeddableMapping.class deleted file mode 100644 index 6ae9958d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EmbeddableMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EmbeddableSource.class b/target/classes/org/hibernate/boot/model/source/spi/EmbeddableSource.class deleted file mode 100644 index 04405560..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EmbeddableSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EmbeddableSourceContributor.class b/target/classes/org/hibernate/boot/model/source/spi/EmbeddableSourceContributor.class deleted file mode 100644 index ba699558..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EmbeddableSourceContributor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EmbeddedAttributeMapping.class b/target/classes/org/hibernate/boot/model/source/spi/EmbeddedAttributeMapping.class deleted file mode 100644 index b99f65f9..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EmbeddedAttributeMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EntityHierarchySource.class b/target/classes/org/hibernate/boot/model/source/spi/EntityHierarchySource.class deleted file mode 100644 index 9b6a5f34..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EntityHierarchySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EntityNamingSource.class b/target/classes/org/hibernate/boot/model/source/spi/EntityNamingSource.class deleted file mode 100644 index 7e134d76..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EntityNamingSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EntityNamingSourceContributor.class b/target/classes/org/hibernate/boot/model/source/spi/EntityNamingSourceContributor.class deleted file mode 100644 index 681133f4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EntityNamingSourceContributor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/EntitySource.class b/target/classes/org/hibernate/boot/model/source/spi/EntitySource.class deleted file mode 100644 index 23f5c5ae..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/EntitySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristics.class b/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristics.class deleted file mode 100644 index 14ebb119..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristics.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristicsPluralAttribute.class b/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristicsPluralAttribute.class deleted file mode 100644 index 84fe32c8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristicsPluralAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristicsSingularAssociation.class b/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristicsSingularAssociation.class deleted file mode 100644 index df3dbfde..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/FetchCharacteristicsSingularAssociation.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/FetchableAttributeSource.class b/target/classes/org/hibernate/boot/model/source/spi/FetchableAttributeSource.class deleted file mode 100644 index 83a5787b..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/FetchableAttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/FilterSource.class b/target/classes/org/hibernate/boot/model/source/spi/FilterSource.class deleted file mode 100644 index dea705d9..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/FilterSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/ForeignKeyContributingSource.class b/target/classes/org/hibernate/boot/model/source/spi/ForeignKeyContributingSource.class deleted file mode 100644 index 652960fc..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/ForeignKeyContributingSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/HibernateTypeSource.class b/target/classes/org/hibernate/boot/model/source/spi/HibernateTypeSource.class deleted file mode 100644 index 2a1c48e3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/HibernateTypeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/IdentifiableTypeSource.class b/target/classes/org/hibernate/boot/model/source/spi/IdentifiableTypeSource.class deleted file mode 100644 index c7065bc6..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/IdentifiableTypeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSource.class b/target/classes/org/hibernate/boot/model/source/spi/IdentifierSource.class deleted file mode 100644 index 7c2c39ea..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceAggregatedComposite.class b/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceAggregatedComposite.class deleted file mode 100644 index f1a82db6..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceAggregatedComposite.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceNonAggregatedComposite.class b/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceNonAggregatedComposite.class deleted file mode 100644 index bf65e002..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceNonAggregatedComposite.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceSimple.class b/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceSimple.class deleted file mode 100644 index 9444ed84..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/IdentifierSourceSimple.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/InLineViewSource.class b/target/classes/org/hibernate/boot/model/source/spi/InLineViewSource.class deleted file mode 100644 index bb785726..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/InLineViewSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/InheritanceType.class b/target/classes/org/hibernate/boot/model/source/spi/InheritanceType.class deleted file mode 100644 index c135d0ea..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/InheritanceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/JavaTypeDescriptorResolvable.class b/target/classes/org/hibernate/boot/model/source/spi/JavaTypeDescriptorResolvable.class deleted file mode 100644 index 92105e27..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/JavaTypeDescriptorResolvable.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/JdbcDataType.class b/target/classes/org/hibernate/boot/model/source/spi/JdbcDataType.class deleted file mode 100644 index 5c1cf3b2..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/JdbcDataType.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/JoinedSubclassEntitySource.class b/target/classes/org/hibernate/boot/model/source/spi/JoinedSubclassEntitySource.class deleted file mode 100644 index 6c6be1ea..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/JoinedSubclassEntitySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/JpaCallbackSource.class b/target/classes/org/hibernate/boot/model/source/spi/JpaCallbackSource.class deleted file mode 100644 index 6241052e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/JpaCallbackSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/LocalMetadataBuildingContext.class b/target/classes/org/hibernate/boot/model/source/spi/LocalMetadataBuildingContext.class deleted file mode 100644 index 3a8579d8..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/LocalMetadataBuildingContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/MapsIdSource.class b/target/classes/org/hibernate/boot/model/source/spi/MapsIdSource.class deleted file mode 100644 index 958ca5eb..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/MapsIdSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/MetadataSourceProcessor.class b/target/classes/org/hibernate/boot/model/source/spi/MetadataSourceProcessor.class deleted file mode 100644 index f4ef638d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/MetadataSourceProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/MultiTenancySource.class b/target/classes/org/hibernate/boot/model/source/spi/MultiTenancySource.class deleted file mode 100644 index 31cd0e34..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/MultiTenancySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/NaturalIdMutability.class b/target/classes/org/hibernate/boot/model/source/spi/NaturalIdMutability.class deleted file mode 100644 index de671970..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/NaturalIdMutability.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/Orderable.class b/target/classes/org/hibernate/boot/model/source/spi/Orderable.class deleted file mode 100644 index 3972a7c0..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/Orderable.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementNature.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementNature.class deleted file mode 100644 index 8c5b7065..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementNature.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSource.class deleted file mode 100644 index d69c3a20..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceAssociation.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceAssociation.class deleted file mode 100644 index 7ae1b8b0..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceAssociation.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceBasic.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceBasic.class deleted file mode 100644 index 13764a39..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceBasic.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceEmbedded.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceEmbedded.class deleted file mode 100644 index 1969febe..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceEmbedded.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceManyToAny.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceManyToAny.class deleted file mode 100644 index 6130c9df..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceManyToAny.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceManyToMany.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceManyToMany.class deleted file mode 100644 index 16e9ee8f..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceManyToMany.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceOneToMany.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceOneToMany.class deleted file mode 100644 index d5ff924e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeElementSourceOneToMany.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeIndexNature.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeIndexNature.class deleted file mode 100644 index c997fdd5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeIndexNature.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeIndexSource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeIndexSource.class deleted file mode 100644 index 840321e3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeIndexSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeKeySource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeKeySource.class deleted file mode 100644 index 93db9676..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeKeySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeyManyToAnySource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeyManyToAnySource.class deleted file mode 100644 index 18091d2a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeyManyToAnySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeyManyToManySource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeyManyToManySource.class deleted file mode 100644 index b472a291..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeyManyToManySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySource$Nature.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySource$Nature.class deleted file mode 100644 index 75d93fc2..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySource$Nature.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySource.class deleted file mode 100644 index 444cd06e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySourceBasic.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySourceBasic.class deleted file mode 100644 index 09470fb3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySourceBasic.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySourceEmbedded.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySourceEmbedded.class deleted file mode 100644 index 05bcc838..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeMapKeySourceEmbedded.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeNature.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeNature.class deleted file mode 100644 index 5175df2e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeNature.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSequentialIndexSource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSequentialIndexSource.class deleted file mode 100644 index 66608414..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSequentialIndexSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSource.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSource.class deleted file mode 100644 index ea56e394..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSourceArray.class b/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSourceArray.class deleted file mode 100644 index b17d5f7d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/PluralAttributeSourceArray.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSource$Nature.class b/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSource$Nature.class deleted file mode 100644 index 20c61f3b..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSource$Nature.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSource.class b/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSource.class deleted file mode 100644 index 839032c9..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSourceContainer.class b/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSourceContainer.class deleted file mode 100644 index 37b4d72b..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/RelationalValueSourceContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SecondaryTableSource.class b/target/classes/org/hibernate/boot/model/source/spi/SecondaryTableSource.class deleted file mode 100644 index 0b254302..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SecondaryTableSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeNature.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeNature.class deleted file mode 100644 index fe5c3f44..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeNature.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSource.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSource.class deleted file mode 100644 index cc2595d5..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceAny.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceAny.class deleted file mode 100644 index 5440ab64..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceAny.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceBasic.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceBasic.class deleted file mode 100644 index 28a299ea..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceBasic.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceEmbedded.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceEmbedded.class deleted file mode 100644 index 5602954e..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceEmbedded.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceManyToOne.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceManyToOne.class deleted file mode 100644 index 1a1e58c4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceManyToOne.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceOneToOne.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceOneToOne.class deleted file mode 100644 index e006ccc4..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceOneToOne.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceToOne.class b/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceToOne.class deleted file mode 100644 index 99cfb18d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SingularAttributeSourceToOne.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SizeSource.class b/target/classes/org/hibernate/boot/model/source/spi/SizeSource.class deleted file mode 100644 index 3810bbb3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SizeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/Sortable.class b/target/classes/org/hibernate/boot/model/source/spi/Sortable.class deleted file mode 100644 index be1cb38c..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/Sortable.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/SubclassEntitySource.class b/target/classes/org/hibernate/boot/model/source/spi/SubclassEntitySource.class deleted file mode 100644 index be835d32..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/SubclassEntitySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/TableSource.class b/target/classes/org/hibernate/boot/model/source/spi/TableSource.class deleted file mode 100644 index c12b2075..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/TableSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/TableSpecificationSource.class b/target/classes/org/hibernate/boot/model/source/spi/TableSpecificationSource.class deleted file mode 100644 index eaed7c21..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/TableSpecificationSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/ToolingHint.class b/target/classes/org/hibernate/boot/model/source/spi/ToolingHint.class deleted file mode 100644 index e19b40a3..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/ToolingHint.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/ToolingHintContext.class b/target/classes/org/hibernate/boot/model/source/spi/ToolingHintContext.class deleted file mode 100644 index 574bdc8d..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/ToolingHintContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/ToolingHintContextContainer.class b/target/classes/org/hibernate/boot/model/source/spi/ToolingHintContextContainer.class deleted file mode 100644 index 04b75e4a..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/ToolingHintContextContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/model/source/spi/VersionAttributeSource.class b/target/classes/org/hibernate/boot/model/source/spi/VersionAttributeSource.class deleted file mode 100644 index e459e3fa..00000000 Binary files a/target/classes/org/hibernate/boot/model/source/spi/VersionAttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/BootstrapServiceRegistry.class b/target/classes/org/hibernate/boot/registry/BootstrapServiceRegistry.class deleted file mode 100644 index 8460deee..00000000 Binary files a/target/classes/org/hibernate/boot/registry/BootstrapServiceRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/BootstrapServiceRegistryBuilder.class b/target/classes/org/hibernate/boot/registry/BootstrapServiceRegistryBuilder.class deleted file mode 100644 index e67fce0d..00000000 Binary files a/target/classes/org/hibernate/boot/registry/BootstrapServiceRegistryBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/StandardServiceInitiator.class b/target/classes/org/hibernate/boot/registry/StandardServiceInitiator.class deleted file mode 100644 index a4efc46f..00000000 Binary files a/target/classes/org/hibernate/boot/registry/StandardServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/StandardServiceRegistry.class b/target/classes/org/hibernate/boot/registry/StandardServiceRegistry.class deleted file mode 100644 index 0a9c4d4e..00000000 Binary files a/target/classes/org/hibernate/boot/registry/StandardServiceRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/StandardServiceRegistryBuilder.class b/target/classes/org/hibernate/boot/registry/StandardServiceRegistryBuilder.class deleted file mode 100644 index f8b94743..00000000 Binary files a/target/classes/org/hibernate/boot/registry/StandardServiceRegistryBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$1.class b/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$1.class deleted file mode 100644 index 4bf416d8..00000000 Binary files a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$AggregatedClassLoader$1.class b/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$AggregatedClassLoader$1.class deleted file mode 100644 index e7417061..00000000 Binary files a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$AggregatedClassLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$AggregatedClassLoader.class b/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$AggregatedClassLoader.class deleted file mode 100644 index a5191c6b..00000000 Binary files a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl$AggregatedClassLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl.class b/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl.class deleted file mode 100644 index 1ffde9d9..00000000 Binary files a/target/classes/org/hibernate/boot/registry/classloading/internal/ClassLoaderServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoaderService$Work.class b/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoaderService$Work.class deleted file mode 100644 index 63973720..00000000 Binary files a/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoaderService$Work.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoaderService.class b/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoaderService.class deleted file mode 100644 index e9da943c..00000000 Binary files a/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoaderService.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoadingException.class b/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoadingException.class deleted file mode 100644 index a370994f..00000000 Binary files a/target/classes/org/hibernate/boot/registry/classloading/spi/ClassLoadingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/internal/BootstrapServiceRegistryImpl.class b/target/classes/org/hibernate/boot/registry/internal/BootstrapServiceRegistryImpl.class deleted file mode 100644 index 521e71a6..00000000 Binary files a/target/classes/org/hibernate/boot/registry/internal/BootstrapServiceRegistryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/internal/StandardServiceRegistryImpl.class b/target/classes/org/hibernate/boot/registry/internal/StandardServiceRegistryImpl.class deleted file mode 100644 index 7169a588..00000000 Binary files a/target/classes/org/hibernate/boot/registry/internal/StandardServiceRegistryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/SimpleStrategyRegistrationImpl.class b/target/classes/org/hibernate/boot/registry/selector/SimpleStrategyRegistrationImpl.class deleted file mode 100644 index 4d2b1581..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/SimpleStrategyRegistrationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/StrategyRegistration.class b/target/classes/org/hibernate/boot/registry/selector/StrategyRegistration.class deleted file mode 100644 index 69ff0e9c..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/StrategyRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/StrategyRegistrationProvider.class b/target/classes/org/hibernate/boot/registry/selector/StrategyRegistrationProvider.class deleted file mode 100644 index ebae805c..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/StrategyRegistrationProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorBuilder.class b/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorBuilder.class deleted file mode 100644 index fd6d4cac..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorImpl$1.class b/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorImpl$1.class deleted file mode 100644 index 90fe7c76..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorImpl.class b/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorImpl.class deleted file mode 100644 index c5068467..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/internal/StrategySelectorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/spi/StrategySelectionException.class b/target/classes/org/hibernate/boot/registry/selector/spi/StrategySelectionException.class deleted file mode 100644 index 2938db38..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/spi/StrategySelectionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/registry/selector/spi/StrategySelector.class b/target/classes/org/hibernate/boot/registry/selector/spi/StrategySelector.class deleted file mode 100644 index f84293f9..00000000 Binary files a/target/classes/org/hibernate/boot/registry/selector/spi/StrategySelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadata.class b/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadata.class deleted file mode 100644 index d591c378..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadataBuilderImplementor.class b/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadataBuilderImplementor.class deleted file mode 100644 index 142b1e5f..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadataBuilderImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadataBuildingOptions.class b/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadataBuildingOptions.class deleted file mode 100644 index 60cabc69..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AbstractDelegatingMetadataBuildingOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AbstractDelegatingSessionFactoryBuilder.class b/target/classes/org/hibernate/boot/spi/AbstractDelegatingSessionFactoryBuilder.class deleted file mode 100644 index abcc1ec2..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AbstractDelegatingSessionFactoryBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AbstractDelegatingSessionFactoryOptions.class b/target/classes/org/hibernate/boot/spi/AbstractDelegatingSessionFactoryOptions.class deleted file mode 100644 index 1e2d62a9..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AbstractDelegatingSessionFactoryOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AdditionalJaxbMappingProducer.class b/target/classes/org/hibernate/boot/spi/AdditionalJaxbMappingProducer.class deleted file mode 100644 index 24a75126..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AdditionalJaxbMappingProducer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AttributeConverterAutoApplyHandler.class b/target/classes/org/hibernate/boot/spi/AttributeConverterAutoApplyHandler.class deleted file mode 100644 index e6def88b..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AttributeConverterAutoApplyHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/AttributeConverterDescriptor.class b/target/classes/org/hibernate/boot/spi/AttributeConverterDescriptor.class deleted file mode 100644 index e9295074..00000000 Binary files a/target/classes/org/hibernate/boot/spi/AttributeConverterDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/BasicTypeRegistration.class b/target/classes/org/hibernate/boot/spi/BasicTypeRegistration.class deleted file mode 100644 index ca5467da..00000000 Binary files a/target/classes/org/hibernate/boot/spi/BasicTypeRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/ClassLoaderAccess.class b/target/classes/org/hibernate/boot/spi/ClassLoaderAccess.class deleted file mode 100644 index 4ea5c106..00000000 Binary files a/target/classes/org/hibernate/boot/spi/ClassLoaderAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/ClassLoaderAccessDelegateImpl.class b/target/classes/org/hibernate/boot/spi/ClassLoaderAccessDelegateImpl.class deleted file mode 100644 index 90ed8947..00000000 Binary files a/target/classes/org/hibernate/boot/spi/ClassLoaderAccessDelegateImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$DelayedPropertyReferenceHandler.class b/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$DelayedPropertyReferenceHandler.class deleted file mode 100644 index 5f54730a..00000000 Binary files a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$DelayedPropertyReferenceHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$DuplicateSecondaryTableException.class b/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$DuplicateSecondaryTableException.class deleted file mode 100644 index 8b75548a..00000000 Binary files a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$DuplicateSecondaryTableException.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$EntityTableXref.class b/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$EntityTableXref.class deleted file mode 100644 index c0f7012d..00000000 Binary files a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector$EntityTableXref.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector.class b/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector.class deleted file mode 100644 index 732deacc..00000000 Binary files a/target/classes/org/hibernate/boot/spi/InFlightMetadataCollector.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/JpaOrmXmlPersistenceUnitDefaultAware$JpaOrmXmlPersistenceUnitDefaults.class b/target/classes/org/hibernate/boot/spi/JpaOrmXmlPersistenceUnitDefaultAware$JpaOrmXmlPersistenceUnitDefaults.class deleted file mode 100644 index 7a76f99f..00000000 Binary files a/target/classes/org/hibernate/boot/spi/JpaOrmXmlPersistenceUnitDefaultAware$JpaOrmXmlPersistenceUnitDefaults.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/JpaOrmXmlPersistenceUnitDefaultAware.class b/target/classes/org/hibernate/boot/spi/JpaOrmXmlPersistenceUnitDefaultAware.class deleted file mode 100644 index 4609016e..00000000 Binary files a/target/classes/org/hibernate/boot/spi/JpaOrmXmlPersistenceUnitDefaultAware.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MappingDefaults.class b/target/classes/org/hibernate/boot/spi/MappingDefaults.class deleted file mode 100644 index ae6902b9..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MappingDefaults.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataBuilderFactory.class b/target/classes/org/hibernate/boot/spi/MetadataBuilderFactory.class deleted file mode 100644 index ced8bdd4..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataBuilderFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataBuilderImplementor.class b/target/classes/org/hibernate/boot/spi/MetadataBuilderImplementor.class deleted file mode 100644 index 3afb3524..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataBuilderImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataBuilderInitializer.class b/target/classes/org/hibernate/boot/spi/MetadataBuilderInitializer.class deleted file mode 100644 index 74593245..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataBuilderInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataBuildingContext.class b/target/classes/org/hibernate/boot/spi/MetadataBuildingContext.class deleted file mode 100644 index cb8fbccd..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataBuildingContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataBuildingOptions.class b/target/classes/org/hibernate/boot/spi/MetadataBuildingOptions.class deleted file mode 100644 index fe82946d..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataBuildingOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataContributor.class b/target/classes/org/hibernate/boot/spi/MetadataContributor.class deleted file mode 100644 index ac24359f..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataContributor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataImplementor.class b/target/classes/org/hibernate/boot/spi/MetadataImplementor.class deleted file mode 100644 index b89ed78f..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/MetadataSourcesContributor.class b/target/classes/org/hibernate/boot/spi/MetadataSourcesContributor.class deleted file mode 100644 index 2e6740ef..00000000 Binary files a/target/classes/org/hibernate/boot/spi/MetadataSourcesContributor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/NaturalIdUniqueKeyBinder.class b/target/classes/org/hibernate/boot/spi/NaturalIdUniqueKeyBinder.class deleted file mode 100644 index 857f6c46..00000000 Binary files a/target/classes/org/hibernate/boot/spi/NaturalIdUniqueKeyBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/SessionFactoryBuilderFactory.class b/target/classes/org/hibernate/boot/spi/SessionFactoryBuilderFactory.class deleted file mode 100644 index 4ab2b8e6..00000000 Binary files a/target/classes/org/hibernate/boot/spi/SessionFactoryBuilderFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/SessionFactoryBuilderImplementor.class b/target/classes/org/hibernate/boot/spi/SessionFactoryBuilderImplementor.class deleted file mode 100644 index 1d1dbe05..00000000 Binary files a/target/classes/org/hibernate/boot/spi/SessionFactoryBuilderImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/SessionFactoryOptions.class b/target/classes/org/hibernate/boot/spi/SessionFactoryOptions.class deleted file mode 100644 index 03274eb1..00000000 Binary files a/target/classes/org/hibernate/boot/spi/SessionFactoryOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/boot/spi/XmlMappingBinderAccess.class b/target/classes/org/hibernate/boot/spi/XmlMappingBinderAccess.class deleted file mode 100644 index 1c37a0be..00000000 Binary files a/target/classes/org/hibernate/boot/spi/XmlMappingBinderAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$1.class b/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$1.class deleted file mode 100644 index 5115cc45..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$ObjectAttributeTypeDescriptor.class b/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$ObjectAttributeTypeDescriptor.class deleted file mode 100644 index 83743a81..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$ObjectAttributeTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$PrimitiveAttributeTypeDescriptor.class b/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$PrimitiveAttributeTypeDescriptor.class deleted file mode 100644 index 2d08171d..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor$PrimitiveAttributeTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor.class b/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor.class deleted file mode 100644 index 23dee691..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/AttributeTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/CompositeEnhancer.class b/target/classes/org/hibernate/bytecode/enhance/internal/CompositeEnhancer.class deleted file mode 100644 index 04590dc6..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/CompositeEnhancer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/EntityEnhancer.class b/target/classes/org/hibernate/bytecode/enhance/internal/EntityEnhancer.class deleted file mode 100644 index 62cbb831..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/EntityEnhancer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/FieldWriter.class b/target/classes/org/hibernate/bytecode/enhance/internal/FieldWriter.class deleted file mode 100644 index 9d0b34ff..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/FieldWriter.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/MethodWriter.class b/target/classes/org/hibernate/bytecode/enhance/internal/MethodWriter.class deleted file mode 100644 index 2cd14864..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/MethodWriter.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer$1.class b/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer$1.class deleted file mode 100644 index 563bdd1a..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer$PersistentAttributeAccessMethods.class b/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer$PersistentAttributeAccessMethods.class deleted file mode 100644 index a8f28d8e..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer$PersistentAttributeAccessMethods.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer.class b/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer.class deleted file mode 100644 index 274cac71..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesEnhancer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesHelper.class b/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesHelper.class deleted file mode 100644 index dfd995f3..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/PersistentAttributesHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/CompositeOwnerTracker.class b/target/classes/org/hibernate/bytecode/enhance/internal/tracker/CompositeOwnerTracker.class deleted file mode 100644 index 2803048c..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/CompositeOwnerTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/DirtyTracker.class b/target/classes/org/hibernate/bytecode/enhance/internal/tracker/DirtyTracker.class deleted file mode 100644 index 2d6ff0be..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/DirtyTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SimpleCollectionTracker.class b/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SimpleCollectionTracker.class deleted file mode 100644 index de07c777..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SimpleCollectionTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SimpleFieldTracker.class b/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SimpleFieldTracker.class deleted file mode 100644 index 24b870db..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SimpleFieldTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SortedFieldTracker.class b/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SortedFieldTracker.class deleted file mode 100644 index e6653e16..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/internal/tracker/SortedFieldTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/CollectionTracker.class b/target/classes/org/hibernate/bytecode/enhance/spi/CollectionTracker.class deleted file mode 100644 index 7394abcc..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/CollectionTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/DefaultEnhancementContext.class b/target/classes/org/hibernate/bytecode/enhance/spi/DefaultEnhancementContext.class deleted file mode 100644 index 95edc0fa..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/DefaultEnhancementContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/EnhancementContext.class b/target/classes/org/hibernate/bytecode/enhance/spi/EnhancementContext.class deleted file mode 100644 index 084f147f..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/EnhancementContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/EnhancementException.class b/target/classes/org/hibernate/bytecode/enhance/spi/EnhancementException.class deleted file mode 100644 index 2f6f952c..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/EnhancementException.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/Enhancer$1.class b/target/classes/org/hibernate/bytecode/enhance/spi/Enhancer$1.class deleted file mode 100644 index bc655ee5..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/Enhancer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/Enhancer.class b/target/classes/org/hibernate/bytecode/enhance/spi/Enhancer.class deleted file mode 100644 index eaceb07e..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/Enhancer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/EnhancerConstants.class b/target/classes/org/hibernate/bytecode/enhance/spi/EnhancerConstants.class deleted file mode 100644 index 34327621..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/EnhancerConstants.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer$1.class b/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer$1.class deleted file mode 100644 index e0ddb799..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer$InterceptorImplementor.class b/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer$InterceptorImplementor.class deleted file mode 100644 index 01bfe884..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer$InterceptorImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer.class b/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer.class deleted file mode 100644 index 3c01ead7..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/LazyPropertyInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$1.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$1.class deleted file mode 100644 index 26d8596c..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$Cause.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$Cause.class deleted file mode 100644 index bf5f0465..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$Cause.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$Consumer.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$Consumer.class deleted file mode 100644 index 0f645577..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$Consumer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$LazyInitializationWork.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$LazyInitializationWork.class deleted file mode 100644 index 4339110b..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper$LazyInitializationWork.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper.class deleted file mode 100644 index 3e3addc9..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeDescriptor.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeDescriptor.class deleted file mode 100644 index d8d6862f..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeLoadingInterceptor$1.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeLoadingInterceptor$1.class deleted file mode 100644 index 0be4a3c4..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeLoadingInterceptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeLoadingInterceptor.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeLoadingInterceptor.class deleted file mode 100644 index a66f18f6..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributeLoadingInterceptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributesMetadata.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributesMetadata.class deleted file mode 100644 index ea5093a8..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyAttributesMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyFetchGroupMetadata.class b/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyFetchGroupMetadata.class deleted file mode 100644 index 0bba422b..00000000 Binary files a/target/classes/org/hibernate/bytecode/enhance/spi/interceptor/LazyFetchGroupMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/AccessOptimizerAdapter.class b/target/classes/org/hibernate/bytecode/internal/javassist/AccessOptimizerAdapter.class deleted file mode 100644 index 66121179..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/AccessOptimizerAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessor.class b/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessor.class deleted file mode 100644 index 61bd27cd..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessorException.class b/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessorException.class deleted file mode 100644 index a83bd571..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessorException.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessorFactory.class b/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessorFactory.class deleted file mode 100644 index 24ecd042..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/BulkAccessorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/BytecodeProviderImpl.class b/target/classes/org/hibernate/bytecode/internal/javassist/BytecodeProviderImpl.class deleted file mode 100644 index 5ead7cb0..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/BytecodeProviderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/FastClass.class b/target/classes/org/hibernate/bytecode/internal/javassist/FastClass.class deleted file mode 100644 index 1c1f3574..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/FastClass.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/InstantiationOptimizerAdapter.class b/target/classes/org/hibernate/bytecode/internal/javassist/InstantiationOptimizerAdapter.class deleted file mode 100644 index c5cd0ec0..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/InstantiationOptimizerAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$1.class b/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$1.class deleted file mode 100644 index 0684d7ff..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$BasicProxyFactoryImpl.class b/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$BasicProxyFactoryImpl.class deleted file mode 100644 index 1b0decbe..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$BasicProxyFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$PassThroughHandler.class b/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$PassThroughHandler.class deleted file mode 100644 index ed19bdb7..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl$PassThroughHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl.class b/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl.class deleted file mode 100644 index 153b0b60..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/ProxyFactoryFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/internal/javassist/ReflectionOptimizerImpl.class b/target/classes/org/hibernate/bytecode/internal/javassist/ReflectionOptimizerImpl.class deleted file mode 100644 index b9f1432d..00000000 Binary files a/target/classes/org/hibernate/bytecode/internal/javassist/ReflectionOptimizerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/BasicProxyFactory.class b/target/classes/org/hibernate/bytecode/spi/BasicProxyFactory.class deleted file mode 100644 index be58d533..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/BasicProxyFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/ByteCodeHelper.class b/target/classes/org/hibernate/bytecode/spi/ByteCodeHelper.class deleted file mode 100644 index 86bdc9ac..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/ByteCodeHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/BytecodeEnhancementMetadata.class b/target/classes/org/hibernate/bytecode/spi/BytecodeEnhancementMetadata.class deleted file mode 100644 index 153349f5..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/BytecodeEnhancementMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/BytecodeProvider.class b/target/classes/org/hibernate/bytecode/spi/BytecodeProvider.class deleted file mode 100644 index 98c1e2e1..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/BytecodeProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/ClassTransformer.class b/target/classes/org/hibernate/bytecode/spi/ClassTransformer.class deleted file mode 100644 index 0ed8e7c3..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/ClassTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/InstrumentedClassLoader.class b/target/classes/org/hibernate/bytecode/spi/InstrumentedClassLoader.class deleted file mode 100644 index 8f19474f..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/InstrumentedClassLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/NotInstrumentedException.class b/target/classes/org/hibernate/bytecode/spi/NotInstrumentedException.class deleted file mode 100644 index d0d0a6ce..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/NotInstrumentedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/ProxyFactoryFactory.class b/target/classes/org/hibernate/bytecode/spi/ProxyFactoryFactory.class deleted file mode 100644 index f372f271..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/ProxyFactoryFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer$AccessOptimizer.class b/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer$AccessOptimizer.class deleted file mode 100644 index cc0605b6..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer$AccessOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer$InstantiationOptimizer.class b/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer$InstantiationOptimizer.class deleted file mode 100644 index 639e1ae5..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer$InstantiationOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer.class b/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer.class deleted file mode 100644 index 924c6877..00000000 Binary files a/target/classes/org/hibernate/bytecode/spi/ReflectionOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/CacheException.class b/target/classes/org/hibernate/cache/CacheException.class deleted file mode 100644 index 4bedb5fb..00000000 Binary files a/target/classes/org/hibernate/cache/CacheException.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/NoCacheRegionFactoryAvailableException.class b/target/classes/org/hibernate/cache/NoCacheRegionFactoryAvailableException.class deleted file mode 100644 index 08c2d4f6..00000000 Binary files a/target/classes/org/hibernate/cache/NoCacheRegionFactoryAvailableException.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/RegionFactory.class b/target/classes/org/hibernate/cache/RegionFactory.class deleted file mode 100644 index 64da1c22..00000000 Binary files a/target/classes/org/hibernate/cache/RegionFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/CacheDataDescriptionImpl.class b/target/classes/org/hibernate/cache/internal/CacheDataDescriptionImpl.class deleted file mode 100644 index d5d1de5d..00000000 Binary files a/target/classes/org/hibernate/cache/internal/CacheDataDescriptionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator$1.class b/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator$1.class deleted file mode 100644 index 8fe8eb6b..00000000 Binary files a/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator$CollectionEvictCacheAction.class b/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator$CollectionEvictCacheAction.class deleted file mode 100644 index 11a6229b..00000000 Binary files a/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator$CollectionEvictCacheAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator.class b/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator.class deleted file mode 100644 index 98d50242..00000000 Binary files a/target/classes/org/hibernate/cache/internal/CollectionCacheInvalidator.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/DefaultCacheKeysFactory$1.class b/target/classes/org/hibernate/cache/internal/DefaultCacheKeysFactory$1.class deleted file mode 100644 index 7ac9f509..00000000 Binary files a/target/classes/org/hibernate/cache/internal/DefaultCacheKeysFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/DefaultCacheKeysFactory.class b/target/classes/org/hibernate/cache/internal/DefaultCacheKeysFactory.class deleted file mode 100644 index 8bd85d05..00000000 Binary files a/target/classes/org/hibernate/cache/internal/DefaultCacheKeysFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/NoCachingRegionFactory.class b/target/classes/org/hibernate/cache/internal/NoCachingRegionFactory.class deleted file mode 100644 index 556e1727..00000000 Binary files a/target/classes/org/hibernate/cache/internal/NoCachingRegionFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/OldCacheKeyImplementation.class b/target/classes/org/hibernate/cache/internal/OldCacheKeyImplementation.class deleted file mode 100644 index 3c143a50..00000000 Binary files a/target/classes/org/hibernate/cache/internal/OldCacheKeyImplementation.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/OldNaturalIdCacheKey$1.class b/target/classes/org/hibernate/cache/internal/OldNaturalIdCacheKey$1.class deleted file mode 100644 index bb5ff7e6..00000000 Binary files a/target/classes/org/hibernate/cache/internal/OldNaturalIdCacheKey$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/OldNaturalIdCacheKey.class b/target/classes/org/hibernate/cache/internal/OldNaturalIdCacheKey.class deleted file mode 100644 index 9ed860b9..00000000 Binary files a/target/classes/org/hibernate/cache/internal/OldNaturalIdCacheKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/RegionFactoryInitiator.class b/target/classes/org/hibernate/cache/internal/RegionFactoryInitiator.class deleted file mode 100644 index ac2768ed..00000000 Binary files a/target/classes/org/hibernate/cache/internal/RegionFactoryInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/SimpleCacheKeysFactory.class b/target/classes/org/hibernate/cache/internal/SimpleCacheKeysFactory.class deleted file mode 100644 index d76cd707..00000000 Binary files a/target/classes/org/hibernate/cache/internal/SimpleCacheKeysFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/StandardQueryCache.class b/target/classes/org/hibernate/cache/internal/StandardQueryCache.class deleted file mode 100644 index 3995d56e..00000000 Binary files a/target/classes/org/hibernate/cache/internal/StandardQueryCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/internal/StandardQueryCacheFactory.class b/target/classes/org/hibernate/cache/internal/StandardQueryCacheFactory.class deleted file mode 100644 index 8e957083..00000000 Binary files a/target/classes/org/hibernate/cache/internal/StandardQueryCacheFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/CacheDataDescription.class b/target/classes/org/hibernate/cache/spi/CacheDataDescription.class deleted file mode 100644 index f450e931..00000000 Binary files a/target/classes/org/hibernate/cache/spi/CacheDataDescription.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/CacheKeysFactory.class b/target/classes/org/hibernate/cache/spi/CacheKeysFactory.class deleted file mode 100644 index 5e31ab41..00000000 Binary files a/target/classes/org/hibernate/cache/spi/CacheKeysFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/CollectionRegion.class b/target/classes/org/hibernate/cache/spi/CollectionRegion.class deleted file mode 100644 index 9c7e4d76..00000000 Binary files a/target/classes/org/hibernate/cache/spi/CollectionRegion.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/EntityRegion.class b/target/classes/org/hibernate/cache/spi/EntityRegion.class deleted file mode 100644 index 9d4bd8e8..00000000 Binary files a/target/classes/org/hibernate/cache/spi/EntityRegion.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/FilterKey.class b/target/classes/org/hibernate/cache/spi/FilterKey.class deleted file mode 100644 index ea84e384..00000000 Binary files a/target/classes/org/hibernate/cache/spi/FilterKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/GeneralDataRegion.class b/target/classes/org/hibernate/cache/spi/GeneralDataRegion.class deleted file mode 100644 index 0363fec4..00000000 Binary files a/target/classes/org/hibernate/cache/spi/GeneralDataRegion.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/NaturalIdRegion.class b/target/classes/org/hibernate/cache/spi/NaturalIdRegion.class deleted file mode 100644 index f5f273c8..00000000 Binary files a/target/classes/org/hibernate/cache/spi/NaturalIdRegion.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/OptimisticCacheSource.class b/target/classes/org/hibernate/cache/spi/OptimisticCacheSource.class deleted file mode 100644 index b165da38..00000000 Binary files a/target/classes/org/hibernate/cache/spi/OptimisticCacheSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/QueryCache.class b/target/classes/org/hibernate/cache/spi/QueryCache.class deleted file mode 100644 index 0b76cf33..00000000 Binary files a/target/classes/org/hibernate/cache/spi/QueryCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/QueryCacheFactory.class b/target/classes/org/hibernate/cache/spi/QueryCacheFactory.class deleted file mode 100644 index 60bb78d7..00000000 Binary files a/target/classes/org/hibernate/cache/spi/QueryCacheFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/QueryKey.class b/target/classes/org/hibernate/cache/spi/QueryKey.class deleted file mode 100644 index 7133b7b2..00000000 Binary files a/target/classes/org/hibernate/cache/spi/QueryKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/QueryResultsRegion.class b/target/classes/org/hibernate/cache/spi/QueryResultsRegion.class deleted file mode 100644 index ed959028..00000000 Binary files a/target/classes/org/hibernate/cache/spi/QueryResultsRegion.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/Region.class b/target/classes/org/hibernate/cache/spi/Region.class deleted file mode 100644 index 4bf22b8e..00000000 Binary files a/target/classes/org/hibernate/cache/spi/Region.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/RegionFactory.class b/target/classes/org/hibernate/cache/spi/RegionFactory.class deleted file mode 100644 index 05387434..00000000 Binary files a/target/classes/org/hibernate/cache/spi/RegionFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/TimestampsRegion.class b/target/classes/org/hibernate/cache/spi/TimestampsRegion.class deleted file mode 100644 index 1fad227e..00000000 Binary files a/target/classes/org/hibernate/cache/spi/TimestampsRegion.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/TransactionAwareCache.class b/target/classes/org/hibernate/cache/spi/TransactionAwareCache.class deleted file mode 100644 index d493e76f..00000000 Binary files a/target/classes/org/hibernate/cache/spi/TransactionAwareCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/TransactionalDataRegion.class b/target/classes/org/hibernate/cache/spi/TransactionalDataRegion.class deleted file mode 100644 index fa8d4aaf..00000000 Binary files a/target/classes/org/hibernate/cache/spi/TransactionalDataRegion.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/UpdateTimestampsCache.class b/target/classes/org/hibernate/cache/spi/UpdateTimestampsCache.class deleted file mode 100644 index 6e71d884..00000000 Binary files a/target/classes/org/hibernate/cache/spi/UpdateTimestampsCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/access/AccessType.class b/target/classes/org/hibernate/cache/spi/access/AccessType.class deleted file mode 100644 index a952b052..00000000 Binary files a/target/classes/org/hibernate/cache/spi/access/AccessType.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/access/CollectionRegionAccessStrategy.class b/target/classes/org/hibernate/cache/spi/access/CollectionRegionAccessStrategy.class deleted file mode 100644 index e0b8f469..00000000 Binary files a/target/classes/org/hibernate/cache/spi/access/CollectionRegionAccessStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/access/EntityRegionAccessStrategy.class b/target/classes/org/hibernate/cache/spi/access/EntityRegionAccessStrategy.class deleted file mode 100644 index 0ebbf97b..00000000 Binary files a/target/classes/org/hibernate/cache/spi/access/EntityRegionAccessStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/access/NaturalIdRegionAccessStrategy.class b/target/classes/org/hibernate/cache/spi/access/NaturalIdRegionAccessStrategy.class deleted file mode 100644 index d33ad42f..00000000 Binary files a/target/classes/org/hibernate/cache/spi/access/NaturalIdRegionAccessStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/access/RegionAccessStrategy.class b/target/classes/org/hibernate/cache/spi/access/RegionAccessStrategy.class deleted file mode 100644 index 445cf340..00000000 Binary files a/target/classes/org/hibernate/cache/spi/access/RegionAccessStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/access/SoftLock.class b/target/classes/org/hibernate/cache/spi/access/SoftLock.class deleted file mode 100644 index 50021bd1..00000000 Binary files a/target/classes/org/hibernate/cache/spi/access/SoftLock.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/access/UnknownAccessTypeException.class b/target/classes/org/hibernate/cache/spi/access/UnknownAccessTypeException.class deleted file mode 100644 index 780ccbf0..00000000 Binary files a/target/classes/org/hibernate/cache/spi/access/UnknownAccessTypeException.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/CacheEntry.class b/target/classes/org/hibernate/cache/spi/entry/CacheEntry.class deleted file mode 100644 index aee14f8b..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/CacheEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/CacheEntryStructure.class b/target/classes/org/hibernate/cache/spi/entry/CacheEntryStructure.class deleted file mode 100644 index 36118343..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/CacheEntryStructure.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/CollectionCacheEntry.class b/target/classes/org/hibernate/cache/spi/entry/CollectionCacheEntry.class deleted file mode 100644 index d3902f76..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/CollectionCacheEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/ReferenceCacheEntryImpl.class b/target/classes/org/hibernate/cache/spi/entry/ReferenceCacheEntryImpl.class deleted file mode 100644 index 879dba61..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/ReferenceCacheEntryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/StandardCacheEntryImpl.class b/target/classes/org/hibernate/cache/spi/entry/StandardCacheEntryImpl.class deleted file mode 100644 index a123b6d2..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/StandardCacheEntryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/StructuredCacheEntry.class b/target/classes/org/hibernate/cache/spi/entry/StructuredCacheEntry.class deleted file mode 100644 index add92fb2..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/StructuredCacheEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/StructuredCollectionCacheEntry.class b/target/classes/org/hibernate/cache/spi/entry/StructuredCollectionCacheEntry.class deleted file mode 100644 index 04b2759c..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/StructuredCollectionCacheEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/StructuredMapCacheEntry.class b/target/classes/org/hibernate/cache/spi/entry/StructuredMapCacheEntry.class deleted file mode 100644 index 8366240f..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/StructuredMapCacheEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/cache/spi/entry/UnstructuredCacheEntry.class b/target/classes/org/hibernate/cache/spi/entry/UnstructuredCacheEntry.class deleted file mode 100644 index 0d3513b8..00000000 Binary files a/target/classes/org/hibernate/cache/spi/entry/UnstructuredCacheEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AbstractPropertyHolder.class b/target/classes/org/hibernate/cfg/AbstractPropertyHolder.class deleted file mode 100644 index 84dea549..00000000 Binary files a/target/classes/org/hibernate/cfg/AbstractPropertyHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AccessType.class b/target/classes/org/hibernate/cfg/AccessType.class deleted file mode 100644 index e92d71fb..00000000 Binary files a/target/classes/org/hibernate/cfg/AccessType.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AnnotatedClassType.class b/target/classes/org/hibernate/cfg/AnnotatedClassType.class deleted file mode 100644 index 8e00b6ca..00000000 Binary files a/target/classes/org/hibernate/cfg/AnnotatedClassType.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AnnotationBinder$1.class b/target/classes/org/hibernate/cfg/AnnotationBinder$1.class deleted file mode 100644 index 186ff9bf..00000000 Binary files a/target/classes/org/hibernate/cfg/AnnotationBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AnnotationBinder$2.class b/target/classes/org/hibernate/cfg/AnnotationBinder$2.class deleted file mode 100644 index acf135d4..00000000 Binary files a/target/classes/org/hibernate/cfg/AnnotationBinder$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AnnotationBinder$LocalCacheAnnotationImpl.class b/target/classes/org/hibernate/cfg/AnnotationBinder$LocalCacheAnnotationImpl.class deleted file mode 100644 index e78b9166..00000000 Binary files a/target/classes/org/hibernate/cfg/AnnotationBinder$LocalCacheAnnotationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AnnotationBinder.class b/target/classes/org/hibernate/cfg/AnnotationBinder.class deleted file mode 100644 index 92a2ec66..00000000 Binary files a/target/classes/org/hibernate/cfg/AnnotationBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AttributeConversionInfo.class b/target/classes/org/hibernate/cfg/AttributeConversionInfo.class deleted file mode 100644 index 7840591d..00000000 Binary files a/target/classes/org/hibernate/cfg/AttributeConversionInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AttributeConverterDefinition$1.class b/target/classes/org/hibernate/cfg/AttributeConverterDefinition$1.class deleted file mode 100644 index d9656dff..00000000 Binary files a/target/classes/org/hibernate/cfg/AttributeConverterDefinition$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AttributeConverterDefinition.class b/target/classes/org/hibernate/cfg/AttributeConverterDefinition.class deleted file mode 100644 index 94dbb085..00000000 Binary files a/target/classes/org/hibernate/cfg/AttributeConverterDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/AvailableSettings.class b/target/classes/org/hibernate/cfg/AvailableSettings.class deleted file mode 100644 index 271ec683..00000000 Binary files a/target/classes/org/hibernate/cfg/AvailableSettings.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/BaselineSessionEventsListenerBuilder.class b/target/classes/org/hibernate/cfg/BaselineSessionEventsListenerBuilder.class deleted file mode 100644 index a5ddfb34..00000000 Binary files a/target/classes/org/hibernate/cfg/BaselineSessionEventsListenerBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/BinderHelper.class b/target/classes/org/hibernate/cfg/BinderHelper.class deleted file mode 100644 index 80359c55..00000000 Binary files a/target/classes/org/hibernate/cfg/BinderHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/CannotForceNonNullableException.class b/target/classes/org/hibernate/cfg/CannotForceNonNullableException.class deleted file mode 100644 index 9c570afa..00000000 Binary files a/target/classes/org/hibernate/cfg/CannotForceNonNullableException.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ClassPropertyHolder.class b/target/classes/org/hibernate/cfg/ClassPropertyHolder.class deleted file mode 100644 index 19016619..00000000 Binary files a/target/classes/org/hibernate/cfg/ClassPropertyHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/CollectionPropertyHolder.class b/target/classes/org/hibernate/cfg/CollectionPropertyHolder.class deleted file mode 100644 index 43d8409f..00000000 Binary files a/target/classes/org/hibernate/cfg/CollectionPropertyHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/CollectionSecondPass.class b/target/classes/org/hibernate/cfg/CollectionSecondPass.class deleted file mode 100644 index e0fc62a5..00000000 Binary files a/target/classes/org/hibernate/cfg/CollectionSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ColumnsBuilder.class b/target/classes/org/hibernate/cfg/ColumnsBuilder.class deleted file mode 100644 index 4dd09558..00000000 Binary files a/target/classes/org/hibernate/cfg/ColumnsBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ComponentPropertyHolder.class b/target/classes/org/hibernate/cfg/ComponentPropertyHolder.class deleted file mode 100644 index 2e8aa870..00000000 Binary files a/target/classes/org/hibernate/cfg/ComponentPropertyHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Configuration.class b/target/classes/org/hibernate/cfg/Configuration.class deleted file mode 100644 index 5401cc8a..00000000 Binary files a/target/classes/org/hibernate/cfg/Configuration.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/CopyIdentifierComponentSecondPass.class b/target/classes/org/hibernate/cfg/CopyIdentifierComponentSecondPass.class deleted file mode 100644 index 6259d816..00000000 Binary files a/target/classes/org/hibernate/cfg/CopyIdentifierComponentSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/CreateKeySecondPass.class b/target/classes/org/hibernate/cfg/CreateKeySecondPass.class deleted file mode 100644 index 61df1108..00000000 Binary files a/target/classes/org/hibernate/cfg/CreateKeySecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/DefaultComponentSafeNamingStrategy.class b/target/classes/org/hibernate/cfg/DefaultComponentSafeNamingStrategy.class deleted file mode 100644 index be861da3..00000000 Binary files a/target/classes/org/hibernate/cfg/DefaultComponentSafeNamingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/DefaultNamingStrategy.class b/target/classes/org/hibernate/cfg/DefaultNamingStrategy.class deleted file mode 100644 index 5b7a75da..00000000 Binary files a/target/classes/org/hibernate/cfg/DefaultNamingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/EJB3DTDEntityResolver.class b/target/classes/org/hibernate/cfg/EJB3DTDEntityResolver.class deleted file mode 100644 index cf23a7e1..00000000 Binary files a/target/classes/org/hibernate/cfg/EJB3DTDEntityResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/EJB3NamingStrategy.class b/target/classes/org/hibernate/cfg/EJB3NamingStrategy.class deleted file mode 100644 index 746eafed..00000000 Binary files a/target/classes/org/hibernate/cfg/EJB3NamingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3Column$1.class b/target/classes/org/hibernate/cfg/Ejb3Column$1.class deleted file mode 100644 index 39448edd..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3Column$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3Column$2.class b/target/classes/org/hibernate/cfg/Ejb3Column$2.class deleted file mode 100644 index 82cbc6d7..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3Column$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3Column.class b/target/classes/org/hibernate/cfg/Ejb3Column.class deleted file mode 100644 index eb61fb5c..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3Column.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3DiscriminatorColumn.class b/target/classes/org/hibernate/cfg/Ejb3DiscriminatorColumn.class deleted file mode 100644 index cd1d980d..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3DiscriminatorColumn.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$1$1.class b/target/classes/org/hibernate/cfg/Ejb3JoinColumn$1$1.class deleted file mode 100644 index b946538c..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$1.class b/target/classes/org/hibernate/cfg/Ejb3JoinColumn$1.class deleted file mode 100644 index 8a60af1b..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$2$1.class b/target/classes/org/hibernate/cfg/Ejb3JoinColumn$2$1.class deleted file mode 100644 index 199eb5dd..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$2.class b/target/classes/org/hibernate/cfg/Ejb3JoinColumn$2.class deleted file mode 100644 index 629a6b60..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$3.class b/target/classes/org/hibernate/cfg/Ejb3JoinColumn$3.class deleted file mode 100644 index 6ef6c089..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3JoinColumn$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Ejb3JoinColumn.class b/target/classes/org/hibernate/cfg/Ejb3JoinColumn.class deleted file mode 100644 index e51260ce..00000000 Binary files a/target/classes/org/hibernate/cfg/Ejb3JoinColumn.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Environment.class b/target/classes/org/hibernate/cfg/Environment.class deleted file mode 100644 index 160e35d9..00000000 Binary files a/target/classes/org/hibernate/cfg/Environment.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ExtendsQueueEntry.class b/target/classes/org/hibernate/cfg/ExtendsQueueEntry.class deleted file mode 100644 index b4a97fe6..00000000 Binary files a/target/classes/org/hibernate/cfg/ExtendsQueueEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ExternalSessionFactoryConfig.class b/target/classes/org/hibernate/cfg/ExternalSessionFactoryConfig.class deleted file mode 100644 index 4b9149e3..00000000 Binary files a/target/classes/org/hibernate/cfg/ExternalSessionFactoryConfig.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/FkSecondPass.class b/target/classes/org/hibernate/cfg/FkSecondPass.class deleted file mode 100644 index 2b307581..00000000 Binary files a/target/classes/org/hibernate/cfg/FkSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ImprovedNamingStrategy.class b/target/classes/org/hibernate/cfg/ImprovedNamingStrategy.class deleted file mode 100644 index 54bf17ab..00000000 Binary files a/target/classes/org/hibernate/cfg/ImprovedNamingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/IndexColumn.class b/target/classes/org/hibernate/cfg/IndexColumn.class deleted file mode 100644 index 19e6fa0a..00000000 Binary files a/target/classes/org/hibernate/cfg/IndexColumn.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/IndexOrUniqueKeySecondPass.class b/target/classes/org/hibernate/cfg/IndexOrUniqueKeySecondPass.class deleted file mode 100644 index 77750473..00000000 Binary files a/target/classes/org/hibernate/cfg/IndexOrUniqueKeySecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/InheritanceState$1.class b/target/classes/org/hibernate/cfg/InheritanceState$1.class deleted file mode 100644 index 1dfa8ecf..00000000 Binary files a/target/classes/org/hibernate/cfg/InheritanceState$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/InheritanceState$ElementsToProcess.class b/target/classes/org/hibernate/cfg/InheritanceState$ElementsToProcess.class deleted file mode 100644 index 367b1b5d..00000000 Binary files a/target/classes/org/hibernate/cfg/InheritanceState$ElementsToProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/InheritanceState.class b/target/classes/org/hibernate/cfg/InheritanceState.class deleted file mode 100644 index d23f2c4b..00000000 Binary files a/target/classes/org/hibernate/cfg/InheritanceState.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/JPAIndexHolder.class b/target/classes/org/hibernate/cfg/JPAIndexHolder.class deleted file mode 100644 index b7a0e5e0..00000000 Binary files a/target/classes/org/hibernate/cfg/JPAIndexHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/JoinedSubclassFkSecondPass.class b/target/classes/org/hibernate/cfg/JoinedSubclassFkSecondPass.class deleted file mode 100644 index fb562bce..00000000 Binary files a/target/classes/org/hibernate/cfg/JoinedSubclassFkSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/MetadataSourceType.class b/target/classes/org/hibernate/cfg/MetadataSourceType.class deleted file mode 100644 index 1baa5e5a..00000000 Binary files a/target/classes/org/hibernate/cfg/MetadataSourceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/NamingStrategy.class b/target/classes/org/hibernate/cfg/NamingStrategy.class deleted file mode 100644 index e634c5a5..00000000 Binary files a/target/classes/org/hibernate/cfg/NamingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/NotYetImplementedException.class b/target/classes/org/hibernate/cfg/NotYetImplementedException.class deleted file mode 100644 index f07e82fd..00000000 Binary files a/target/classes/org/hibernate/cfg/NotYetImplementedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ObjectNameSource.class b/target/classes/org/hibernate/cfg/ObjectNameSource.class deleted file mode 100644 index e209aead..00000000 Binary files a/target/classes/org/hibernate/cfg/ObjectNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/OneToOneSecondPass.class b/target/classes/org/hibernate/cfg/OneToOneSecondPass.class deleted file mode 100644 index 88cd3445..00000000 Binary files a/target/classes/org/hibernate/cfg/OneToOneSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/PkDrivenByDefaultMapsIdSecondPass.class b/target/classes/org/hibernate/cfg/PkDrivenByDefaultMapsIdSecondPass.class deleted file mode 100644 index 4b7012f3..00000000 Binary files a/target/classes/org/hibernate/cfg/PkDrivenByDefaultMapsIdSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/PropertyContainer.class b/target/classes/org/hibernate/cfg/PropertyContainer.class deleted file mode 100644 index 986bd162..00000000 Binary files a/target/classes/org/hibernate/cfg/PropertyContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/PropertyData.class b/target/classes/org/hibernate/cfg/PropertyData.class deleted file mode 100644 index 03e332cd..00000000 Binary files a/target/classes/org/hibernate/cfg/PropertyData.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/PropertyHolder.class b/target/classes/org/hibernate/cfg/PropertyHolder.class deleted file mode 100644 index 15f0d5d9..00000000 Binary files a/target/classes/org/hibernate/cfg/PropertyHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/PropertyHolderBuilder.class b/target/classes/org/hibernate/cfg/PropertyHolderBuilder.class deleted file mode 100644 index d30e2572..00000000 Binary files a/target/classes/org/hibernate/cfg/PropertyHolderBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/PropertyInferredData.class b/target/classes/org/hibernate/cfg/PropertyInferredData.class deleted file mode 100644 index f0cee107..00000000 Binary files a/target/classes/org/hibernate/cfg/PropertyInferredData.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/PropertyPreloadedData.class b/target/classes/org/hibernate/cfg/PropertyPreloadedData.class deleted file mode 100644 index 150cb3d6..00000000 Binary files a/target/classes/org/hibernate/cfg/PropertyPreloadedData.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/QuerySecondPass.class b/target/classes/org/hibernate/cfg/QuerySecondPass.class deleted file mode 100644 index 361566fa..00000000 Binary files a/target/classes/org/hibernate/cfg/QuerySecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/RecoverableException.class b/target/classes/org/hibernate/cfg/RecoverableException.class deleted file mode 100644 index bc7da696..00000000 Binary files a/target/classes/org/hibernate/cfg/RecoverableException.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/SecondPass.class b/target/classes/org/hibernate/cfg/SecondPass.class deleted file mode 100644 index d22eaf7e..00000000 Binary files a/target/classes/org/hibernate/cfg/SecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/SecondaryTableSecondPass.class b/target/classes/org/hibernate/cfg/SecondaryTableSecondPass.class deleted file mode 100644 index b1cb2d6c..00000000 Binary files a/target/classes/org/hibernate/cfg/SecondaryTableSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/SetSimpleValueTypeSecondPass.class b/target/classes/org/hibernate/cfg/SetSimpleValueTypeSecondPass.class deleted file mode 100644 index a97e0c34..00000000 Binary files a/target/classes/org/hibernate/cfg/SetSimpleValueTypeSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/Settings.class b/target/classes/org/hibernate/cfg/Settings.class deleted file mode 100644 index fbc47534..00000000 Binary files a/target/classes/org/hibernate/cfg/Settings.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ToOneBinder.class b/target/classes/org/hibernate/cfg/ToOneBinder.class deleted file mode 100644 index c9255c5c..00000000 Binary files a/target/classes/org/hibernate/cfg/ToOneBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/ToOneFkSecondPass.class b/target/classes/org/hibernate/cfg/ToOneFkSecondPass.class deleted file mode 100644 index 7aa9980a..00000000 Binary files a/target/classes/org/hibernate/cfg/ToOneFkSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/UniqueConstraintHolder.class b/target/classes/org/hibernate/cfg/UniqueConstraintHolder.class deleted file mode 100644 index 91efaaec..00000000 Binary files a/target/classes/org/hibernate/cfg/UniqueConstraintHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/VerifyFetchProfileReferenceSecondPass.class b/target/classes/org/hibernate/cfg/VerifyFetchProfileReferenceSecondPass.class deleted file mode 100644 index a71484cf..00000000 Binary files a/target/classes/org/hibernate/cfg/VerifyFetchProfileReferenceSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/WrappedInferredData.class b/target/classes/org/hibernate/cfg/WrappedInferredData.class deleted file mode 100644 index 622271c5..00000000 Binary files a/target/classes/org/hibernate/cfg/WrappedInferredData.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/ArrayBinder.class b/target/classes/org/hibernate/cfg/annotations/ArrayBinder.class deleted file mode 100644 index 6b81385c..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/ArrayBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/BagBinder.class b/target/classes/org/hibernate/cfg/annotations/BagBinder.class deleted file mode 100644 index 80ed35bb..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/BagBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/CollectionBinder$1.class b/target/classes/org/hibernate/cfg/annotations/CollectionBinder$1.class deleted file mode 100644 index 21c2e792..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/CollectionBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/CollectionBinder.class b/target/classes/org/hibernate/cfg/annotations/CollectionBinder.class deleted file mode 100644 index 67969d5c..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/CollectionBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/CustomizableColumns.class b/target/classes/org/hibernate/cfg/annotations/CustomizableColumns.class deleted file mode 100644 index 9da5526f..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/CustomizableColumns.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder$1.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder$1.class deleted file mode 100644 index 9fdc6496..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper$1$1.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper$1$1.class deleted file mode 100644 index 5775930d..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper$1.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper$1.class deleted file mode 100644 index 3b3126fc..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper.class deleted file mode 100644 index a52a73bc..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableNamingStrategyHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableObjectNameSource.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableObjectNameSource.class deleted file mode 100644 index 36b47eff..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder$EntityTableObjectNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder$SecondaryTableNameSource.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder$SecondaryTableNameSource.class deleted file mode 100644 index 9a86f313..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder$SecondaryTableNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder$SecondaryTableNamingStrategyHelper.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder$SecondaryTableNamingStrategyHelper.class deleted file mode 100644 index 6ec954dc..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder$SecondaryTableNamingStrategyHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/EntityBinder.class b/target/classes/org/hibernate/cfg/annotations/EntityBinder.class deleted file mode 100644 index 5fbe5e58..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/EntityBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/HCANNHelper.class b/target/classes/org/hibernate/cfg/annotations/HCANNHelper.class deleted file mode 100644 index f5152f67..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/HCANNHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/IdBagBinder.class b/target/classes/org/hibernate/cfg/annotations/IdBagBinder.class deleted file mode 100644 index aa64bc1c..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/IdBagBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/ListBinder$1.class b/target/classes/org/hibernate/cfg/annotations/ListBinder$1.class deleted file mode 100644 index 63256ad4..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/ListBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/ListBinder.class b/target/classes/org/hibernate/cfg/annotations/ListBinder.class deleted file mode 100644 index 0d1368b0..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/ListBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/MapBinder$1.class b/target/classes/org/hibernate/cfg/annotations/MapBinder$1.class deleted file mode 100644 index fa7bbfd0..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/MapBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/MapBinder.class b/target/classes/org/hibernate/cfg/annotations/MapBinder.class deleted file mode 100644 index 34721765..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/MapBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/MapKeyColumnDelegator.class b/target/classes/org/hibernate/cfg/annotations/MapKeyColumnDelegator.class deleted file mode 100644 index 182f7a0f..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/MapKeyColumnDelegator.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/MapKeyJoinColumnDelegator.class b/target/classes/org/hibernate/cfg/annotations/MapKeyJoinColumnDelegator.class deleted file mode 100644 index 5805a1a6..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/MapKeyJoinColumnDelegator.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/NamedEntityGraphDefinition.class b/target/classes/org/hibernate/cfg/annotations/NamedEntityGraphDefinition.class deleted file mode 100644 index f2c86a3f..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/NamedEntityGraphDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$1.class b/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$1.class deleted file mode 100644 index 165d2de8..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$2.class b/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$2.class deleted file mode 100644 index 1807e116..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$ParameterDefinition.class b/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$ParameterDefinition.class deleted file mode 100644 index 9cf5df08..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$ParameterDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$ParameterDefinitions.class b/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$ParameterDefinitions.class deleted file mode 100644 index 53d2d1db..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition$ParameterDefinitions.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition.class b/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition.class deleted file mode 100644 index a7bf2b94..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/NamedProcedureCallDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/Nullability.class b/target/classes/org/hibernate/cfg/annotations/Nullability.class deleted file mode 100644 index 226eb734..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/Nullability.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/PrimitiveArrayBinder.class b/target/classes/org/hibernate/cfg/annotations/PrimitiveArrayBinder.class deleted file mode 100644 index b2f0e3ef..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/PrimitiveArrayBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/PropertyBinder$NoValueGeneration.class b/target/classes/org/hibernate/cfg/annotations/PropertyBinder$NoValueGeneration.class deleted file mode 100644 index e3a04d88..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/PropertyBinder$NoValueGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/PropertyBinder.class b/target/classes/org/hibernate/cfg/annotations/PropertyBinder.class deleted file mode 100644 index 5ebcfad4..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/PropertyBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/QueryBinder$1.class b/target/classes/org/hibernate/cfg/annotations/QueryBinder$1.class deleted file mode 100644 index fe917c87..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/QueryBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/QueryBinder.class b/target/classes/org/hibernate/cfg/annotations/QueryBinder.class deleted file mode 100644 index 2e178a3c..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/QueryBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/QueryHintDefinition.class b/target/classes/org/hibernate/cfg/annotations/QueryHintDefinition.class deleted file mode 100644 index b2a25356..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/QueryHintDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/ResultsetMappingSecondPass.class b/target/classes/org/hibernate/cfg/annotations/ResultsetMappingSecondPass.class deleted file mode 100644 index 98ecfc5e..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/ResultsetMappingSecondPass.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/SetBinder.class b/target/classes/org/hibernate/cfg/annotations/SetBinder.class deleted file mode 100644 index 594c2916..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/SetBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/SimpleValueBinder$1.class b/target/classes/org/hibernate/cfg/annotations/SimpleValueBinder$1.class deleted file mode 100644 index 29aae1e2..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/SimpleValueBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/SimpleValueBinder.class b/target/classes/org/hibernate/cfg/annotations/SimpleValueBinder.class deleted file mode 100644 index 6d3db9b0..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/SimpleValueBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$1$1.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$1$1$1.class deleted file mode 100644 index 3b1e9f4d..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$1.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$1$1.class deleted file mode 100644 index 97943e79..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2$1.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2$1.class deleted file mode 100644 index d3cdbb56..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2$2.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2$2.class deleted file mode 100644 index c81eaaaa..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2.class deleted file mode 100644 index a15f15ea..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$1$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$1.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$1.class deleted file mode 100644 index 42c83c25..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$2$1.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$2$1.class deleted file mode 100644 index 953fa57e..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$2.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$2.class deleted file mode 100644 index 1e7291a2..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$3$1.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$3$1.class deleted file mode 100644 index a2c8e826..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$3$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$3$2.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$3$2.class deleted file mode 100644 index 8ebfa42e..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$3$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$3.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$3.class deleted file mode 100644 index 5814dce6..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder$AssociationTableNameSource.class b/target/classes/org/hibernate/cfg/annotations/TableBinder$AssociationTableNameSource.class deleted file mode 100644 index 09934ce3..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder$AssociationTableNameSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/TableBinder.class b/target/classes/org/hibernate/cfg/annotations/TableBinder.class deleted file mode 100644 index a2a44493..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/TableBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/AttributeConverterDefinitionCollector.class b/target/classes/org/hibernate/cfg/annotations/reflection/AttributeConverterDefinitionCollector.class deleted file mode 100644 index e834a11b..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/AttributeConverterDefinitionCollector.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/ClassLoaderAccessLazyImpl.class b/target/classes/org/hibernate/cfg/annotations/reflection/ClassLoaderAccessLazyImpl.class deleted file mode 100644 index a4025431..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/ClassLoaderAccessLazyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/JPAMetadataProvider$1.class b/target/classes/org/hibernate/cfg/annotations/reflection/JPAMetadataProvider$1.class deleted file mode 100644 index f1805ec9..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/JPAMetadataProvider$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/JPAMetadataProvider.class b/target/classes/org/hibernate/cfg/annotations/reflection/JPAMetadataProvider.class deleted file mode 100644 index d7c0f233..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/JPAMetadataProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/JPAOverriddenAnnotationReader$PropertyType.class b/target/classes/org/hibernate/cfg/annotations/reflection/JPAOverriddenAnnotationReader$PropertyType.class deleted file mode 100644 index d341a0a5..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/JPAOverriddenAnnotationReader$PropertyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/JPAOverriddenAnnotationReader.class b/target/classes/org/hibernate/cfg/annotations/reflection/JPAOverriddenAnnotationReader.class deleted file mode 100644 index 3c8394f0..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/JPAOverriddenAnnotationReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/PersistentAttributeFilter.class b/target/classes/org/hibernate/cfg/annotations/reflection/PersistentAttributeFilter.class deleted file mode 100644 index bfc0da59..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/PersistentAttributeFilter.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/XMLContext$Default.class b/target/classes/org/hibernate/cfg/annotations/reflection/XMLContext$Default.class deleted file mode 100644 index 937bf695..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/XMLContext$Default.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/annotations/reflection/XMLContext.class b/target/classes/org/hibernate/cfg/annotations/reflection/XMLContext.class deleted file mode 100644 index 13c6a707..00000000 Binary files a/target/classes/org/hibernate/cfg/annotations/reflection/XMLContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/ActivationContext.class b/target/classes/org/hibernate/cfg/beanvalidation/ActivationContext.class deleted file mode 100644 index c2d97912..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/ActivationContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationEventListener.class b/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationEventListener.class deleted file mode 100644 index cbb92487..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationIntegrator$1.class b/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationIntegrator$1.class deleted file mode 100644 index ef9f1984..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationIntegrator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationIntegrator.class b/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationIntegrator.class deleted file mode 100644 index 8f8d132f..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/BeanValidationIntegrator.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/DuplicationStrategyImpl.class b/target/classes/org/hibernate/cfg/beanvalidation/DuplicationStrategyImpl.class deleted file mode 100644 index 0e166343..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/DuplicationStrategyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/GroupsPerOperation$Operation.class b/target/classes/org/hibernate/cfg/beanvalidation/GroupsPerOperation$Operation.class deleted file mode 100644 index 411e5850..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/GroupsPerOperation$Operation.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/GroupsPerOperation.class b/target/classes/org/hibernate/cfg/beanvalidation/GroupsPerOperation.class deleted file mode 100644 index d16b37ba..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/GroupsPerOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/HibernateTraversableResolver.class b/target/classes/org/hibernate/cfg/beanvalidation/HibernateTraversableResolver.class deleted file mode 100644 index f4b46928..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/HibernateTraversableResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/IntegrationException.class b/target/classes/org/hibernate/cfg/beanvalidation/IntegrationException.class deleted file mode 100644 index 772361fa..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/IntegrationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/TypeSafeActivator$1.class b/target/classes/org/hibernate/cfg/beanvalidation/TypeSafeActivator$1.class deleted file mode 100644 index d82c6f6e..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/TypeSafeActivator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/TypeSafeActivator.class b/target/classes/org/hibernate/cfg/beanvalidation/TypeSafeActivator.class deleted file mode 100644 index fb047698..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/TypeSafeActivator.class and /dev/null differ diff --git a/target/classes/org/hibernate/cfg/beanvalidation/ValidationMode.class b/target/classes/org/hibernate/cfg/beanvalidation/ValidationMode.class deleted file mode 100644 index 00dfeee9..00000000 Binary files a/target/classes/org/hibernate/cfg/beanvalidation/ValidationMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/classic/Lifecycle.class b/target/classes/org/hibernate/classic/Lifecycle.class deleted file mode 100644 index b0d14d30..00000000 Binary files a/target/classes/org/hibernate/classic/Lifecycle.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$1.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$1.class deleted file mode 100644 index 4cbdd737..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$1ExtraLazyElementByIndexReader.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$1ExtraLazyElementByIndexReader.class deleted file mode 100644 index 4f4672f3..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$1ExtraLazyElementByIndexReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$2.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$2.class deleted file mode 100644 index 059277fd..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$3.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$3.class deleted file mode 100644 index 93022056..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$4.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$4.class deleted file mode 100644 index 194dfb03..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$5.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$5.class deleted file mode 100644 index 925a4ff8..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$AbstractValueDelayedOperation.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$AbstractValueDelayedOperation.class deleted file mode 100644 index 35526dfa..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$AbstractValueDelayedOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation.class deleted file mode 100644 index a6bf1438..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$DelayedOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$IteratorProxy.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$IteratorProxy.class deleted file mode 100644 index 01e8fb7e..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$IteratorProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$LazyInitializationWork.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$LazyInitializationWork.class deleted file mode 100644 index 3644ea58..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$LazyInitializationWork.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ListIteratorProxy.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ListIteratorProxy.class deleted file mode 100644 index 4f45a155..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ListIteratorProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ListProxy.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ListProxy.class deleted file mode 100644 index ae5b25f9..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ListProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$SetProxy.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$SetProxy.class deleted file mode 100644 index db53e4a5..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$SetProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ValueDelayedOperation.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ValueDelayedOperation.class deleted file mode 100644 index 16f910e7..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection$ValueDelayedOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection.class b/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection.class deleted file mode 100644 index 0a840351..00000000 Binary files a/target/classes/org/hibernate/collection/internal/AbstractPersistentCollection.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentArrayHolder.class b/target/classes/org/hibernate/collection/internal/PersistentArrayHolder.class deleted file mode 100644 index 82783906..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentArrayHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentBag$Clear.class b/target/classes/org/hibernate/collection/internal/PersistentBag$Clear.class deleted file mode 100644 index d34934d5..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentBag$Clear.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentBag$SimpleAdd.class b/target/classes/org/hibernate/collection/internal/PersistentBag$SimpleAdd.class deleted file mode 100644 index 603de1b2..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentBag$SimpleAdd.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentBag.class b/target/classes/org/hibernate/collection/internal/PersistentBag.class deleted file mode 100644 index a4b44da2..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentBag.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentIdentifierBag.class b/target/classes/org/hibernate/collection/internal/PersistentIdentifierBag.class deleted file mode 100644 index 3b56cd7d..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentIdentifierBag.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList$AbstractListValueDelayedOperation.class b/target/classes/org/hibernate/collection/internal/PersistentList$AbstractListValueDelayedOperation.class deleted file mode 100644 index de68a25a..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList$AbstractListValueDelayedOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList$Add.class b/target/classes/org/hibernate/collection/internal/PersistentList$Add.class deleted file mode 100644 index 4a91de25..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList$Add.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList$Clear.class b/target/classes/org/hibernate/collection/internal/PersistentList$Clear.class deleted file mode 100644 index f415b656..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList$Clear.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList$Remove.class b/target/classes/org/hibernate/collection/internal/PersistentList$Remove.class deleted file mode 100644 index 0867ba9a..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList$Remove.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList$Set.class b/target/classes/org/hibernate/collection/internal/PersistentList$Set.class deleted file mode 100644 index 22a4313a..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList$Set.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList$SimpleAdd.class b/target/classes/org/hibernate/collection/internal/PersistentList$SimpleAdd.class deleted file mode 100644 index f970d08f..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList$SimpleAdd.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList$SimpleRemove.class b/target/classes/org/hibernate/collection/internal/PersistentList$SimpleRemove.class deleted file mode 100644 index d217086c..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList$SimpleRemove.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentList.class b/target/classes/org/hibernate/collection/internal/PersistentList.class deleted file mode 100644 index 9654ad3b..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentList.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap$AbstractMapValueDelayedOperation.class b/target/classes/org/hibernate/collection/internal/PersistentMap$AbstractMapValueDelayedOperation.class deleted file mode 100644 index 7049b1e2..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap$AbstractMapValueDelayedOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap$Clear.class b/target/classes/org/hibernate/collection/internal/PersistentMap$Clear.class deleted file mode 100644 index c67f131e..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap$Clear.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap$EntryIteratorProxy.class b/target/classes/org/hibernate/collection/internal/PersistentMap$EntryIteratorProxy.class deleted file mode 100644 index 73be7441..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap$EntryIteratorProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap$EntrySetProxy.class b/target/classes/org/hibernate/collection/internal/PersistentMap$EntrySetProxy.class deleted file mode 100644 index 395a1499..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap$EntrySetProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap$MapEntryProxy.class b/target/classes/org/hibernate/collection/internal/PersistentMap$MapEntryProxy.class deleted file mode 100644 index 90bd8e16..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap$MapEntryProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap$Put.class b/target/classes/org/hibernate/collection/internal/PersistentMap$Put.class deleted file mode 100644 index 5f960782..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap$Put.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap$Remove.class b/target/classes/org/hibernate/collection/internal/PersistentMap$Remove.class deleted file mode 100644 index f2151715..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap$Remove.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentMap.class b/target/classes/org/hibernate/collection/internal/PersistentMap.class deleted file mode 100644 index c89cc63b..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentMap.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSet$Clear.class b/target/classes/org/hibernate/collection/internal/PersistentSet$Clear.class deleted file mode 100644 index 2f07ed1f..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSet$Clear.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSet$SimpleAdd.class b/target/classes/org/hibernate/collection/internal/PersistentSet$SimpleAdd.class deleted file mode 100644 index 464c0379..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSet$SimpleAdd.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSet$SimpleRemove.class b/target/classes/org/hibernate/collection/internal/PersistentSet$SimpleRemove.class deleted file mode 100644 index afe4a166..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSet$SimpleRemove.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSet.class b/target/classes/org/hibernate/collection/internal/PersistentSet.class deleted file mode 100644 index da08537f..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSet.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSortedMap$SortedSubMap.class b/target/classes/org/hibernate/collection/internal/PersistentSortedMap$SortedSubMap.class deleted file mode 100644 index a3efc766..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSortedMap$SortedSubMap.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSortedMap.class b/target/classes/org/hibernate/collection/internal/PersistentSortedMap.class deleted file mode 100644 index 310d3c99..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSortedMap.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSortedSet$SubSetProxy.class b/target/classes/org/hibernate/collection/internal/PersistentSortedSet$SubSetProxy.class deleted file mode 100644 index 71c62271..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSortedSet$SubSetProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/internal/PersistentSortedSet.class b/target/classes/org/hibernate/collection/internal/PersistentSortedSet.class deleted file mode 100644 index a832fa71..00000000 Binary files a/target/classes/org/hibernate/collection/internal/PersistentSortedSet.class and /dev/null differ diff --git a/target/classes/org/hibernate/collection/spi/PersistentCollection.class b/target/classes/org/hibernate/collection/spi/PersistentCollection.class deleted file mode 100644 index 5a59f5bf..00000000 Binary files a/target/classes/org/hibernate/collection/spi/PersistentCollection.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/TenantIdentifierMismatchException.class b/target/classes/org/hibernate/context/TenantIdentifierMismatchException.class deleted file mode 100644 index d0c7f72b..00000000 Binary files a/target/classes/org/hibernate/context/TenantIdentifierMismatchException.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/internal/JTASessionContext$CleanupSync.class b/target/classes/org/hibernate/context/internal/JTASessionContext$CleanupSync.class deleted file mode 100644 index d06bf47a..00000000 Binary files a/target/classes/org/hibernate/context/internal/JTASessionContext$CleanupSync.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/internal/JTASessionContext.class b/target/classes/org/hibernate/context/internal/JTASessionContext.class deleted file mode 100644 index 062d42f3..00000000 Binary files a/target/classes/org/hibernate/context/internal/JTASessionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/internal/ManagedSessionContext.class b/target/classes/org/hibernate/context/internal/ManagedSessionContext.class deleted file mode 100644 index 10faea9e..00000000 Binary files a/target/classes/org/hibernate/context/internal/ManagedSessionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext$CleanupSync.class b/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext$CleanupSync.class deleted file mode 100644 index ec89926d..00000000 Binary files a/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext$CleanupSync.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper.class b/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper.class deleted file mode 100644 index 983354d7..00000000 Binary files a/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext$TransactionProtectionWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext.class b/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext.class deleted file mode 100644 index 934a777e..00000000 Binary files a/target/classes/org/hibernate/context/internal/ThreadLocalSessionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/spi/AbstractCurrentSessionContext.class b/target/classes/org/hibernate/context/spi/AbstractCurrentSessionContext.class deleted file mode 100644 index 6c9ad00c..00000000 Binary files a/target/classes/org/hibernate/context/spi/AbstractCurrentSessionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/spi/CurrentSessionContext.class b/target/classes/org/hibernate/context/spi/CurrentSessionContext.class deleted file mode 100644 index d9234499..00000000 Binary files a/target/classes/org/hibernate/context/spi/CurrentSessionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/context/spi/CurrentTenantIdentifierResolver.class b/target/classes/org/hibernate/context/spi/CurrentTenantIdentifierResolver.class deleted file mode 100644 index cc11b881..00000000 Binary files a/target/classes/org/hibernate/context/spi/CurrentTenantIdentifierResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/AbstractEmptinessExpression.class b/target/classes/org/hibernate/criterion/AbstractEmptinessExpression.class deleted file mode 100644 index e410bf5b..00000000 Binary files a/target/classes/org/hibernate/criterion/AbstractEmptinessExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/AggregateProjection.class b/target/classes/org/hibernate/criterion/AggregateProjection.class deleted file mode 100644 index be620c84..00000000 Binary files a/target/classes/org/hibernate/criterion/AggregateProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/AliasedProjection.class b/target/classes/org/hibernate/criterion/AliasedProjection.class deleted file mode 100644 index 715c60ab..00000000 Binary files a/target/classes/org/hibernate/criterion/AliasedProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/AvgProjection.class b/target/classes/org/hibernate/criterion/AvgProjection.class deleted file mode 100644 index 6810c190..00000000 Binary files a/target/classes/org/hibernate/criterion/AvgProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/BetweenExpression.class b/target/classes/org/hibernate/criterion/BetweenExpression.class deleted file mode 100644 index b4846801..00000000 Binary files a/target/classes/org/hibernate/criterion/BetweenExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Conjunction.class b/target/classes/org/hibernate/criterion/Conjunction.class deleted file mode 100644 index 1f978668..00000000 Binary files a/target/classes/org/hibernate/criterion/Conjunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/CountProjection.class b/target/classes/org/hibernate/criterion/CountProjection.class deleted file mode 100644 index 78a35614..00000000 Binary files a/target/classes/org/hibernate/criterion/CountProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/CriteriaQuery.class b/target/classes/org/hibernate/criterion/CriteriaQuery.class deleted file mode 100644 index 51caeb9f..00000000 Binary files a/target/classes/org/hibernate/criterion/CriteriaQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/CriteriaSpecification.class b/target/classes/org/hibernate/criterion/CriteriaSpecification.class deleted file mode 100644 index 98b312aa..00000000 Binary files a/target/classes/org/hibernate/criterion/CriteriaSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Criterion.class b/target/classes/org/hibernate/criterion/Criterion.class deleted file mode 100644 index 3125cf39..00000000 Binary files a/target/classes/org/hibernate/criterion/Criterion.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/DetachedCriteria.class b/target/classes/org/hibernate/criterion/DetachedCriteria.class deleted file mode 100644 index 9b269cf5..00000000 Binary files a/target/classes/org/hibernate/criterion/DetachedCriteria.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Disjunction.class b/target/classes/org/hibernate/criterion/Disjunction.class deleted file mode 100644 index 4309d385..00000000 Binary files a/target/classes/org/hibernate/criterion/Disjunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Distinct.class b/target/classes/org/hibernate/criterion/Distinct.class deleted file mode 100644 index 3a04b92b..00000000 Binary files a/target/classes/org/hibernate/criterion/Distinct.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/EmptyExpression.class b/target/classes/org/hibernate/criterion/EmptyExpression.class deleted file mode 100644 index 3124f1b6..00000000 Binary files a/target/classes/org/hibernate/criterion/EmptyExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/EnhancedProjection.class b/target/classes/org/hibernate/criterion/EnhancedProjection.class deleted file mode 100644 index f1f41b11..00000000 Binary files a/target/classes/org/hibernate/criterion/EnhancedProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Example$AllPropertySelector.class b/target/classes/org/hibernate/criterion/Example$AllPropertySelector.class deleted file mode 100644 index 58780d43..00000000 Binary files a/target/classes/org/hibernate/criterion/Example$AllPropertySelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Example$NotNullOrZeroPropertySelector.class b/target/classes/org/hibernate/criterion/Example$NotNullOrZeroPropertySelector.class deleted file mode 100644 index bb84a0e6..00000000 Binary files a/target/classes/org/hibernate/criterion/Example$NotNullOrZeroPropertySelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Example$NotNullPropertySelector.class b/target/classes/org/hibernate/criterion/Example$NotNullPropertySelector.class deleted file mode 100644 index 393e2e1a..00000000 Binary files a/target/classes/org/hibernate/criterion/Example$NotNullPropertySelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Example$PropertySelector.class b/target/classes/org/hibernate/criterion/Example$PropertySelector.class deleted file mode 100644 index 3558f40a..00000000 Binary files a/target/classes/org/hibernate/criterion/Example$PropertySelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Example.class b/target/classes/org/hibernate/criterion/Example.class deleted file mode 100644 index ff9d4dab..00000000 Binary files a/target/classes/org/hibernate/criterion/Example.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/ExistsSubqueryExpression.class b/target/classes/org/hibernate/criterion/ExistsSubqueryExpression.class deleted file mode 100644 index c380e6b6..00000000 Binary files a/target/classes/org/hibernate/criterion/ExistsSubqueryExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Expression.class b/target/classes/org/hibernate/criterion/Expression.class deleted file mode 100644 index b09b54d1..00000000 Binary files a/target/classes/org/hibernate/criterion/Expression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/IdentifierEqExpression.class b/target/classes/org/hibernate/criterion/IdentifierEqExpression.class deleted file mode 100644 index 98e81c68..00000000 Binary files a/target/classes/org/hibernate/criterion/IdentifierEqExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/IdentifierProjection.class b/target/classes/org/hibernate/criterion/IdentifierProjection.class deleted file mode 100644 index 77341a90..00000000 Binary files a/target/classes/org/hibernate/criterion/IdentifierProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/IlikeExpression.class b/target/classes/org/hibernate/criterion/IlikeExpression.class deleted file mode 100644 index 7f3c2c97..00000000 Binary files a/target/classes/org/hibernate/criterion/IlikeExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/InExpression.class b/target/classes/org/hibernate/criterion/InExpression.class deleted file mode 100644 index fe55b6c8..00000000 Binary files a/target/classes/org/hibernate/criterion/InExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Junction$Nature.class b/target/classes/org/hibernate/criterion/Junction$Nature.class deleted file mode 100644 index a50f5ade..00000000 Binary files a/target/classes/org/hibernate/criterion/Junction$Nature.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Junction.class b/target/classes/org/hibernate/criterion/Junction.class deleted file mode 100644 index da5e5a33..00000000 Binary files a/target/classes/org/hibernate/criterion/Junction.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/LikeExpression.class b/target/classes/org/hibernate/criterion/LikeExpression.class deleted file mode 100644 index dd238010..00000000 Binary files a/target/classes/org/hibernate/criterion/LikeExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/LogicalExpression.class b/target/classes/org/hibernate/criterion/LogicalExpression.class deleted file mode 100644 index e9983cb1..00000000 Binary files a/target/classes/org/hibernate/criterion/LogicalExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/MatchMode$1.class b/target/classes/org/hibernate/criterion/MatchMode$1.class deleted file mode 100644 index 42db431b..00000000 Binary files a/target/classes/org/hibernate/criterion/MatchMode$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/MatchMode$2.class b/target/classes/org/hibernate/criterion/MatchMode$2.class deleted file mode 100644 index a94869de..00000000 Binary files a/target/classes/org/hibernate/criterion/MatchMode$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/MatchMode$3.class b/target/classes/org/hibernate/criterion/MatchMode$3.class deleted file mode 100644 index 5088eb13..00000000 Binary files a/target/classes/org/hibernate/criterion/MatchMode$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/MatchMode$4.class b/target/classes/org/hibernate/criterion/MatchMode$4.class deleted file mode 100644 index 0b9dea86..00000000 Binary files a/target/classes/org/hibernate/criterion/MatchMode$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/MatchMode.class b/target/classes/org/hibernate/criterion/MatchMode.class deleted file mode 100644 index 39c14c4e..00000000 Binary files a/target/classes/org/hibernate/criterion/MatchMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/NaturalIdentifier.class b/target/classes/org/hibernate/criterion/NaturalIdentifier.class deleted file mode 100644 index 5a910ed4..00000000 Binary files a/target/classes/org/hibernate/criterion/NaturalIdentifier.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/NotEmptyExpression.class b/target/classes/org/hibernate/criterion/NotEmptyExpression.class deleted file mode 100644 index ac239816..00000000 Binary files a/target/classes/org/hibernate/criterion/NotEmptyExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/NotExpression.class b/target/classes/org/hibernate/criterion/NotExpression.class deleted file mode 100644 index 19b33bd7..00000000 Binary files a/target/classes/org/hibernate/criterion/NotExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/NotNullExpression.class b/target/classes/org/hibernate/criterion/NotNullExpression.class deleted file mode 100644 index 9efe9d45..00000000 Binary files a/target/classes/org/hibernate/criterion/NotNullExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/NullExpression.class b/target/classes/org/hibernate/criterion/NullExpression.class deleted file mode 100644 index 52fc7df0..00000000 Binary files a/target/classes/org/hibernate/criterion/NullExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Order.class b/target/classes/org/hibernate/criterion/Order.class deleted file mode 100644 index 7f5c3788..00000000 Binary files a/target/classes/org/hibernate/criterion/Order.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Projection.class b/target/classes/org/hibernate/criterion/Projection.class deleted file mode 100644 index b787e8f3..00000000 Binary files a/target/classes/org/hibernate/criterion/Projection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/ProjectionList.class b/target/classes/org/hibernate/criterion/ProjectionList.class deleted file mode 100644 index ae1e36eb..00000000 Binary files a/target/classes/org/hibernate/criterion/ProjectionList.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Projections.class b/target/classes/org/hibernate/criterion/Projections.class deleted file mode 100644 index 2466cd0f..00000000 Binary files a/target/classes/org/hibernate/criterion/Projections.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/PropertiesSubqueryExpression.class b/target/classes/org/hibernate/criterion/PropertiesSubqueryExpression.class deleted file mode 100644 index b1e0a125..00000000 Binary files a/target/classes/org/hibernate/criterion/PropertiesSubqueryExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Property.class b/target/classes/org/hibernate/criterion/Property.class deleted file mode 100644 index 506fb837..00000000 Binary files a/target/classes/org/hibernate/criterion/Property.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/PropertyExpression.class b/target/classes/org/hibernate/criterion/PropertyExpression.class deleted file mode 100644 index 2afeb7b1..00000000 Binary files a/target/classes/org/hibernate/criterion/PropertyExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/PropertyProjection.class b/target/classes/org/hibernate/criterion/PropertyProjection.class deleted file mode 100644 index 8a80dda0..00000000 Binary files a/target/classes/org/hibernate/criterion/PropertyProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/PropertySubqueryExpression.class b/target/classes/org/hibernate/criterion/PropertySubqueryExpression.class deleted file mode 100644 index d56d98c8..00000000 Binary files a/target/classes/org/hibernate/criterion/PropertySubqueryExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Restrictions.class b/target/classes/org/hibernate/criterion/Restrictions.class deleted file mode 100644 index 07f5de84..00000000 Binary files a/target/classes/org/hibernate/criterion/Restrictions.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/RowCountProjection.class b/target/classes/org/hibernate/criterion/RowCountProjection.class deleted file mode 100644 index ea7f6b61..00000000 Binary files a/target/classes/org/hibernate/criterion/RowCountProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/SQLCriterion.class b/target/classes/org/hibernate/criterion/SQLCriterion.class deleted file mode 100644 index 7d38b79f..00000000 Binary files a/target/classes/org/hibernate/criterion/SQLCriterion.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/SQLProjection.class b/target/classes/org/hibernate/criterion/SQLProjection.class deleted file mode 100644 index 363eb5df..00000000 Binary files a/target/classes/org/hibernate/criterion/SQLProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/SimpleExpression.class b/target/classes/org/hibernate/criterion/SimpleExpression.class deleted file mode 100644 index 8c9ecb54..00000000 Binary files a/target/classes/org/hibernate/criterion/SimpleExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/SimpleProjection.class b/target/classes/org/hibernate/criterion/SimpleProjection.class deleted file mode 100644 index a3fe2c44..00000000 Binary files a/target/classes/org/hibernate/criterion/SimpleProjection.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/SimpleSubqueryExpression.class b/target/classes/org/hibernate/criterion/SimpleSubqueryExpression.class deleted file mode 100644 index 8e81040f..00000000 Binary files a/target/classes/org/hibernate/criterion/SimpleSubqueryExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/SizeExpression.class b/target/classes/org/hibernate/criterion/SizeExpression.class deleted file mode 100644 index 37bae837..00000000 Binary files a/target/classes/org/hibernate/criterion/SizeExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/Subqueries.class b/target/classes/org/hibernate/criterion/Subqueries.class deleted file mode 100644 index 13043fbd..00000000 Binary files a/target/classes/org/hibernate/criterion/Subqueries.class and /dev/null differ diff --git a/target/classes/org/hibernate/criterion/SubqueryExpression.class b/target/classes/org/hibernate/criterion/SubqueryExpression.class deleted file mode 100644 index 033f1551..00000000 Binary files a/target/classes/org/hibernate/criterion/SubqueryExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$1.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$1.class deleted file mode 100644 index b751c329..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$2$1.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$2$1.class deleted file mode 100644 index e260489f..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$2.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$2.class deleted file mode 100644 index 0b817ceb..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$3$1.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$3$1.class deleted file mode 100644 index 27b679ea..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$3$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$3.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$3.class deleted file mode 100644 index f7994d9f..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$4.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$4.class deleted file mode 100644 index 9ecf9080..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$5.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$5.class deleted file mode 100644 index 8a4f35c1..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect$CloseSuppressingReader.class b/target/classes/org/hibernate/dialect/AbstractHANADialect$CloseSuppressingReader.class deleted file mode 100644 index 6bac10dd..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect$CloseSuppressingReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractHANADialect.class b/target/classes/org/hibernate/dialect/AbstractHANADialect.class deleted file mode 100644 index 20ec6805..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractHANADialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractTransactSQLDialect$1.class b/target/classes/org/hibernate/dialect/AbstractTransactSQLDialect$1.class deleted file mode 100644 index a10aeafe..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractTransactSQLDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/AbstractTransactSQLDialect.class b/target/classes/org/hibernate/dialect/AbstractTransactSQLDialect.class deleted file mode 100644 index fd637e79..00000000 Binary files a/target/classes/org/hibernate/dialect/AbstractTransactSQLDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/CUBRIDDialect.class b/target/classes/org/hibernate/dialect/CUBRIDDialect.class deleted file mode 100644 index 11135ea3..00000000 Binary files a/target/classes/org/hibernate/dialect/CUBRIDDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Cache71Dialect$1.class b/target/classes/org/hibernate/dialect/Cache71Dialect$1.class deleted file mode 100644 index ed67fb34..00000000 Binary files a/target/classes/org/hibernate/dialect/Cache71Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Cache71Dialect$2.class b/target/classes/org/hibernate/dialect/Cache71Dialect$2.class deleted file mode 100644 index 99d979c7..00000000 Binary files a/target/classes/org/hibernate/dialect/Cache71Dialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Cache71Dialect.class b/target/classes/org/hibernate/dialect/Cache71Dialect.class deleted file mode 100644 index 315cb45e..00000000 Binary files a/target/classes/org/hibernate/dialect/Cache71Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/ColumnAliasExtractor$1.class b/target/classes/org/hibernate/dialect/ColumnAliasExtractor$1.class deleted file mode 100644 index 39459052..00000000 Binary files a/target/classes/org/hibernate/dialect/ColumnAliasExtractor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/ColumnAliasExtractor$2.class b/target/classes/org/hibernate/dialect/ColumnAliasExtractor$2.class deleted file mode 100644 index 4006163b..00000000 Binary files a/target/classes/org/hibernate/dialect/ColumnAliasExtractor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/ColumnAliasExtractor.class b/target/classes/org/hibernate/dialect/ColumnAliasExtractor.class deleted file mode 100644 index 05934f88..00000000 Binary files a/target/classes/org/hibernate/dialect/ColumnAliasExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2390Dialect$1.class b/target/classes/org/hibernate/dialect/DB2390Dialect$1.class deleted file mode 100644 index a724e935..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2390Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2390Dialect.class b/target/classes/org/hibernate/dialect/DB2390Dialect.class deleted file mode 100644 index 1f30afb2..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2390Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2400Dialect$1.class b/target/classes/org/hibernate/dialect/DB2400Dialect$1.class deleted file mode 100644 index a40179cb..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2400Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2400Dialect.class b/target/classes/org/hibernate/dialect/DB2400Dialect.class deleted file mode 100644 index 5fe317b4..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2400Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2Dialect$1.class b/target/classes/org/hibernate/dialect/DB2Dialect$1.class deleted file mode 100644 index e4f7aedf..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2Dialect$2.class b/target/classes/org/hibernate/dialect/DB2Dialect$2.class deleted file mode 100644 index 23f2b660..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2Dialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2Dialect$3.class b/target/classes/org/hibernate/dialect/DB2Dialect$3.class deleted file mode 100644 index 533014ad..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2Dialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DB2Dialect.class b/target/classes/org/hibernate/dialect/DB2Dialect.class deleted file mode 100644 index 1232c094..00000000 Binary files a/target/classes/org/hibernate/dialect/DB2Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DataDirectOracle9Dialect.class b/target/classes/org/hibernate/dialect/DataDirectOracle9Dialect.class deleted file mode 100644 index 6fcaccfe..00000000 Binary files a/target/classes/org/hibernate/dialect/DataDirectOracle9Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DerbyDialect$1.class b/target/classes/org/hibernate/dialect/DerbyDialect$1.class deleted file mode 100644 index 0a668de8..00000000 Binary files a/target/classes/org/hibernate/dialect/DerbyDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DerbyDialect$DerbyLimitHandler.class b/target/classes/org/hibernate/dialect/DerbyDialect$DerbyLimitHandler.class deleted file mode 100644 index e52cd9d7..00000000 Binary files a/target/classes/org/hibernate/dialect/DerbyDialect$DerbyLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DerbyDialect.class b/target/classes/org/hibernate/dialect/DerbyDialect.class deleted file mode 100644 index 00c8fda5..00000000 Binary files a/target/classes/org/hibernate/dialect/DerbyDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DerbyTenFiveDialect.class b/target/classes/org/hibernate/dialect/DerbyTenFiveDialect.class deleted file mode 100644 index 4fa3dbe1..00000000 Binary files a/target/classes/org/hibernate/dialect/DerbyTenFiveDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DerbyTenSevenDialect.class b/target/classes/org/hibernate/dialect/DerbyTenSevenDialect.class deleted file mode 100644 index 226cbadc..00000000 Binary files a/target/classes/org/hibernate/dialect/DerbyTenSevenDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/DerbyTenSixDialect.class b/target/classes/org/hibernate/dialect/DerbyTenSixDialect.class deleted file mode 100644 index f1ba8325..00000000 Binary files a/target/classes/org/hibernate/dialect/DerbyTenSixDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Dialect$1.class b/target/classes/org/hibernate/dialect/Dialect$1.class deleted file mode 100644 index 676c5035..00000000 Binary files a/target/classes/org/hibernate/dialect/Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Dialect$2.class b/target/classes/org/hibernate/dialect/Dialect$2.class deleted file mode 100644 index f48ee3fe..00000000 Binary files a/target/classes/org/hibernate/dialect/Dialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Dialect$3.class b/target/classes/org/hibernate/dialect/Dialect$3.class deleted file mode 100644 index ca1f102f..00000000 Binary files a/target/classes/org/hibernate/dialect/Dialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Dialect$4.class b/target/classes/org/hibernate/dialect/Dialect$4.class deleted file mode 100644 index 4214545f..00000000 Binary files a/target/classes/org/hibernate/dialect/Dialect$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Dialect$5.class b/target/classes/org/hibernate/dialect/Dialect$5.class deleted file mode 100644 index 2f1074d5..00000000 Binary files a/target/classes/org/hibernate/dialect/Dialect$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Dialect$6.class b/target/classes/org/hibernate/dialect/Dialect$6.class deleted file mode 100644 index a1c137c8..00000000 Binary files a/target/classes/org/hibernate/dialect/Dialect$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Dialect.class b/target/classes/org/hibernate/dialect/Dialect.class deleted file mode 100644 index 66075398..00000000 Binary files a/target/classes/org/hibernate/dialect/Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/FirebirdDialect$1.class b/target/classes/org/hibernate/dialect/FirebirdDialect$1.class deleted file mode 100644 index 9de7eb61..00000000 Binary files a/target/classes/org/hibernate/dialect/FirebirdDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/FirebirdDialect.class b/target/classes/org/hibernate/dialect/FirebirdDialect.class deleted file mode 100644 index 5fbaad54..00000000 Binary files a/target/classes/org/hibernate/dialect/FirebirdDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/FrontBaseDialect.class b/target/classes/org/hibernate/dialect/FrontBaseDialect.class deleted file mode 100644 index 17e9b3b6..00000000 Binary files a/target/classes/org/hibernate/dialect/FrontBaseDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/H2Dialect$1.class b/target/classes/org/hibernate/dialect/H2Dialect$1.class deleted file mode 100644 index cbda12e1..00000000 Binary files a/target/classes/org/hibernate/dialect/H2Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/H2Dialect$2.class b/target/classes/org/hibernate/dialect/H2Dialect$2.class deleted file mode 100644 index 1abb77d6..00000000 Binary files a/target/classes/org/hibernate/dialect/H2Dialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/H2Dialect$3.class b/target/classes/org/hibernate/dialect/H2Dialect$3.class deleted file mode 100644 index 254a6cf1..00000000 Binary files a/target/classes/org/hibernate/dialect/H2Dialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/H2Dialect$4.class b/target/classes/org/hibernate/dialect/H2Dialect$4.class deleted file mode 100644 index ca4a239d..00000000 Binary files a/target/classes/org/hibernate/dialect/H2Dialect$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/H2Dialect.class b/target/classes/org/hibernate/dialect/H2Dialect.class deleted file mode 100644 index 401ec2c2..00000000 Binary files a/target/classes/org/hibernate/dialect/H2Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HANAColumnStoreDialect.class b/target/classes/org/hibernate/dialect/HANAColumnStoreDialect.class deleted file mode 100644 index 8d978013..00000000 Binary files a/target/classes/org/hibernate/dialect/HANAColumnStoreDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HANARowStoreDialect.class b/target/classes/org/hibernate/dialect/HANARowStoreDialect.class deleted file mode 100644 index 38203ad7..00000000 Binary files a/target/classes/org/hibernate/dialect/HANARowStoreDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HSQLDialect$1.class b/target/classes/org/hibernate/dialect/HSQLDialect$1.class deleted file mode 100644 index c8f65239..00000000 Binary files a/target/classes/org/hibernate/dialect/HSQLDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HSQLDialect$2.class b/target/classes/org/hibernate/dialect/HSQLDialect$2.class deleted file mode 100644 index 27f18b3c..00000000 Binary files a/target/classes/org/hibernate/dialect/HSQLDialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HSQLDialect$3.class b/target/classes/org/hibernate/dialect/HSQLDialect$3.class deleted file mode 100644 index 35aa7029..00000000 Binary files a/target/classes/org/hibernate/dialect/HSQLDialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HSQLDialect$4.class b/target/classes/org/hibernate/dialect/HSQLDialect$4.class deleted file mode 100644 index 16cced40..00000000 Binary files a/target/classes/org/hibernate/dialect/HSQLDialect$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HSQLDialect$HSQLLimitHandler.class b/target/classes/org/hibernate/dialect/HSQLDialect$HSQLLimitHandler.class deleted file mode 100644 index d1e94a1c..00000000 Binary files a/target/classes/org/hibernate/dialect/HSQLDialect$HSQLLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HSQLDialect$ReadUncommittedLockingStrategy.class b/target/classes/org/hibernate/dialect/HSQLDialect$ReadUncommittedLockingStrategy.class deleted file mode 100644 index 7f7b5dd2..00000000 Binary files a/target/classes/org/hibernate/dialect/HSQLDialect$ReadUncommittedLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/HSQLDialect.class b/target/classes/org/hibernate/dialect/HSQLDialect.class deleted file mode 100644 index 675da8b7..00000000 Binary files a/target/classes/org/hibernate/dialect/HSQLDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/InformixDialect$1.class b/target/classes/org/hibernate/dialect/InformixDialect$1.class deleted file mode 100644 index 20f08713..00000000 Binary files a/target/classes/org/hibernate/dialect/InformixDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/InformixDialect$2.class b/target/classes/org/hibernate/dialect/InformixDialect$2.class deleted file mode 100644 index 7fd7d608..00000000 Binary files a/target/classes/org/hibernate/dialect/InformixDialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/InformixDialect.class b/target/classes/org/hibernate/dialect/InformixDialect.class deleted file mode 100644 index 9ae8a967..00000000 Binary files a/target/classes/org/hibernate/dialect/InformixDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Ingres10Dialect.class b/target/classes/org/hibernate/dialect/Ingres10Dialect.class deleted file mode 100644 index 08f1db1c..00000000 Binary files a/target/classes/org/hibernate/dialect/Ingres10Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Ingres9Dialect$1.class b/target/classes/org/hibernate/dialect/Ingres9Dialect$1.class deleted file mode 100644 index b95f7272..00000000 Binary files a/target/classes/org/hibernate/dialect/Ingres9Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Ingres9Dialect.class b/target/classes/org/hibernate/dialect/Ingres9Dialect.class deleted file mode 100644 index ef6b83ab..00000000 Binary files a/target/classes/org/hibernate/dialect/Ingres9Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/IngresDialect$1.class b/target/classes/org/hibernate/dialect/IngresDialect$1.class deleted file mode 100644 index 2717781b..00000000 Binary files a/target/classes/org/hibernate/dialect/IngresDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/IngresDialect.class b/target/classes/org/hibernate/dialect/IngresDialect.class deleted file mode 100644 index 43a52ff7..00000000 Binary files a/target/classes/org/hibernate/dialect/IngresDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/InterbaseDialect$1.class b/target/classes/org/hibernate/dialect/InterbaseDialect$1.class deleted file mode 100644 index cec000d5..00000000 Binary files a/target/classes/org/hibernate/dialect/InterbaseDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/InterbaseDialect.class b/target/classes/org/hibernate/dialect/InterbaseDialect.class deleted file mode 100644 index 292e49e0..00000000 Binary files a/target/classes/org/hibernate/dialect/InterbaseDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/JDataStoreDialect.class b/target/classes/org/hibernate/dialect/JDataStoreDialect.class deleted file mode 100644 index 207edecf..00000000 Binary files a/target/classes/org/hibernate/dialect/JDataStoreDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/LobMergeStrategy.class b/target/classes/org/hibernate/dialect/LobMergeStrategy.class deleted file mode 100644 index 0f91187b..00000000 Binary files a/target/classes/org/hibernate/dialect/LobMergeStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MckoiDialect.class b/target/classes/org/hibernate/dialect/MckoiDialect.class deleted file mode 100644 index 5b48c4ab..00000000 Binary files a/target/classes/org/hibernate/dialect/MckoiDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MimerSQLDialect.class b/target/classes/org/hibernate/dialect/MimerSQLDialect.class deleted file mode 100644 index 24d505c8..00000000 Binary files a/target/classes/org/hibernate/dialect/MimerSQLDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQL57InnoDBDialect.class b/target/classes/org/hibernate/dialect/MySQL57InnoDBDialect.class deleted file mode 100644 index f7c28908..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQL57InnoDBDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQL5Dialect$1.class b/target/classes/org/hibernate/dialect/MySQL5Dialect$1.class deleted file mode 100644 index 93fb8a5c..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQL5Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQL5Dialect.class b/target/classes/org/hibernate/dialect/MySQL5Dialect.class deleted file mode 100644 index bc2b0e2c..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQL5Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQL5InnoDBDialect.class b/target/classes/org/hibernate/dialect/MySQL5InnoDBDialect.class deleted file mode 100644 index fc45b60f..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQL5InnoDBDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQLDialect$1.class b/target/classes/org/hibernate/dialect/MySQLDialect$1.class deleted file mode 100644 index 96ca5e9d..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQLDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQLDialect$2.class b/target/classes/org/hibernate/dialect/MySQLDialect$2.class deleted file mode 100644 index ef8d870d..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQLDialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQLDialect$3.class b/target/classes/org/hibernate/dialect/MySQLDialect$3.class deleted file mode 100644 index 42e7d8d2..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQLDialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQLDialect.class b/target/classes/org/hibernate/dialect/MySQLDialect.class deleted file mode 100644 index d20e411e..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQLDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQLInnoDBDialect.class b/target/classes/org/hibernate/dialect/MySQLInnoDBDialect.class deleted file mode 100644 index 1736057e..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQLInnoDBDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/MySQLMyISAMDialect.class b/target/classes/org/hibernate/dialect/MySQLMyISAMDialect.class deleted file mode 100644 index 9e239fb3..00000000 Binary files a/target/classes/org/hibernate/dialect/MySQLMyISAMDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle10gDialect.class b/target/classes/org/hibernate/dialect/Oracle10gDialect.class deleted file mode 100644 index d5fd2e7b..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle10gDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle12cDialect.class b/target/classes/org/hibernate/dialect/Oracle12cDialect.class deleted file mode 100644 index 80e0af13..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle12cDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle8iDialect$1.class b/target/classes/org/hibernate/dialect/Oracle8iDialect$1.class deleted file mode 100644 index 9c7542e1..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle8iDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle8iDialect$2.class b/target/classes/org/hibernate/dialect/Oracle8iDialect$2.class deleted file mode 100644 index b5553242..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle8iDialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle8iDialect$3.class b/target/classes/org/hibernate/dialect/Oracle8iDialect$3.class deleted file mode 100644 index 6a57964e..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle8iDialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle8iDialect$4.class b/target/classes/org/hibernate/dialect/Oracle8iDialect$4.class deleted file mode 100644 index e537107f..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle8iDialect$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle8iDialect.class b/target/classes/org/hibernate/dialect/Oracle8iDialect.class deleted file mode 100644 index 47c05091..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle8iDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle9Dialect$1.class b/target/classes/org/hibernate/dialect/Oracle9Dialect$1.class deleted file mode 100644 index 7f9b7c5b..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle9Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle9Dialect$2.class b/target/classes/org/hibernate/dialect/Oracle9Dialect$2.class deleted file mode 100644 index 2bdf874d..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle9Dialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle9Dialect.class b/target/classes/org/hibernate/dialect/Oracle9Dialect.class deleted file mode 100644 index 35390a42..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle9Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle9iDialect$1.class b/target/classes/org/hibernate/dialect/Oracle9iDialect$1.class deleted file mode 100644 index 1be29b6b..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle9iDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Oracle9iDialect.class b/target/classes/org/hibernate/dialect/Oracle9iDialect.class deleted file mode 100644 index 2d519723..00000000 Binary files a/target/classes/org/hibernate/dialect/Oracle9iDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/OracleDialect.class b/target/classes/org/hibernate/dialect/OracleDialect.class deleted file mode 100644 index be95970f..00000000 Binary files a/target/classes/org/hibernate/dialect/OracleDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/OracleTypesHelper.class b/target/classes/org/hibernate/dialect/OracleTypesHelper.class deleted file mode 100644 index b1b6a89c..00000000 Binary files a/target/classes/org/hibernate/dialect/OracleTypesHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PointbaseDialect.class b/target/classes/org/hibernate/dialect/PointbaseDialect.class deleted file mode 100644 index fd745eba..00000000 Binary files a/target/classes/org/hibernate/dialect/PointbaseDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$1.class b/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$1.class deleted file mode 100644 index 870c5136..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$2.class b/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$2.class deleted file mode 100644 index af8c2389..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$3.class b/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$3.class deleted file mode 100644 index 2a8083a7..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$4.class b/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$4.class deleted file mode 100644 index c8fa0176..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect.class b/target/classes/org/hibernate/dialect/PostgreSQL81Dialect.class deleted file mode 100644 index b9f3cc7f..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL81Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL82Dialect$1.class b/target/classes/org/hibernate/dialect/PostgreSQL82Dialect$1.class deleted file mode 100644 index 1ccf80c2..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL82Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL82Dialect.class b/target/classes/org/hibernate/dialect/PostgreSQL82Dialect.class deleted file mode 100644 index bbba5a7f..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL82Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL92Dialect.class b/target/classes/org/hibernate/dialect/PostgreSQL92Dialect.class deleted file mode 100644 index 4a540e1d..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL92Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL94Dialect.class b/target/classes/org/hibernate/dialect/PostgreSQL94Dialect.class deleted file mode 100644 index 950fdfca..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL94Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQL9Dialect.class b/target/classes/org/hibernate/dialect/PostgreSQL9Dialect.class deleted file mode 100644 index 6d735423..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQL9Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgreSQLDialect.class b/target/classes/org/hibernate/dialect/PostgreSQLDialect.class deleted file mode 100644 index 5daf588d..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgreSQLDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/PostgresPlusDialect.class b/target/classes/org/hibernate/dialect/PostgresPlusDialect.class deleted file mode 100644 index 781e4813..00000000 Binary files a/target/classes/org/hibernate/dialect/PostgresPlusDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/ProgressDialect.class b/target/classes/org/hibernate/dialect/ProgressDialect.class deleted file mode 100644 index 9eb92859..00000000 Binary files a/target/classes/org/hibernate/dialect/ProgressDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/RDMSOS2200Dialect$1.class b/target/classes/org/hibernate/dialect/RDMSOS2200Dialect$1.class deleted file mode 100644 index aa478c7c..00000000 Binary files a/target/classes/org/hibernate/dialect/RDMSOS2200Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/RDMSOS2200Dialect.class b/target/classes/org/hibernate/dialect/RDMSOS2200Dialect.class deleted file mode 100644 index 456b6d4b..00000000 Binary files a/target/classes/org/hibernate/dialect/RDMSOS2200Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/ResultColumnReferenceStrategy.class b/target/classes/org/hibernate/dialect/ResultColumnReferenceStrategy.class deleted file mode 100644 index 6af2971d..00000000 Binary files a/target/classes/org/hibernate/dialect/ResultColumnReferenceStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SAPDBDialect$1.class b/target/classes/org/hibernate/dialect/SAPDBDialect$1.class deleted file mode 100644 index aa5f27f0..00000000 Binary files a/target/classes/org/hibernate/dialect/SAPDBDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SAPDBDialect.class b/target/classes/org/hibernate/dialect/SAPDBDialect.class deleted file mode 100644 index aca50d99..00000000 Binary files a/target/classes/org/hibernate/dialect/SAPDBDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SQLServer2005Dialect$1.class b/target/classes/org/hibernate/dialect/SQLServer2005Dialect$1.class deleted file mode 100644 index 4b9f8137..00000000 Binary files a/target/classes/org/hibernate/dialect/SQLServer2005Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SQLServer2005Dialect$2.class b/target/classes/org/hibernate/dialect/SQLServer2005Dialect$2.class deleted file mode 100644 index fb52910b..00000000 Binary files a/target/classes/org/hibernate/dialect/SQLServer2005Dialect$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SQLServer2005Dialect.class b/target/classes/org/hibernate/dialect/SQLServer2005Dialect.class deleted file mode 100644 index 9c68771a..00000000 Binary files a/target/classes/org/hibernate/dialect/SQLServer2005Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SQLServer2008Dialect.class b/target/classes/org/hibernate/dialect/SQLServer2008Dialect.class deleted file mode 100644 index 068aad11..00000000 Binary files a/target/classes/org/hibernate/dialect/SQLServer2008Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SQLServer2012Dialect.class b/target/classes/org/hibernate/dialect/SQLServer2012Dialect.class deleted file mode 100644 index 38fb08f7..00000000 Binary files a/target/classes/org/hibernate/dialect/SQLServer2012Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SQLServerDialect$1.class b/target/classes/org/hibernate/dialect/SQLServerDialect$1.class deleted file mode 100644 index 92e137ea..00000000 Binary files a/target/classes/org/hibernate/dialect/SQLServerDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SQLServerDialect.class b/target/classes/org/hibernate/dialect/SQLServerDialect.class deleted file mode 100644 index fb757fe5..00000000 Binary files a/target/classes/org/hibernate/dialect/SQLServerDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Sybase11Dialect.class b/target/classes/org/hibernate/dialect/Sybase11Dialect.class deleted file mode 100644 index ee0842ef..00000000 Binary files a/target/classes/org/hibernate/dialect/Sybase11Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SybaseASE157Dialect$1.class b/target/classes/org/hibernate/dialect/SybaseASE157Dialect$1.class deleted file mode 100644 index 3ca7c23e..00000000 Binary files a/target/classes/org/hibernate/dialect/SybaseASE157Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SybaseASE157Dialect.class b/target/classes/org/hibernate/dialect/SybaseASE157Dialect.class deleted file mode 100644 index 374c5a90..00000000 Binary files a/target/classes/org/hibernate/dialect/SybaseASE157Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SybaseASE15Dialect.class b/target/classes/org/hibernate/dialect/SybaseASE15Dialect.class deleted file mode 100644 index 740edb86..00000000 Binary files a/target/classes/org/hibernate/dialect/SybaseASE15Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SybaseAnywhereDialect.class b/target/classes/org/hibernate/dialect/SybaseAnywhereDialect.class deleted file mode 100644 index 6a97f5cf..00000000 Binary files a/target/classes/org/hibernate/dialect/SybaseAnywhereDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/SybaseDialect.class b/target/classes/org/hibernate/dialect/SybaseDialect.class deleted file mode 100644 index 93a00638..00000000 Binary files a/target/classes/org/hibernate/dialect/SybaseDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Teradata14Dialect$1.class b/target/classes/org/hibernate/dialect/Teradata14Dialect$1.class deleted file mode 100644 index 82f22bb8..00000000 Binary files a/target/classes/org/hibernate/dialect/Teradata14Dialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Teradata14Dialect$TeradataIndexExporter.class b/target/classes/org/hibernate/dialect/Teradata14Dialect$TeradataIndexExporter.class deleted file mode 100644 index 43e6bc6e..00000000 Binary files a/target/classes/org/hibernate/dialect/Teradata14Dialect$TeradataIndexExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/Teradata14Dialect.class b/target/classes/org/hibernate/dialect/Teradata14Dialect.class deleted file mode 100644 index 093e85ba..00000000 Binary files a/target/classes/org/hibernate/dialect/Teradata14Dialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/TeradataDialect.class b/target/classes/org/hibernate/dialect/TeradataDialect.class deleted file mode 100644 index f9695cb7..00000000 Binary files a/target/classes/org/hibernate/dialect/TeradataDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/TimesTenDialect$1.class b/target/classes/org/hibernate/dialect/TimesTenDialect$1.class deleted file mode 100644 index 396062b7..00000000 Binary files a/target/classes/org/hibernate/dialect/TimesTenDialect$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/TimesTenDialect.class b/target/classes/org/hibernate/dialect/TimesTenDialect.class deleted file mode 100644 index 60d9db1a..00000000 Binary files a/target/classes/org/hibernate/dialect/TimesTenDialect.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/TypeNames.class b/target/classes/org/hibernate/dialect/TypeNames.class deleted file mode 100644 index 9dea6a18..00000000 Binary files a/target/classes/org/hibernate/dialect/TypeNames.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/AbstractAnsiTrimEmulationFunction.class b/target/classes/org/hibernate/dialect/function/AbstractAnsiTrimEmulationFunction.class deleted file mode 100644 index 7ab4c00d..00000000 Binary files a/target/classes/org/hibernate/dialect/function/AbstractAnsiTrimEmulationFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/AnsiTrimEmulationFunction.class b/target/classes/org/hibernate/dialect/function/AnsiTrimEmulationFunction.class deleted file mode 100644 index c72753ec..00000000 Binary files a/target/classes/org/hibernate/dialect/function/AnsiTrimEmulationFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/AnsiTrimFunction.class b/target/classes/org/hibernate/dialect/function/AnsiTrimFunction.class deleted file mode 100644 index 68ec0354..00000000 Binary files a/target/classes/org/hibernate/dialect/function/AnsiTrimFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/AvgWithArgumentCastFunction.class b/target/classes/org/hibernate/dialect/function/AvgWithArgumentCastFunction.class deleted file mode 100644 index 3a3697c5..00000000 Binary files a/target/classes/org/hibernate/dialect/function/AvgWithArgumentCastFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/CastFunction.class b/target/classes/org/hibernate/dialect/function/CastFunction.class deleted file mode 100644 index cb54cdbf..00000000 Binary files a/target/classes/org/hibernate/dialect/function/CastFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/CharIndexFunction.class b/target/classes/org/hibernate/dialect/function/CharIndexFunction.class deleted file mode 100644 index 99e1bbdb..00000000 Binary files a/target/classes/org/hibernate/dialect/function/CharIndexFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/ConditionalParenthesisFunction.class b/target/classes/org/hibernate/dialect/function/ConditionalParenthesisFunction.class deleted file mode 100644 index 38714897..00000000 Binary files a/target/classes/org/hibernate/dialect/function/ConditionalParenthesisFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/ConvertFunction.class b/target/classes/org/hibernate/dialect/function/ConvertFunction.class deleted file mode 100644 index a00a0e75..00000000 Binary files a/target/classes/org/hibernate/dialect/function/ConvertFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$1.class b/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$1.class deleted file mode 100644 index c146410e..00000000 Binary files a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$2.class b/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$2.class deleted file mode 100644 index 05349582..00000000 Binary files a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$3.class b/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$3.class deleted file mode 100644 index 62e94480..00000000 Binary files a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$4.class b/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$4.class deleted file mode 100644 index 5ac94802..00000000 Binary files a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$StringJoinTemplate.class b/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$StringJoinTemplate.class deleted file mode 100644 index fd39fe9a..00000000 Binary files a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$StringJoinTemplate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$StringTransformer.class b/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$StringTransformer.class deleted file mode 100644 index cb858e62..00000000 Binary files a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction$StringTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction.class b/target/classes/org/hibernate/dialect/function/DerbyConcatFunction.class deleted file mode 100644 index 2c0ffea3..00000000 Binary files a/target/classes/org/hibernate/dialect/function/DerbyConcatFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/NoArgSQLFunction.class b/target/classes/org/hibernate/dialect/function/NoArgSQLFunction.class deleted file mode 100644 index 90b79868..00000000 Binary files a/target/classes/org/hibernate/dialect/function/NoArgSQLFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/NvlFunction.class b/target/classes/org/hibernate/dialect/function/NvlFunction.class deleted file mode 100644 index 86a0d9e6..00000000 Binary files a/target/classes/org/hibernate/dialect/function/NvlFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/PositionSubstringFunction.class b/target/classes/org/hibernate/dialect/function/PositionSubstringFunction.class deleted file mode 100644 index 2f0798a5..00000000 Binary files a/target/classes/org/hibernate/dialect/function/PositionSubstringFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/SQLFunction.class b/target/classes/org/hibernate/dialect/function/SQLFunction.class deleted file mode 100644 index f17ec8f7..00000000 Binary files a/target/classes/org/hibernate/dialect/function/SQLFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/SQLFunctionRegistry.class b/target/classes/org/hibernate/dialect/function/SQLFunctionRegistry.class deleted file mode 100644 index 79997cfd..00000000 Binary files a/target/classes/org/hibernate/dialect/function/SQLFunctionRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/SQLFunctionTemplate.class b/target/classes/org/hibernate/dialect/function/SQLFunctionTemplate.class deleted file mode 100644 index 9a03a299..00000000 Binary files a/target/classes/org/hibernate/dialect/function/SQLFunctionTemplate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$AvgFunction.class b/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$AvgFunction.class deleted file mode 100644 index 2bcd993b..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$AvgFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction.class b/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction.class deleted file mode 100644 index 21fa2556..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$CountFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$MaxFunction.class b/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$MaxFunction.class deleted file mode 100644 index fc5c7363..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$MaxFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$MinFunction.class b/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$MinFunction.class deleted file mode 100644 index 73de68b4..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$MinFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$SumFunction.class b/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$SumFunction.class deleted file mode 100644 index a4b713ec..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions$SumFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions.class b/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions.class deleted file mode 100644 index 872a046f..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardAnsiSqlAggregationFunctions.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardJDBCEscapeFunction.class b/target/classes/org/hibernate/dialect/function/StandardJDBCEscapeFunction.class deleted file mode 100644 index 2d28c9e2..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardJDBCEscapeFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StandardSQLFunction.class b/target/classes/org/hibernate/dialect/function/StandardSQLFunction.class deleted file mode 100644 index acbea5a3..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StandardSQLFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/StaticPrecisionFspTimestampFunction.class b/target/classes/org/hibernate/dialect/function/StaticPrecisionFspTimestampFunction.class deleted file mode 100644 index 40a4ee3a..00000000 Binary files a/target/classes/org/hibernate/dialect/function/StaticPrecisionFspTimestampFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/TemplateRenderer.class b/target/classes/org/hibernate/dialect/function/TemplateRenderer.class deleted file mode 100644 index 2b25a19f..00000000 Binary files a/target/classes/org/hibernate/dialect/function/TemplateRenderer.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate$Options.class b/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate$Options.class deleted file mode 100644 index f124b05e..00000000 Binary files a/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate$Options.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate$Specification.class b/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate$Specification.class deleted file mode 100644 index 19b06246..00000000 Binary files a/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate$Specification.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate.class b/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate.class deleted file mode 100644 index 325d0ade..00000000 Binary files a/target/classes/org/hibernate/dialect/function/TrimFunctionTemplate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/function/VarArgsSQLFunction.class b/target/classes/org/hibernate/dialect/function/VarArgsSQLFunction.class deleted file mode 100644 index 93a6f7ca..00000000 Binary files a/target/classes/org/hibernate/dialect/function/VarArgsSQLFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/AbstractTransactSQLIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/AbstractTransactSQLIdentityColumnSupport.class deleted file mode 100644 index 2c2c07f3..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/AbstractTransactSQLIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/CUBRIDIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/CUBRIDIdentityColumnSupport.class deleted file mode 100644 index 58de5a46..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/CUBRIDIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/Chache71IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/Chache71IdentityColumnSupport.class deleted file mode 100644 index d205ee8b..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/Chache71IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/DB2390IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/DB2390IdentityColumnSupport.class deleted file mode 100644 index 00f918cf..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/DB2390IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/DB2IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/DB2IdentityColumnSupport.class deleted file mode 100644 index 62f907f9..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/DB2IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/GetGeneratedKeysDelegate.class b/target/classes/org/hibernate/dialect/identity/GetGeneratedKeysDelegate.class deleted file mode 100644 index 0f1fe667..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/GetGeneratedKeysDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/H2IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/H2IdentityColumnSupport.class deleted file mode 100644 index 2e23932b..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/H2IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/HSQLIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/HSQLIdentityColumnSupport.class deleted file mode 100644 index f91ae18e..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/HSQLIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/IdentityColumnSupport.class deleted file mode 100644 index 08975bff..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/IdentityColumnSupportImpl.class b/target/classes/org/hibernate/dialect/identity/IdentityColumnSupportImpl.class deleted file mode 100644 index 6ee6405e..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/IdentityColumnSupportImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/InformixIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/InformixIdentityColumnSupport.class deleted file mode 100644 index ecbf5837..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/InformixIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/Ingres10IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/Ingres10IdentityColumnSupport.class deleted file mode 100644 index 6133cca9..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/Ingres10IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/Ingres9IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/Ingres9IdentityColumnSupport.class deleted file mode 100644 index 35a9725c..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/Ingres9IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/JDataStoreIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/JDataStoreIdentityColumnSupport.class deleted file mode 100644 index 36455dc3..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/JDataStoreIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/MimerSQLIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/MimerSQLIdentityColumnSupport.class deleted file mode 100644 index 1aab37dc..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/MimerSQLIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/MySQLIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/MySQLIdentityColumnSupport.class deleted file mode 100644 index ba635d71..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/MySQLIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/Oracle12cGetGeneratedKeysDelegate.class b/target/classes/org/hibernate/dialect/identity/Oracle12cGetGeneratedKeysDelegate.class deleted file mode 100644 index 640adf2c..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/Oracle12cGetGeneratedKeysDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/Oracle12cIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/Oracle12cIdentityColumnSupport.class deleted file mode 100644 index 13483526..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/Oracle12cIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/PostgreSQL81IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/PostgreSQL81IdentityColumnSupport.class deleted file mode 100644 index c51a8c6b..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/PostgreSQL81IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/SQLServerIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/SQLServerIdentityColumnSupport.class deleted file mode 100644 index c88c678b..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/SQLServerIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/SybaseAnywhereIdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/SybaseAnywhereIdentityColumnSupport.class deleted file mode 100644 index 6c4630f7..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/SybaseAnywhereIdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/identity/Teradata14IdentityColumnSupport.class b/target/classes/org/hibernate/dialect/identity/Teradata14IdentityColumnSupport.class deleted file mode 100644 index fed648d0..00000000 Binary files a/target/classes/org/hibernate/dialect/identity/Teradata14IdentityColumnSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/AbstractSelectLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/AbstractSelectLockingStrategy.class deleted file mode 100644 index 2c13ad88..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/AbstractSelectLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/LockingStrategy.class b/target/classes/org/hibernate/dialect/lock/LockingStrategy.class deleted file mode 100644 index b3dd697e..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/LockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/LockingStrategyException.class b/target/classes/org/hibernate/dialect/lock/LockingStrategyException.class deleted file mode 100644 index 1521c3a0..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/LockingStrategyException.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/OptimisticEntityLockException.class b/target/classes/org/hibernate/dialect/lock/OptimisticEntityLockException.class deleted file mode 100644 index 30c53d92..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/OptimisticEntityLockException.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/OptimisticForceIncrementLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/OptimisticForceIncrementLockingStrategy.class deleted file mode 100644 index 181c1021..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/OptimisticForceIncrementLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/OptimisticLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/OptimisticLockingStrategy.class deleted file mode 100644 index fc2778d0..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/OptimisticLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/PessimisticEntityLockException.class b/target/classes/org/hibernate/dialect/lock/PessimisticEntityLockException.class deleted file mode 100644 index 5ffcccf0..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/PessimisticEntityLockException.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/PessimisticForceIncrementLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/PessimisticForceIncrementLockingStrategy.class deleted file mode 100644 index c727c25a..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/PessimisticForceIncrementLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/PessimisticReadSelectLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/PessimisticReadSelectLockingStrategy.class deleted file mode 100644 index 4f21d35a..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/PessimisticReadSelectLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/PessimisticReadUpdateLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/PessimisticReadUpdateLockingStrategy.class deleted file mode 100644 index fe11c746..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/PessimisticReadUpdateLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/PessimisticWriteSelectLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/PessimisticWriteSelectLockingStrategy.class deleted file mode 100644 index 09540219..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/PessimisticWriteSelectLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/PessimisticWriteUpdateLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/PessimisticWriteUpdateLockingStrategy.class deleted file mode 100644 index 25b5b4fa..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/PessimisticWriteUpdateLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/SelectLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/SelectLockingStrategy.class deleted file mode 100644 index 6a37e068..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/SelectLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/lock/UpdateLockingStrategy.class b/target/classes/org/hibernate/dialect/lock/UpdateLockingStrategy.class deleted file mode 100644 index 47dcba12..00000000 Binary files a/target/classes/org/hibernate/dialect/lock/UpdateLockingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/AbstractLimitHandler.class b/target/classes/org/hibernate/dialect/pagination/AbstractLimitHandler.class deleted file mode 100644 index fa1669b4..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/AbstractLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/CUBRIDLimitHandler.class b/target/classes/org/hibernate/dialect/pagination/CUBRIDLimitHandler.class deleted file mode 100644 index 99eb6ea7..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/CUBRIDLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/FirstLimitHandler.class b/target/classes/org/hibernate/dialect/pagination/FirstLimitHandler.class deleted file mode 100644 index 016ef8d8..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/FirstLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/LegacyLimitHandler.class b/target/classes/org/hibernate/dialect/pagination/LegacyLimitHandler.class deleted file mode 100644 index 183561da..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/LegacyLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/LimitHandler.class b/target/classes/org/hibernate/dialect/pagination/LimitHandler.class deleted file mode 100644 index 6f681ad6..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/LimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/LimitHelper.class b/target/classes/org/hibernate/dialect/pagination/LimitHelper.class deleted file mode 100644 index c6e5c1c6..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/LimitHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/NoopLimitHandler.class b/target/classes/org/hibernate/dialect/pagination/NoopLimitHandler.class deleted file mode 100644 index a6c83dda..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/NoopLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/SQL2008StandardLimitHandler.class b/target/classes/org/hibernate/dialect/pagination/SQL2008StandardLimitHandler.class deleted file mode 100644 index 5ad6bcdc..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/SQL2008StandardLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/SQLServer2005LimitHandler.class b/target/classes/org/hibernate/dialect/pagination/SQLServer2005LimitHandler.class deleted file mode 100644 index 8bc86702..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/SQLServer2005LimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/pagination/TopLimitHandler.class b/target/classes/org/hibernate/dialect/pagination/TopLimitHandler.class deleted file mode 100644 index 4f2c9c79..00000000 Binary files a/target/classes/org/hibernate/dialect/pagination/TopLimitHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/unique/DB2UniqueDelegate.class b/target/classes/org/hibernate/dialect/unique/DB2UniqueDelegate.class deleted file mode 100644 index 4a56afc7..00000000 Binary files a/target/classes/org/hibernate/dialect/unique/DB2UniqueDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/unique/DefaultUniqueDelegate.class b/target/classes/org/hibernate/dialect/unique/DefaultUniqueDelegate.class deleted file mode 100644 index f207276b..00000000 Binary files a/target/classes/org/hibernate/dialect/unique/DefaultUniqueDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/unique/InformixUniqueDelegate.class b/target/classes/org/hibernate/dialect/unique/InformixUniqueDelegate.class deleted file mode 100644 index d1bdb0da..00000000 Binary files a/target/classes/org/hibernate/dialect/unique/InformixUniqueDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/dialect/unique/UniqueDelegate.class b/target/classes/org/hibernate/dialect/unique/UniqueDelegate.class deleted file mode 100644 index 849cf0a9..00000000 Binary files a/target/classes/org/hibernate/dialect/unique/UniqueDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/AbstractEntityManagerImpl.class b/target/classes/org/hibernate/ejb/AbstractEntityManagerImpl.class deleted file mode 100644 index 8abfacbf..00000000 Binary files a/target/classes/org/hibernate/ejb/AbstractEntityManagerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/AbstractQueryImpl.class b/target/classes/org/hibernate/ejb/AbstractQueryImpl.class deleted file mode 100644 index a2269ccc..00000000 Binary files a/target/classes/org/hibernate/ejb/AbstractQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/AvailableSettings.class b/target/classes/org/hibernate/ejb/AvailableSettings.class deleted file mode 100644 index 918ca9b8..00000000 Binary files a/target/classes/org/hibernate/ejb/AvailableSettings.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/BaseQueryImpl.class b/target/classes/org/hibernate/ejb/BaseQueryImpl.class deleted file mode 100644 index f6939c24..00000000 Binary files a/target/classes/org/hibernate/ejb/BaseQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/HibernateEntityManager.class b/target/classes/org/hibernate/ejb/HibernateEntityManager.class deleted file mode 100644 index 7e5a97d6..00000000 Binary files a/target/classes/org/hibernate/ejb/HibernateEntityManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/HibernateEntityManagerFactory.class b/target/classes/org/hibernate/ejb/HibernateEntityManagerFactory.class deleted file mode 100644 index 9b8682ab..00000000 Binary files a/target/classes/org/hibernate/ejb/HibernateEntityManagerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/HibernateEntityManagerImplementor.class b/target/classes/org/hibernate/ejb/HibernateEntityManagerImplementor.class deleted file mode 100644 index c45141bc..00000000 Binary files a/target/classes/org/hibernate/ejb/HibernateEntityManagerImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/HibernatePersistence.class b/target/classes/org/hibernate/ejb/HibernatePersistence.class deleted file mode 100644 index 1e149016..00000000 Binary files a/target/classes/org/hibernate/ejb/HibernatePersistence.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/HibernateQuery.class b/target/classes/org/hibernate/ejb/HibernateQuery.class deleted file mode 100644 index 4ee58885..00000000 Binary files a/target/classes/org/hibernate/ejb/HibernateQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/QueryHints.class b/target/classes/org/hibernate/ejb/QueryHints.class deleted file mode 100644 index fd2b8488..00000000 Binary files a/target/classes/org/hibernate/ejb/QueryHints.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/cfg/spi/IdentifierGeneratorStrategyProvider.class b/target/classes/org/hibernate/ejb/cfg/spi/IdentifierGeneratorStrategyProvider.class deleted file mode 100644 index 3eebc2f7..00000000 Binary files a/target/classes/org/hibernate/ejb/cfg/spi/IdentifierGeneratorStrategyProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/ejb/packaging/Scanner.class b/target/classes/org/hibernate/ejb/packaging/Scanner.class deleted file mode 100644 index 2006ee17..00000000 Binary files a/target/classes/org/hibernate/ejb/packaging/Scanner.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/FetchStrategy.class b/target/classes/org/hibernate/engine/FetchStrategy.class deleted file mode 100644 index dfbf5a0d..00000000 Binary files a/target/classes/org/hibernate/engine/FetchStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/FetchStyle.class b/target/classes/org/hibernate/engine/FetchStyle.class deleted file mode 100644 index 941310ce..00000000 Binary files a/target/classes/org/hibernate/engine/FetchStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/FetchTiming.class b/target/classes/org/hibernate/engine/FetchTiming.class deleted file mode 100644 index b1327249..00000000 Binary files a/target/classes/org/hibernate/engine/FetchTiming.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/HibernateIterator.class b/target/classes/org/hibernate/engine/HibernateIterator.class deleted file mode 100644 index 0758e0e2..00000000 Binary files a/target/classes/org/hibernate/engine/HibernateIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/OptimisticLockStyle.class b/target/classes/org/hibernate/engine/OptimisticLockStyle.class deleted file mode 100644 index a5b56b71..00000000 Binary files a/target/classes/org/hibernate/engine/OptimisticLockStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/ResultSetMappingDefinition$1.class b/target/classes/org/hibernate/engine/ResultSetMappingDefinition$1.class deleted file mode 100644 index fe28eb73..00000000 Binary files a/target/classes/org/hibernate/engine/ResultSetMappingDefinition$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/ResultSetMappingDefinition.class b/target/classes/org/hibernate/engine/ResultSetMappingDefinition.class deleted file mode 100644 index 65cb7b5a..00000000 Binary files a/target/classes/org/hibernate/engine/ResultSetMappingDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/config/internal/ConfigurationServiceImpl.class b/target/classes/org/hibernate/engine/config/internal/ConfigurationServiceImpl.class deleted file mode 100644 index 24670b62..00000000 Binary files a/target/classes/org/hibernate/engine/config/internal/ConfigurationServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/config/internal/ConfigurationServiceInitiator.class b/target/classes/org/hibernate/engine/config/internal/ConfigurationServiceInitiator.class deleted file mode 100644 index 6335ad38..00000000 Binary files a/target/classes/org/hibernate/engine/config/internal/ConfigurationServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/config/spi/ConfigurationService$Converter.class b/target/classes/org/hibernate/engine/config/spi/ConfigurationService$Converter.class deleted file mode 100644 index 5d29b9fc..00000000 Binary files a/target/classes/org/hibernate/engine/config/spi/ConfigurationService$Converter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/config/spi/ConfigurationService.class b/target/classes/org/hibernate/engine/config/spi/ConfigurationService.class deleted file mode 100644 index ae97f49c..00000000 Binary files a/target/classes/org/hibernate/engine/config/spi/ConfigurationService.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/config/spi/StandardConverters$1.class b/target/classes/org/hibernate/engine/config/spi/StandardConverters$1.class deleted file mode 100644 index a96e4983..00000000 Binary files a/target/classes/org/hibernate/engine/config/spi/StandardConverters$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/config/spi/StandardConverters$2.class b/target/classes/org/hibernate/engine/config/spi/StandardConverters$2.class deleted file mode 100644 index cad787bc..00000000 Binary files a/target/classes/org/hibernate/engine/config/spi/StandardConverters$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/config/spi/StandardConverters.class b/target/classes/org/hibernate/engine/config/spi/StandardConverters.class deleted file mode 100644 index d2031737..00000000 Binary files a/target/classes/org/hibernate/engine/config/spi/StandardConverters.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/AbstractEntityEntry$BooleanState.class b/target/classes/org/hibernate/engine/internal/AbstractEntityEntry$BooleanState.class deleted file mode 100644 index 7a81f475..00000000 Binary files a/target/classes/org/hibernate/engine/internal/AbstractEntityEntry$BooleanState.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/AbstractEntityEntry$EnumState.class b/target/classes/org/hibernate/engine/internal/AbstractEntityEntry$EnumState.class deleted file mode 100644 index 26e2cbc1..00000000 Binary files a/target/classes/org/hibernate/engine/internal/AbstractEntityEntry$EnumState.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/AbstractEntityEntry.class b/target/classes/org/hibernate/engine/internal/AbstractEntityEntry.class deleted file mode 100644 index affc5359..00000000 Binary files a/target/classes/org/hibernate/engine/internal/AbstractEntityEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/CacheHelper.class b/target/classes/org/hibernate/engine/internal/CacheHelper.class deleted file mode 100644 index 222edf04..00000000 Binary files a/target/classes/org/hibernate/engine/internal/CacheHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/Cascade.class b/target/classes/org/hibernate/engine/internal/Cascade.class deleted file mode 100644 index 3c37130e..00000000 Binary files a/target/classes/org/hibernate/engine/internal/Cascade.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/CascadePoint.class b/target/classes/org/hibernate/engine/internal/CascadePoint.class deleted file mode 100644 index e9b1d934..00000000 Binary files a/target/classes/org/hibernate/engine/internal/CascadePoint.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/Collections.class b/target/classes/org/hibernate/engine/internal/Collections.class deleted file mode 100644 index 68fabd98..00000000 Binary files a/target/classes/org/hibernate/engine/internal/Collections.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/EntityEntryContext$1.class b/target/classes/org/hibernate/engine/internal/EntityEntryContext$1.class deleted file mode 100644 index ad870f7a..00000000 Binary files a/target/classes/org/hibernate/engine/internal/EntityEntryContext$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/EntityEntryContext$EntityEntryCrossRef.class b/target/classes/org/hibernate/engine/internal/EntityEntryContext$EntityEntryCrossRef.class deleted file mode 100644 index 57f8913d..00000000 Binary files a/target/classes/org/hibernate/engine/internal/EntityEntryContext$EntityEntryCrossRef.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/EntityEntryContext$EntityEntryCrossRefImpl.class b/target/classes/org/hibernate/engine/internal/EntityEntryContext$EntityEntryCrossRefImpl.class deleted file mode 100644 index 8f3da577..00000000 Binary files a/target/classes/org/hibernate/engine/internal/EntityEntryContext$EntityEntryCrossRefImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/EntityEntryContext$ManagedEntityImpl.class b/target/classes/org/hibernate/engine/internal/EntityEntryContext$ManagedEntityImpl.class deleted file mode 100644 index 10bf0e18..00000000 Binary files a/target/classes/org/hibernate/engine/internal/EntityEntryContext$ManagedEntityImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/EntityEntryContext.class b/target/classes/org/hibernate/engine/internal/EntityEntryContext.class deleted file mode 100644 index 150eedf2..00000000 Binary files a/target/classes/org/hibernate/engine/internal/EntityEntryContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/EntityEntryExtraStateHolder.class b/target/classes/org/hibernate/engine/internal/EntityEntryExtraStateHolder.class deleted file mode 100644 index 21ec03dd..00000000 Binary files a/target/classes/org/hibernate/engine/internal/EntityEntryExtraStateHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/ForeignKeys$Nullifier.class b/target/classes/org/hibernate/engine/internal/ForeignKeys$Nullifier.class deleted file mode 100644 index 89b1ebf0..00000000 Binary files a/target/classes/org/hibernate/engine/internal/ForeignKeys$Nullifier.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/ForeignKeys.class b/target/classes/org/hibernate/engine/internal/ForeignKeys.class deleted file mode 100644 index 8d91be95..00000000 Binary files a/target/classes/org/hibernate/engine/internal/ForeignKeys.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/ImmutableEntityEntry$1.class b/target/classes/org/hibernate/engine/internal/ImmutableEntityEntry$1.class deleted file mode 100644 index 2f3496ba..00000000 Binary files a/target/classes/org/hibernate/engine/internal/ImmutableEntityEntry$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/ImmutableEntityEntry.class b/target/classes/org/hibernate/engine/internal/ImmutableEntityEntry.class deleted file mode 100644 index d3641848..00000000 Binary files a/target/classes/org/hibernate/engine/internal/ImmutableEntityEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/ImmutableEntityEntryFactory.class b/target/classes/org/hibernate/engine/internal/ImmutableEntityEntryFactory.class deleted file mode 100644 index 17c7ef84..00000000 Binary files a/target/classes/org/hibernate/engine/internal/ImmutableEntityEntryFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/JoinHelper.class b/target/classes/org/hibernate/engine/internal/JoinHelper.class deleted file mode 100644 index a1605b09..00000000 Binary files a/target/classes/org/hibernate/engine/internal/JoinHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/JoinSequence$Join.class b/target/classes/org/hibernate/engine/internal/JoinSequence$Join.class deleted file mode 100644 index 6ed6364a..00000000 Binary files a/target/classes/org/hibernate/engine/internal/JoinSequence$Join.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/JoinSequence$Selector.class b/target/classes/org/hibernate/engine/internal/JoinSequence$Selector.class deleted file mode 100644 index 2f2931af..00000000 Binary files a/target/classes/org/hibernate/engine/internal/JoinSequence$Selector.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/JoinSequence.class b/target/classes/org/hibernate/engine/internal/JoinSequence.class deleted file mode 100644 index 5d21c715..00000000 Binary files a/target/classes/org/hibernate/engine/internal/JoinSequence.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/MutableEntityEntry.class b/target/classes/org/hibernate/engine/internal/MutableEntityEntry.class deleted file mode 100644 index 202d9b91..00000000 Binary files a/target/classes/org/hibernate/engine/internal/MutableEntityEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/MutableEntityEntryFactory.class b/target/classes/org/hibernate/engine/internal/MutableEntityEntryFactory.class deleted file mode 100644 index 7e60dd50..00000000 Binary files a/target/classes/org/hibernate/engine/internal/MutableEntityEntryFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$1.class b/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$1.class deleted file mode 100644 index 2c5fcc5d..00000000 Binary files a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$CachedNaturalId.class b/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$CachedNaturalId.class deleted file mode 100644 index b8169df0..00000000 Binary files a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$CachedNaturalId.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$NaturalIdResolutionCache.class b/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$NaturalIdResolutionCache.class deleted file mode 100644 index 51801ac0..00000000 Binary files a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate$NaturalIdResolutionCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate.class b/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate.class deleted file mode 100644 index 1e747ea9..00000000 Binary files a/target/classes/org/hibernate/engine/internal/NaturalIdXrefDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/NonNullableTransientDependencies.class b/target/classes/org/hibernate/engine/internal/NonNullableTransientDependencies.class deleted file mode 100644 index 80a245d4..00000000 Binary files a/target/classes/org/hibernate/engine/internal/NonNullableTransientDependencies.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/Nullability.class b/target/classes/org/hibernate/engine/internal/Nullability.class deleted file mode 100644 index 5debbe13..00000000 Binary files a/target/classes/org/hibernate/engine/internal/Nullability.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/ParameterBinder$NamedParameterSource.class b/target/classes/org/hibernate/engine/internal/ParameterBinder$NamedParameterSource.class deleted file mode 100644 index 466fe1ec..00000000 Binary files a/target/classes/org/hibernate/engine/internal/ParameterBinder$NamedParameterSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/ParameterBinder.class b/target/classes/org/hibernate/engine/internal/ParameterBinder.class deleted file mode 100644 index a4536bdc..00000000 Binary files a/target/classes/org/hibernate/engine/internal/ParameterBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/SessionEventListenerManagerImpl.class b/target/classes/org/hibernate/engine/internal/SessionEventListenerManagerImpl.class deleted file mode 100644 index 4009413d..00000000 Binary files a/target/classes/org/hibernate/engine/internal/SessionEventListenerManagerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1$1.class b/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1$1.class deleted file mode 100644 index 5bd24404..00000000 Binary files a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1$2.class b/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1$2.class deleted file mode 100644 index ce6b6ca6..00000000 Binary files a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1.class b/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1.class deleted file mode 100644 index 13a39dc8..00000000 Binary files a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$2.class b/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$2.class deleted file mode 100644 index a99d7eea..00000000 Binary files a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext.class b/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext.class deleted file mode 100644 index 5cc65088..00000000 Binary files a/target/classes/org/hibernate/engine/internal/StatefulPersistenceContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/StatisticalLoggingSessionEventListener.class b/target/classes/org/hibernate/engine/internal/StatisticalLoggingSessionEventListener.class deleted file mode 100644 index 4c709c3b..00000000 Binary files a/target/classes/org/hibernate/engine/internal/StatisticalLoggingSessionEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/TwoPhaseLoad.class b/target/classes/org/hibernate/engine/internal/TwoPhaseLoad.class deleted file mode 100644 index 0f08e4a3..00000000 Binary files a/target/classes/org/hibernate/engine/internal/TwoPhaseLoad.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/UnsavedValueFactory.class b/target/classes/org/hibernate/engine/internal/UnsavedValueFactory.class deleted file mode 100644 index 0ed93f25..00000000 Binary files a/target/classes/org/hibernate/engine/internal/UnsavedValueFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/internal/Versioning.class b/target/classes/org/hibernate/engine/internal/Versioning.class deleted file mode 100644 index 3668227f..00000000 Binary files a/target/classes/org/hibernate/engine/internal/Versioning.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/AbstractLobCreator.class b/target/classes/org/hibernate/engine/jdbc/AbstractLobCreator.class deleted file mode 100644 index 6b9962bb..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/AbstractLobCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/BinaryStream.class b/target/classes/org/hibernate/engine/jdbc/BinaryStream.class deleted file mode 100644 index 8e057fe6..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/BinaryStream.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/BlobImplementer.class b/target/classes/org/hibernate/engine/jdbc/BlobImplementer.class deleted file mode 100644 index 37a92760..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/BlobImplementer.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/BlobProxy$1.class b/target/classes/org/hibernate/engine/jdbc/BlobProxy$1.class deleted file mode 100644 index cb181bf0..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/BlobProxy$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/BlobProxy$StreamBackedBinaryStream.class b/target/classes/org/hibernate/engine/jdbc/BlobProxy$StreamBackedBinaryStream.class deleted file mode 100644 index cb1b71fb..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/BlobProxy$StreamBackedBinaryStream.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/BlobProxy.class b/target/classes/org/hibernate/engine/jdbc/BlobProxy.class deleted file mode 100644 index 1d778bd2..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/BlobProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/CharacterStream.class b/target/classes/org/hibernate/engine/jdbc/CharacterStream.class deleted file mode 100644 index fa67fa07..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/CharacterStream.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ClobImplementer.class b/target/classes/org/hibernate/engine/jdbc/ClobImplementer.class deleted file mode 100644 index 0e8c8052..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ClobImplementer.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ClobProxy.class b/target/classes/org/hibernate/engine/jdbc/ClobProxy.class deleted file mode 100644 index 92789be8..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ClobProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ColumnNameCache.class b/target/classes/org/hibernate/engine/jdbc/ColumnNameCache.class deleted file mode 100644 index 0e116978..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ColumnNameCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$1.class b/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$1.class deleted file mode 100644 index 1f0d15de..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$2.class b/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$2.class deleted file mode 100644 index 6f43dbc3..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$3.class b/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$3.class deleted file mode 100644 index d81c68bd..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator.class b/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator.class deleted file mode 100644 index 86ef5379..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ContextualLobCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/LobCreationContext$Callback.class b/target/classes/org/hibernate/engine/jdbc/LobCreationContext$Callback.class deleted file mode 100644 index f1ef93af..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/LobCreationContext$Callback.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/LobCreationContext.class b/target/classes/org/hibernate/engine/jdbc/LobCreationContext.class deleted file mode 100644 index b69f0cb5..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/LobCreationContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/LobCreator.class b/target/classes/org/hibernate/engine/jdbc/LobCreator.class deleted file mode 100644 index ed0d6c6b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/LobCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/NClobImplementer.class b/target/classes/org/hibernate/engine/jdbc/NClobImplementer.class deleted file mode 100644 index c2c37754..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/NClobImplementer.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/NClobProxy.class b/target/classes/org/hibernate/engine/jdbc/NClobProxy.class deleted file mode 100644 index 7ce8de9b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/NClobProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/NonContextualLobCreator.class b/target/classes/org/hibernate/engine/jdbc/NonContextualLobCreator.class deleted file mode 100644 index 7e7a19bb..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/NonContextualLobCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ReaderInputStream.class b/target/classes/org/hibernate/engine/jdbc/ReaderInputStream.class deleted file mode 100644 index 64d5a8b6..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ReaderInputStream.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/ResultSetWrapperProxy.class b/target/classes/org/hibernate/engine/jdbc/ResultSetWrapperProxy.class deleted file mode 100644 index 3e9c55c9..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/ResultSetWrapperProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/SerializableBlobProxy.class b/target/classes/org/hibernate/engine/jdbc/SerializableBlobProxy.class deleted file mode 100644 index e78ae9f1..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/SerializableBlobProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/SerializableClobProxy.class b/target/classes/org/hibernate/engine/jdbc/SerializableClobProxy.class deleted file mode 100644 index b0ea9b10..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/SerializableClobProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/SerializableNClobProxy.class b/target/classes/org/hibernate/engine/jdbc/SerializableNClobProxy.class deleted file mode 100644 index 0c35e9fb..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/SerializableNClobProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/Size$LobMultiplier.class b/target/classes/org/hibernate/engine/jdbc/Size$LobMultiplier.class deleted file mode 100644 index 054edf19..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/Size$LobMultiplier.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/Size.class b/target/classes/org/hibernate/engine/jdbc/Size.class deleted file mode 100644 index 45e54185..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/Size.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/StreamUtils.class b/target/classes/org/hibernate/engine/jdbc/StreamUtils.class deleted file mode 100644 index ffc73924..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/StreamUtils.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/WrappedBlob.class b/target/classes/org/hibernate/engine/jdbc/WrappedBlob.class deleted file mode 100644 index 1a77a00b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/WrappedBlob.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/WrappedClob.class b/target/classes/org/hibernate/engine/jdbc/WrappedClob.class deleted file mode 100644 index be9522b8..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/WrappedClob.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/WrappedNClob.class b/target/classes/org/hibernate/engine/jdbc/WrappedNClob.class deleted file mode 100644 index d5885f53..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/WrappedNClob.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/internal/AbstractBatchImpl.class b/target/classes/org/hibernate/engine/jdbc/batch/internal/AbstractBatchImpl.class deleted file mode 100644 index 19c01878..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/internal/AbstractBatchImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/internal/BasicBatchKey.class b/target/classes/org/hibernate/engine/jdbc/batch/internal/BasicBatchKey.class deleted file mode 100644 index e9bb6185..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/internal/BasicBatchKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchBuilderImpl.class b/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchBuilderImpl.class deleted file mode 100644 index 31290622..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchBuilderInitiator.class b/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchBuilderInitiator.class deleted file mode 100644 index dbf77926..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchBuilderInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchingBatch.class b/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchingBatch.class deleted file mode 100644 index 805e2b13..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/internal/BatchingBatch.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/internal/NonBatchingBatch.class b/target/classes/org/hibernate/engine/jdbc/batch/internal/NonBatchingBatch.class deleted file mode 100644 index 1c9d1042..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/internal/NonBatchingBatch.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/spi/Batch.class b/target/classes/org/hibernate/engine/jdbc/batch/spi/Batch.class deleted file mode 100644 index 408e279f..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/spi/Batch.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchBuilder.class b/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchBuilder.class deleted file mode 100644 index dcb8d48f..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchKey.class b/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchKey.class deleted file mode 100644 index 27992b23..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchObserver.class b/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchObserver.class deleted file mode 100644 index 234d13c9..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/batch/spi/BatchObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1$1$1.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1$1$1.class deleted file mode 100644 index 20b2b08e..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1$1.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1$1.class deleted file mode 100644 index 98b2ce35..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1.class deleted file mode 100644 index ac51da2f..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator.class deleted file mode 100644 index 43b07ec4..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/BasicConnectionCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionCreator.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionCreator.class deleted file mode 100644 index 4dbc13de..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionCreatorBuilder.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionCreatorBuilder.class deleted file mode 100644 index 4a1b6a9c..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionCreatorBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionProviderInitiator$1.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionProviderInitiator$1.class deleted file mode 100644 index b53cd450..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionProviderInitiator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionProviderInitiator.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionProviderInitiator.class deleted file mode 100644 index 4f6586f1..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/ConnectionProviderInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/DatasourceConnectionProviderImpl.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/DatasourceConnectionProviderImpl.class deleted file mode 100644 index f3c5c40e..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/DatasourceConnectionProviderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverConnectionCreator.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverConnectionCreator.class deleted file mode 100644 index 65435594..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverConnectionCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionCreator.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionCreator.class deleted file mode 100644 index 376919d8..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionProviderImpl$1.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionProviderImpl$1.class deleted file mode 100644 index fa5e70f2..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionProviderImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionProviderImpl.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionProviderImpl.class deleted file mode 100644 index cf1e300a..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/DriverManagerConnectionProviderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/MultiTenantConnectionProviderInitiator.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/MultiTenantConnectionProviderInitiator.class deleted file mode 100644 index dbafdd8b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/MultiTenantConnectionProviderInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections$1.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections$1.class deleted file mode 100644 index a238e44b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections$Builder.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections$Builder.class deleted file mode 100644 index c7e562c2..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections.class deleted file mode 100644 index 5a42c694..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/PooledConnections.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/internal/UserSuppliedConnectionProviderImpl.class b/target/classes/org/hibernate/engine/jdbc/connections/internal/UserSuppliedConnectionProviderImpl.class deleted file mode 100644 index 03ef708c..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/internal/UserSuppliedConnectionProviderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/spi/AbstractDataSourceBasedMultiTenantConnectionProviderImpl.class b/target/classes/org/hibernate/engine/jdbc/connections/spi/AbstractDataSourceBasedMultiTenantConnectionProviderImpl.class deleted file mode 100644 index ef7f4ad2..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/spi/AbstractDataSourceBasedMultiTenantConnectionProviderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/spi/AbstractMultiTenantConnectionProvider.class b/target/classes/org/hibernate/engine/jdbc/connections/spi/AbstractMultiTenantConnectionProvider.class deleted file mode 100644 index 257d0447..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/spi/AbstractMultiTenantConnectionProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/spi/ConnectionProvider.class b/target/classes/org/hibernate/engine/jdbc/connections/spi/ConnectionProvider.class deleted file mode 100644 index 2e854de1..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/spi/ConnectionProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/spi/DataSourceBasedMultiTenantConnectionProviderImpl.class b/target/classes/org/hibernate/engine/jdbc/connections/spi/DataSourceBasedMultiTenantConnectionProviderImpl.class deleted file mode 100644 index 5f08d237..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/spi/DataSourceBasedMultiTenantConnectionProviderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/spi/JdbcConnectionAccess.class b/target/classes/org/hibernate/engine/jdbc/connections/spi/JdbcConnectionAccess.class deleted file mode 100644 index e62cd91b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/spi/JdbcConnectionAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/connections/spi/MultiTenantConnectionProvider.class b/target/classes/org/hibernate/engine/jdbc/connections/spi/MultiTenantConnectionProvider.class deleted file mode 100644 index ba98fc78..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/connections/spi/MultiTenantConnectionProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/cursor/internal/RefCursorSupportInitiator.class b/target/classes/org/hibernate/engine/jdbc/cursor/internal/RefCursorSupportInitiator.class deleted file mode 100644 index f863f01e..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/cursor/internal/RefCursorSupportInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/cursor/internal/StandardRefCursorSupport.class b/target/classes/org/hibernate/engine/jdbc/cursor/internal/StandardRefCursorSupport.class deleted file mode 100644 index 8742d916..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/cursor/internal/StandardRefCursorSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/cursor/spi/RefCursorSupport.class b/target/classes/org/hibernate/engine/jdbc/cursor/spi/RefCursorSupport.class deleted file mode 100644 index 9d193041..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/cursor/spi/RefCursorSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectFactoryImpl.class b/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectFactoryImpl.class deleted file mode 100644 index f21298aa..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectFactoryInitiator.class b/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectFactoryInitiator.class deleted file mode 100644 index a78808ea..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectFactoryInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectResolverInitiator.class b/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectResolverInitiator.class deleted file mode 100644 index 65346d03..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectResolverInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectResolverSet.class b/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectResolverSet.class deleted file mode 100644 index d3e38d11..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/internal/DialectResolverSet.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/internal/StandardDialectResolver.class b/target/classes/org/hibernate/engine/jdbc/dialect/internal/StandardDialectResolver.class deleted file mode 100644 index b1921775..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/internal/StandardDialectResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicDialectResolver.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicDialectResolver.class deleted file mode 100644 index ff6d16b9..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicDialectResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter$1.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter$1.class deleted file mode 100644 index d096820a..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter$ConstraintNameExtracter.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter$ConstraintNameExtracter.class deleted file mode 100644 index 35200f1c..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter$ConstraintNameExtracter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter.class deleted file mode 100644 index 39fe0997..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/BasicSQLExceptionConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DatabaseMetaDataDialectResolutionInfoAdapter.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/DatabaseMetaDataDialectResolutionInfoAdapter.class deleted file mode 100644 index a2a39c90..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DatabaseMetaDataDialectResolutionInfoAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectFactory.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectFactory.class deleted file mode 100644 index 70ea741b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolutionInfo.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolutionInfo.class deleted file mode 100644 index b4fb0bd3..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolutionInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolutionInfoSource.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolutionInfoSource.class deleted file mode 100644 index 72b18b14..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolutionInfoSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolver.class b/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolver.class deleted file mode 100644 index 57376163..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/dialect/spi/DialectResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver$SchemaNameResolverFallbackDelegate.class b/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver$SchemaNameResolverFallbackDelegate.class deleted file mode 100644 index 1504d4e0..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver$SchemaNameResolverFallbackDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver$SchemaNameResolverJava17Delegate.class b/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver$SchemaNameResolverJava17Delegate.class deleted file mode 100644 index abc92b2c..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver$SchemaNameResolverJava17Delegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver.class b/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver.class deleted file mode 100644 index 3bb141c9..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/DefaultSchemaNameResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl$1.class b/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl$1.class deleted file mode 100644 index 5629a945..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl$Builder.class b/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl$Builder.class deleted file mode 100644 index 8e1e0c89..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl.class b/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl.class deleted file mode 100644 index f045e64d..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/ExtractedDatabaseMetaDataImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentImpl.class b/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentImpl.class deleted file mode 100644 index aaf1b477..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$1.class b/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$1.class deleted file mode 100644 index 661f8763..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess.class b/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess.class deleted file mode 100644 index a4264e7e..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$ConnectionProviderJdbcConnectionAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$MultiTenantConnectionProviderJdbcConnectionAccess.class b/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$MultiTenantConnectionProviderJdbcConnectionAccess.class deleted file mode 100644 index 3976cc9b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator$MultiTenantConnectionProviderJdbcConnectionAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator.class b/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator.class deleted file mode 100644 index 06ffe614..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/JdbcEnvironmentInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/LobCreatorBuilderImpl.class b/target/classes/org/hibernate/engine/jdbc/env/internal/LobCreatorBuilderImpl.class deleted file mode 100644 index 721e2acf..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/LobCreatorBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/NormalizingIdentifierHelperImpl$1.class b/target/classes/org/hibernate/engine/jdbc/env/internal/NormalizingIdentifierHelperImpl$1.class deleted file mode 100644 index 2b7e3ea1..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/NormalizingIdentifierHelperImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/NormalizingIdentifierHelperImpl.class b/target/classes/org/hibernate/engine/jdbc/env/internal/NormalizingIdentifierHelperImpl.class deleted file mode 100644 index 1db8918e..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/NormalizingIdentifierHelperImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$1.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$1.class deleted file mode 100644 index b10c008d..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$CatalogNameFormat.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$CatalogNameFormat.class deleted file mode 100644 index 3487391a..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$CatalogNameFormat.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$CatalogSchemaNameFormat.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$CatalogSchemaNameFormat.class deleted file mode 100644 index 58f797ab..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$CatalogSchemaNameFormat.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$Format.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$Format.class deleted file mode 100644 index 905df20c..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$Format.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$NameCatalogFormat.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$NameCatalogFormat.class deleted file mode 100644 index e455cbf0..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$NameCatalogFormat.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$NoQualifierSupportFormat.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$NoQualifierSupportFormat.class deleted file mode 100644 index 9285b06c..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$NoQualifierSupportFormat.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$SchemaNameCatalogFormat.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$SchemaNameCatalogFormat.class deleted file mode 100644 index 0753be5a..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$SchemaNameCatalogFormat.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$SchemaNameFormat.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$SchemaNameFormat.class deleted file mode 100644 index 032fd4d2..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl$SchemaNameFormat.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl.class b/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl.class deleted file mode 100644 index 88311bac..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/internal/QualifiedObjectNameFormatterStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/AnsiSqlKeywords.class b/target/classes/org/hibernate/engine/jdbc/env/spi/AnsiSqlKeywords.class deleted file mode 100644 index 47635152..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/AnsiSqlKeywords.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/ExtractedDatabaseMetaData.class b/target/classes/org/hibernate/engine/jdbc/env/spi/ExtractedDatabaseMetaData.class deleted file mode 100644 index 9d744d66..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/ExtractedDatabaseMetaData.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierCaseStrategy.class b/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierCaseStrategy.class deleted file mode 100644 index c571a4ab..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierCaseStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierHelper.class b/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierHelper.class deleted file mode 100644 index f15adc4f..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierHelperBuilder.class b/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierHelperBuilder.class deleted file mode 100644 index 666547ff..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/IdentifierHelperBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/JdbcEnvironment.class b/target/classes/org/hibernate/engine/jdbc/env/spi/JdbcEnvironment.class deleted file mode 100644 index 9ea6693a..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/JdbcEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/LobCreatorBuilder.class b/target/classes/org/hibernate/engine/jdbc/env/spi/LobCreatorBuilder.class deleted file mode 100644 index 70eb1ec7..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/LobCreatorBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/NameQualifierSupport.class b/target/classes/org/hibernate/engine/jdbc/env/spi/NameQualifierSupport.class deleted file mode 100644 index 8238e721..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/NameQualifierSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/QualifiedObjectNameFormatter.class b/target/classes/org/hibernate/engine/jdbc/env/spi/QualifiedObjectNameFormatter.class deleted file mode 100644 index 03a1a43f..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/QualifiedObjectNameFormatter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/SQLStateType.class b/target/classes/org/hibernate/engine/jdbc/env/spi/SQLStateType.class deleted file mode 100644 index 66c966bd..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/SQLStateType.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/env/spi/SchemaNameResolver.class b/target/classes/org/hibernate/engine/jdbc/env/spi/SchemaNameResolver.class deleted file mode 100644 index 12664de8..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/env/spi/SchemaNameResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/BasicFormatterImpl$FormatProcess.class b/target/classes/org/hibernate/engine/jdbc/internal/BasicFormatterImpl$FormatProcess.class deleted file mode 100644 index f537c700..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/BasicFormatterImpl$FormatProcess.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/BasicFormatterImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/BasicFormatterImpl.class deleted file mode 100644 index f10f04b8..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/BasicFormatterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/BinaryStreamImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/BinaryStreamImpl.class deleted file mode 100644 index 2184929e..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/BinaryStreamImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/CharacterStreamImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/CharacterStreamImpl.class deleted file mode 100644 index 54167b63..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/CharacterStreamImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/DDLFormatterImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/DDLFormatterImpl.class deleted file mode 100644 index 29a18b4c..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/DDLFormatterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/FormatStyle$NoFormatImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/FormatStyle$NoFormatImpl.class deleted file mode 100644 index 5b7e32d8..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/FormatStyle$NoFormatImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/FormatStyle.class b/target/classes/org/hibernate/engine/jdbc/internal/FormatStyle.class deleted file mode 100644 index ff677023..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/FormatStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/Formatter.class b/target/classes/org/hibernate/engine/jdbc/internal/Formatter.class deleted file mode 100644 index 1413c963..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/Formatter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/JdbcCoordinatorImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/JdbcCoordinatorImpl.class deleted file mode 100644 index 2feb6011..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/JdbcCoordinatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/JdbcServicesImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/JdbcServicesImpl.class deleted file mode 100644 index bb4131a7..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/JdbcServicesImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/JdbcServicesInitiator.class b/target/classes/org/hibernate/engine/jdbc/internal/JdbcServicesInitiator.class deleted file mode 100644 index 2b9b3748..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/JdbcServicesInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/LobCreatorBuilder.class b/target/classes/org/hibernate/engine/jdbc/internal/LobCreatorBuilder.class deleted file mode 100644 index 90a80529..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/LobCreatorBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/ResultSetReturnImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/ResultSetReturnImpl.class deleted file mode 100644 index 7cf53849..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/ResultSetReturnImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/ResultSetWrapperImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/ResultSetWrapperImpl.class deleted file mode 100644 index a5092e8d..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/ResultSetWrapperImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$1.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$1.class deleted file mode 100644 index e79bc900..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$2.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$2.class deleted file mode 100644 index b63a5f98..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$3.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$3.class deleted file mode 100644 index 4c14fd90..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$4.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$4.class deleted file mode 100644 index 025b5358..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$5.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$5.class deleted file mode 100644 index 0857d3f9..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$QueryStatementPreparationTemplate.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$QueryStatementPreparationTemplate.class deleted file mode 100644 index 2db0b87b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$QueryStatementPreparationTemplate.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$StatementPreparationTemplate.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$StatementPreparationTemplate.class deleted file mode 100644 index 9efb78af..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl$StatementPreparationTemplate.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl.class b/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl.class deleted file mode 100644 index e8b5e7c9..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/internal/StatementPreparerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/ConnectionObserver.class b/target/classes/org/hibernate/engine/jdbc/spi/ConnectionObserver.class deleted file mode 100644 index 24e0f52d..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/ConnectionObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/ConnectionObserverAdapter.class b/target/classes/org/hibernate/engine/jdbc/spi/ConnectionObserverAdapter.class deleted file mode 100644 index 0cf140d9..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/ConnectionObserverAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/InvalidatableWrapper.class b/target/classes/org/hibernate/engine/jdbc/spi/InvalidatableWrapper.class deleted file mode 100644 index 1d2b9a53..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/InvalidatableWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/JdbcCoordinator.class b/target/classes/org/hibernate/engine/jdbc/spi/JdbcCoordinator.class deleted file mode 100644 index fa80348d..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/JdbcCoordinator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/JdbcServices.class b/target/classes/org/hibernate/engine/jdbc/spi/JdbcServices.class deleted file mode 100644 index 2d93f8da..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/JdbcServices.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/JdbcWrapper.class b/target/classes/org/hibernate/engine/jdbc/spi/JdbcWrapper.class deleted file mode 100644 index 8a748468..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/JdbcWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/NonDurableConnectionObserver.class b/target/classes/org/hibernate/engine/jdbc/spi/NonDurableConnectionObserver.class deleted file mode 100644 index 9511e493..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/NonDurableConnectionObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/ResultSetReturn.class b/target/classes/org/hibernate/engine/jdbc/spi/ResultSetReturn.class deleted file mode 100644 index 0282c0de..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/ResultSetReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/ResultSetWrapper.class b/target/classes/org/hibernate/engine/jdbc/spi/ResultSetWrapper.class deleted file mode 100644 index 1eb579e4..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/ResultSetWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/SchemaNameResolver.class b/target/classes/org/hibernate/engine/jdbc/spi/SchemaNameResolver.class deleted file mode 100644 index fbaf86a7..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/SchemaNameResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$1.class b/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$1.class deleted file mode 100644 index bae7a281..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$StandardWarningHandler.class b/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$StandardWarningHandler.class deleted file mode 100644 index 0f7fe13e..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$StandardWarningHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$WarningHandler.class b/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$WarningHandler.class deleted file mode 100644 index d92e2693..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$WarningHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$WarningHandlerLoggingSupport.class b/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$WarningHandlerLoggingSupport.class deleted file mode 100644 index e3f7bd89..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper$WarningHandlerLoggingSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper.class b/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper.class deleted file mode 100644 index c8e7ec30..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/SqlExceptionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/SqlStatementLogger.class b/target/classes/org/hibernate/engine/jdbc/spi/SqlStatementLogger.class deleted file mode 100644 index 12db8a0b..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/SqlStatementLogger.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/StatementPreparer.class b/target/classes/org/hibernate/engine/jdbc/spi/StatementPreparer.class deleted file mode 100644 index 9edb76e4..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/StatementPreparer.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/TypeInfo.class b/target/classes/org/hibernate/engine/jdbc/spi/TypeInfo.class deleted file mode 100644 index 481b12f2..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/TypeInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/TypeNullability.class b/target/classes/org/hibernate/engine/jdbc/spi/TypeNullability.class deleted file mode 100644 index 2eeb9eb7..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/TypeNullability.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jdbc/spi/TypeSearchability.class b/target/classes/org/hibernate/engine/jdbc/spi/TypeSearchability.class deleted file mode 100644 index 65aef5d8..00000000 Binary files a/target/classes/org/hibernate/engine/jdbc/spi/TypeSearchability.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jndi/JndiException.class b/target/classes/org/hibernate/engine/jndi/JndiException.class deleted file mode 100644 index 86da1295..00000000 Binary files a/target/classes/org/hibernate/engine/jndi/JndiException.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jndi/JndiNameException.class b/target/classes/org/hibernate/engine/jndi/JndiNameException.class deleted file mode 100644 index 2ae482d2..00000000 Binary files a/target/classes/org/hibernate/engine/jndi/JndiNameException.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jndi/internal/JndiServiceImpl.class b/target/classes/org/hibernate/engine/jndi/internal/JndiServiceImpl.class deleted file mode 100644 index 76359eef..00000000 Binary files a/target/classes/org/hibernate/engine/jndi/internal/JndiServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jndi/internal/JndiServiceInitiator.class b/target/classes/org/hibernate/engine/jndi/internal/JndiServiceInitiator.class deleted file mode 100644 index debc726d..00000000 Binary files a/target/classes/org/hibernate/engine/jndi/internal/JndiServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/jndi/spi/JndiService.class b/target/classes/org/hibernate/engine/jndi/spi/JndiService.class deleted file mode 100644 index 6faae492..00000000 Binary files a/target/classes/org/hibernate/engine/jndi/spi/JndiService.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/loading/internal/CollectionLoadContext.class b/target/classes/org/hibernate/engine/loading/internal/CollectionLoadContext.class deleted file mode 100644 index 894b4c3a..00000000 Binary files a/target/classes/org/hibernate/engine/loading/internal/CollectionLoadContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/loading/internal/EntityLoadContext.class b/target/classes/org/hibernate/engine/loading/internal/EntityLoadContext.class deleted file mode 100644 index 4029aac8..00000000 Binary files a/target/classes/org/hibernate/engine/loading/internal/EntityLoadContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/loading/internal/LoadContexts.class b/target/classes/org/hibernate/engine/loading/internal/LoadContexts.class deleted file mode 100644 index cbbb7eab..00000000 Binary files a/target/classes/org/hibernate/engine/loading/internal/LoadContexts.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/loading/internal/LoadingCollectionEntry.class b/target/classes/org/hibernate/engine/loading/internal/LoadingCollectionEntry.class deleted file mode 100644 index c08cf646..00000000 Binary files a/target/classes/org/hibernate/engine/loading/internal/LoadingCollectionEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/profile/Association.class b/target/classes/org/hibernate/engine/profile/Association.class deleted file mode 100644 index 8ec2eb91..00000000 Binary files a/target/classes/org/hibernate/engine/profile/Association.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/profile/Fetch$Style.class b/target/classes/org/hibernate/engine/profile/Fetch$Style.class deleted file mode 100644 index dc81ee0e..00000000 Binary files a/target/classes/org/hibernate/engine/profile/Fetch$Style.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/profile/Fetch.class b/target/classes/org/hibernate/engine/profile/Fetch.class deleted file mode 100644 index 8540ccf2..00000000 Binary files a/target/classes/org/hibernate/engine/profile/Fetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/profile/FetchProfile.class b/target/classes/org/hibernate/engine/profile/FetchProfile.class deleted file mode 100644 index 16d01447..00000000 Binary files a/target/classes/org/hibernate/engine/profile/FetchProfile.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/internal/NativeQueryInterpreterStandardImpl.class b/target/classes/org/hibernate/engine/query/internal/NativeQueryInterpreterStandardImpl.class deleted file mode 100644 index 5e330358..00000000 Binary files a/target/classes/org/hibernate/engine/query/internal/NativeQueryInterpreterStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/EntityGraphQueryHint.class b/target/classes/org/hibernate/engine/query/spi/EntityGraphQueryHint.class deleted file mode 100644 index 6074f701..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/EntityGraphQueryHint.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/FilterQueryPlan.class b/target/classes/org/hibernate/engine/query/spi/FilterQueryPlan.class deleted file mode 100644 index 51f04869..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/FilterQueryPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/HQLQueryPlan.class b/target/classes/org/hibernate/engine/query/spi/HQLQueryPlan.class deleted file mode 100644 index 00f5b5e0..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/HQLQueryPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/NamedParameterDescriptor.class b/target/classes/org/hibernate/engine/query/spi/NamedParameterDescriptor.class deleted file mode 100644 index 9cb160a9..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/NamedParameterDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/NativeQueryInterpreter.class b/target/classes/org/hibernate/engine/query/spi/NativeQueryInterpreter.class deleted file mode 100644 index 12145b6f..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/NativeQueryInterpreter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/NativeQueryInterpreterInitiator.class b/target/classes/org/hibernate/engine/query/spi/NativeQueryInterpreterInitiator.class deleted file mode 100644 index eb5bd0c7..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/NativeQueryInterpreterInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/NativeSQLQueryPlan.class b/target/classes/org/hibernate/engine/query/spi/NativeSQLQueryPlan.class deleted file mode 100644 index da50d07f..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/NativeSQLQueryPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/OrdinalParameterDescriptor.class b/target/classes/org/hibernate/engine/query/spi/OrdinalParameterDescriptor.class deleted file mode 100644 index 8e2da0b4..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/OrdinalParameterDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/ParamLocationRecognizer$NamedParameterDescription.class b/target/classes/org/hibernate/engine/query/spi/ParamLocationRecognizer$NamedParameterDescription.class deleted file mode 100644 index 41df47c3..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/ParamLocationRecognizer$NamedParameterDescription.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/ParamLocationRecognizer.class b/target/classes/org/hibernate/engine/query/spi/ParamLocationRecognizer.class deleted file mode 100644 index 623b5cae..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/ParamLocationRecognizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/ParameterMetadata.class b/target/classes/org/hibernate/engine/query/spi/ParameterMetadata.class deleted file mode 100644 index ea52ea2b..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/ParameterMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/ParameterParser$Recognizer.class b/target/classes/org/hibernate/engine/query/spi/ParameterParser$Recognizer.class deleted file mode 100644 index 9b7d5377..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/ParameterParser$Recognizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/ParameterParser.class b/target/classes/org/hibernate/engine/query/spi/ParameterParser.class deleted file mode 100644 index 5a2a453c..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/ParameterParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$1.class b/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$1.class deleted file mode 100644 index 4789faca..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$DynamicFilterKey.class b/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$DynamicFilterKey.class deleted file mode 100644 index ad720f0a..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$DynamicFilterKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$FilterQueryPlanKey.class b/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$FilterQueryPlanKey.class deleted file mode 100644 index b3c538d6..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$FilterQueryPlanKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$HQLQueryPlanKey.class b/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$HQLQueryPlanKey.class deleted file mode 100644 index a2319fbc..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache$HQLQueryPlanKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache.class b/target/classes/org/hibernate/engine/query/spi/QueryPlanCache.class deleted file mode 100644 index b4c55a4c..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/QueryPlanCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/ReturnMetadata.class b/target/classes/org/hibernate/engine/query/spi/ReturnMetadata.class deleted file mode 100644 index 03b99574..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/ReturnMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryCollectionReturn.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryCollectionReturn.class deleted file mode 100644 index 58333571..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryCollectionReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryConstructorReturn$1.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryConstructorReturn$1.class deleted file mode 100644 index 993a5109..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryConstructorReturn$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryConstructorReturn.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryConstructorReturn.class deleted file mode 100644 index 064e224b..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryConstructorReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryJoinReturn.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryJoinReturn.class deleted file mode 100644 index d2706e86..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryJoinReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryNonScalarReturn.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryNonScalarReturn.class deleted file mode 100644 index 20e037b0..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryNonScalarReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryReturn$TraceLogger.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryReturn$TraceLogger.class deleted file mode 100644 index d33c2c53..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryReturn$TraceLogger.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryReturn.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryReturn.class deleted file mode 100644 index 4b6c8e93..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryRootReturn.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryRootReturn.class deleted file mode 100644 index d062e32f..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryRootReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryScalarReturn.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryScalarReturn.class deleted file mode 100644 index 8e49f8fa..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQueryScalarReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQuerySpecification.class b/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQuerySpecification.class deleted file mode 100644 index 55433532..00000000 Binary files a/target/classes/org/hibernate/engine/query/spi/sql/NativeSQLQuerySpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/AbstractDelegatingSessionBuilder.class b/target/classes/org/hibernate/engine/spi/AbstractDelegatingSessionBuilder.class deleted file mode 100644 index 438a280c..00000000 Binary files a/target/classes/org/hibernate/engine/spi/AbstractDelegatingSessionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/AbstractDelegatingSessionBuilderImplementor.class b/target/classes/org/hibernate/engine/spi/AbstractDelegatingSessionBuilderImplementor.class deleted file mode 100644 index e232f4ff..00000000 Binary files a/target/classes/org/hibernate/engine/spi/AbstractDelegatingSessionBuilderImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/AbstractDelegatingSharedSessionBuilder.class b/target/classes/org/hibernate/engine/spi/AbstractDelegatingSharedSessionBuilder.class deleted file mode 100644 index e92777b0..00000000 Binary files a/target/classes/org/hibernate/engine/spi/AbstractDelegatingSharedSessionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$1.class b/target/classes/org/hibernate/engine/spi/ActionQueue$1.class deleted file mode 100644 index ba809b7f..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$2.class b/target/classes/org/hibernate/engine/spi/ActionQueue$2.class deleted file mode 100644 index 2e9ff134..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$3.class b/target/classes/org/hibernate/engine/spi/ActionQueue$3.class deleted file mode 100644 index 045c0143..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$4.class b/target/classes/org/hibernate/engine/spi/ActionQueue$4.class deleted file mode 100644 index 11200d25..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$5.class b/target/classes/org/hibernate/engine/spi/ActionQueue$5.class deleted file mode 100644 index 634c68ba..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$6.class b/target/classes/org/hibernate/engine/spi/ActionQueue$6.class deleted file mode 100644 index 5c01e90e..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$7.class b/target/classes/org/hibernate/engine/spi/ActionQueue$7.class deleted file mode 100644 index 037313fe..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$7.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$8.class b/target/classes/org/hibernate/engine/spi/ActionQueue$8.class deleted file mode 100644 index bb569fa0..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$8.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$AbstractTransactionCompletionProcessQueue.class b/target/classes/org/hibernate/engine/spi/ActionQueue$AbstractTransactionCompletionProcessQueue.class deleted file mode 100644 index 9c7f2a64..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$AbstractTransactionCompletionProcessQueue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$AfterTransactionCompletionProcessQueue.class b/target/classes/org/hibernate/engine/spi/ActionQueue$AfterTransactionCompletionProcessQueue.class deleted file mode 100644 index 0f272075..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$AfterTransactionCompletionProcessQueue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$BeforeTransactionCompletionProcessQueue.class b/target/classes/org/hibernate/engine/spi/ActionQueue$BeforeTransactionCompletionProcessQueue.class deleted file mode 100644 index c95baa95..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$BeforeTransactionCompletionProcessQueue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$InsertActionSorter.class b/target/classes/org/hibernate/engine/spi/ActionQueue$InsertActionSorter.class deleted file mode 100644 index bafdff32..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$InsertActionSorter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$ListProvider.class b/target/classes/org/hibernate/engine/spi/ActionQueue$ListProvider.class deleted file mode 100644 index 9c1cc2a9..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$ListProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue$TransactionCompletionProcesses.class b/target/classes/org/hibernate/engine/spi/ActionQueue$TransactionCompletionProcesses.class deleted file mode 100644 index d72a9d15..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue$TransactionCompletionProcesses.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ActionQueue.class b/target/classes/org/hibernate/engine/spi/ActionQueue.class deleted file mode 100644 index d015aad7..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ActionQueue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/AssociationKey.class b/target/classes/org/hibernate/engine/spi/AssociationKey.class deleted file mode 100644 index c2274050..00000000 Binary files a/target/classes/org/hibernate/engine/spi/AssociationKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/BatchFetchQueue.class b/target/classes/org/hibernate/engine/spi/BatchFetchQueue.class deleted file mode 100644 index 230c87f4..00000000 Binary files a/target/classes/org/hibernate/engine/spi/BatchFetchQueue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CacheImplementor.class b/target/classes/org/hibernate/engine/spi/CacheImplementor.class deleted file mode 100644 index a1960cad..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CacheImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CacheInitiator.class b/target/classes/org/hibernate/engine/spi/CacheInitiator.class deleted file mode 100644 index 0b3918ea..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CacheInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CachedNaturalIdValueSource.class b/target/classes/org/hibernate/engine/spi/CachedNaturalIdValueSource.class deleted file mode 100644 index 7e981ccf..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CachedNaturalIdValueSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyle.class b/target/classes/org/hibernate/engine/spi/CascadeStyle.class deleted file mode 100644 index 80ecd8e0..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$1.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$1.class deleted file mode 100644 index a55b84e8..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$10.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$10.class deleted file mode 100644 index 0355fb13..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$10.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$11.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$11.class deleted file mode 100644 index caf1eb3a..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$11.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$12.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$12.class deleted file mode 100644 index cead6a7d..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$12.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$2.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$2.class deleted file mode 100644 index d6a7e702..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$3.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$3.class deleted file mode 100644 index 4ed69022..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$4.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$4.class deleted file mode 100644 index 4cfc2707..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$5.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$5.class deleted file mode 100644 index a2530412..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$6.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$6.class deleted file mode 100644 index ca0ac744..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$7.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$7.class deleted file mode 100644 index f7163d31..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$7.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$8.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$8.class deleted file mode 100644 index 30704b76..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$8.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$9.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$9.class deleted file mode 100644 index c9a7c90a..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$9.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$BaseCascadeStyle.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$BaseCascadeStyle.class deleted file mode 100644 index 0b672d4f..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$BaseCascadeStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles$MultipleCascadeStyle.class b/target/classes/org/hibernate/engine/spi/CascadeStyles$MultipleCascadeStyle.class deleted file mode 100644 index a45099be..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles$MultipleCascadeStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadeStyles.class b/target/classes/org/hibernate/engine/spi/CascadeStyles.class deleted file mode 100644 index c8b5f459..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadeStyles.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingAction.class b/target/classes/org/hibernate/engine/spi/CascadingAction.class deleted file mode 100644 index e99ddee7..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$1.class b/target/classes/org/hibernate/engine/spi/CascadingActions$1.class deleted file mode 100644 index d92eb50e..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$2.class b/target/classes/org/hibernate/engine/spi/CascadingActions$2.class deleted file mode 100644 index 188111a3..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$3.class b/target/classes/org/hibernate/engine/spi/CascadingActions$3.class deleted file mode 100644 index 9dffa843..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$4.class b/target/classes/org/hibernate/engine/spi/CascadingActions$4.class deleted file mode 100644 index 8b118318..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$5.class b/target/classes/org/hibernate/engine/spi/CascadingActions$5.class deleted file mode 100644 index c512bd86..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$6.class b/target/classes/org/hibernate/engine/spi/CascadingActions$6.class deleted file mode 100644 index e0554dcf..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$7.class b/target/classes/org/hibernate/engine/spi/CascadingActions$7.class deleted file mode 100644 index 030a7e87..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$7.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$8.class b/target/classes/org/hibernate/engine/spi/CascadingActions$8.class deleted file mode 100644 index 5348c41b..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$8.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$9.class b/target/classes/org/hibernate/engine/spi/CascadingActions$9.class deleted file mode 100644 index 773c863a..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$9.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions$BaseCascadingAction.class b/target/classes/org/hibernate/engine/spi/CascadingActions$BaseCascadingAction.class deleted file mode 100644 index 246604aa..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions$BaseCascadingAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CascadingActions.class b/target/classes/org/hibernate/engine/spi/CascadingActions.class deleted file mode 100644 index 44e48916..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CascadingActions.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CollectionEntry.class b/target/classes/org/hibernate/engine/spi/CollectionEntry.class deleted file mode 100644 index f7228bf4..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CollectionEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CollectionKey.class b/target/classes/org/hibernate/engine/spi/CollectionKey.class deleted file mode 100644 index c03922c8..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CollectionKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CompositeOwner.class b/target/classes/org/hibernate/engine/spi/CompositeOwner.class deleted file mode 100644 index 264f5168..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CompositeOwner.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/CompositeTracker.class b/target/classes/org/hibernate/engine/spi/CompositeTracker.class deleted file mode 100644 index cfccedd8..00000000 Binary files a/target/classes/org/hibernate/engine/spi/CompositeTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/EntityEntry.class b/target/classes/org/hibernate/engine/spi/EntityEntry.class deleted file mode 100644 index 3ce7681a..00000000 Binary files a/target/classes/org/hibernate/engine/spi/EntityEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/EntityEntryExtraState.class b/target/classes/org/hibernate/engine/spi/EntityEntryExtraState.class deleted file mode 100644 index 2677d736..00000000 Binary files a/target/classes/org/hibernate/engine/spi/EntityEntryExtraState.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/EntityEntryFactory.class b/target/classes/org/hibernate/engine/spi/EntityEntryFactory.class deleted file mode 100644 index 5c4d75f5..00000000 Binary files a/target/classes/org/hibernate/engine/spi/EntityEntryFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/EntityKey.class b/target/classes/org/hibernate/engine/spi/EntityKey.class deleted file mode 100644 index 370ca006..00000000 Binary files a/target/classes/org/hibernate/engine/spi/EntityKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/EntityUniqueKey.class b/target/classes/org/hibernate/engine/spi/EntityUniqueKey.class deleted file mode 100644 index 907b2de5..00000000 Binary files a/target/classes/org/hibernate/engine/spi/EntityUniqueKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ExecutableList$Sorter.class b/target/classes/org/hibernate/engine/spi/ExecutableList$Sorter.class deleted file mode 100644 index 77e271b9..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ExecutableList$Sorter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ExecutableList.class b/target/classes/org/hibernate/engine/spi/ExecutableList.class deleted file mode 100644 index b4384cff..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ExecutableList.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ExecuteUpdateResultCheckStyle.class b/target/classes/org/hibernate/engine/spi/ExecuteUpdateResultCheckStyle.class deleted file mode 100644 index d3832aca..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ExecuteUpdateResultCheckStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/FilterDefinition.class b/target/classes/org/hibernate/engine/spi/FilterDefinition.class deleted file mode 100644 index 825a3a4d..00000000 Binary files a/target/classes/org/hibernate/engine/spi/FilterDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/IdentifierValue$1.class b/target/classes/org/hibernate/engine/spi/IdentifierValue$1.class deleted file mode 100644 index b057108e..00000000 Binary files a/target/classes/org/hibernate/engine/spi/IdentifierValue$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/IdentifierValue$2.class b/target/classes/org/hibernate/engine/spi/IdentifierValue$2.class deleted file mode 100644 index 42698ca9..00000000 Binary files a/target/classes/org/hibernate/engine/spi/IdentifierValue$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/IdentifierValue$3.class b/target/classes/org/hibernate/engine/spi/IdentifierValue$3.class deleted file mode 100644 index 43ce736e..00000000 Binary files a/target/classes/org/hibernate/engine/spi/IdentifierValue$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/IdentifierValue$4.class b/target/classes/org/hibernate/engine/spi/IdentifierValue$4.class deleted file mode 100644 index da8f0a5f..00000000 Binary files a/target/classes/org/hibernate/engine/spi/IdentifierValue$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/IdentifierValue.class b/target/classes/org/hibernate/engine/spi/IdentifierValue.class deleted file mode 100644 index bca28c72..00000000 Binary files a/target/classes/org/hibernate/engine/spi/IdentifierValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/LoadQueryInfluencers.class b/target/classes/org/hibernate/engine/spi/LoadQueryInfluencers.class deleted file mode 100644 index 0c067b4a..00000000 Binary files a/target/classes/org/hibernate/engine/spi/LoadQueryInfluencers.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/Managed.class b/target/classes/org/hibernate/engine/spi/Managed.class deleted file mode 100644 index 7b33281f..00000000 Binary files a/target/classes/org/hibernate/engine/spi/Managed.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ManagedComposite.class b/target/classes/org/hibernate/engine/spi/ManagedComposite.class deleted file mode 100644 index 485a136b..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ManagedComposite.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ManagedEntity.class b/target/classes/org/hibernate/engine/spi/ManagedEntity.class deleted file mode 100644 index 06cd15cb..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ManagedEntity.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/Mapping.class b/target/classes/org/hibernate/engine/spi/Mapping.class deleted file mode 100644 index 387354ae..00000000 Binary files a/target/classes/org/hibernate/engine/spi/Mapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/NamedQueryDefinition.class b/target/classes/org/hibernate/engine/spi/NamedQueryDefinition.class deleted file mode 100644 index 2967f4f9..00000000 Binary files a/target/classes/org/hibernate/engine/spi/NamedQueryDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/NamedQueryDefinitionBuilder.class b/target/classes/org/hibernate/engine/spi/NamedQueryDefinitionBuilder.class deleted file mode 100644 index d23ad1aa..00000000 Binary files a/target/classes/org/hibernate/engine/spi/NamedQueryDefinitionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/NamedSQLQueryDefinition.class b/target/classes/org/hibernate/engine/spi/NamedSQLQueryDefinition.class deleted file mode 100644 index 1246420e..00000000 Binary files a/target/classes/org/hibernate/engine/spi/NamedSQLQueryDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/NamedSQLQueryDefinitionBuilder.class b/target/classes/org/hibernate/engine/spi/NamedSQLQueryDefinitionBuilder.class deleted file mode 100644 index ebf4bca1..00000000 Binary files a/target/classes/org/hibernate/engine/spi/NamedSQLQueryDefinitionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/PersistenceContext$NaturalIdHelper$1.class b/target/classes/org/hibernate/engine/spi/PersistenceContext$NaturalIdHelper$1.class deleted file mode 100644 index f0248f29..00000000 Binary files a/target/classes/org/hibernate/engine/spi/PersistenceContext$NaturalIdHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/PersistenceContext$NaturalIdHelper.class b/target/classes/org/hibernate/engine/spi/PersistenceContext$NaturalIdHelper.class deleted file mode 100644 index 06a2c7ae..00000000 Binary files a/target/classes/org/hibernate/engine/spi/PersistenceContext$NaturalIdHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/PersistenceContext.class b/target/classes/org/hibernate/engine/spi/PersistenceContext.class deleted file mode 100644 index 857e73de..00000000 Binary files a/target/classes/org/hibernate/engine/spi/PersistenceContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/PersistentAttributeInterceptable.class b/target/classes/org/hibernate/engine/spi/PersistentAttributeInterceptable.class deleted file mode 100644 index e7621d65..00000000 Binary files a/target/classes/org/hibernate/engine/spi/PersistentAttributeInterceptable.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/PersistentAttributeInterceptor.class b/target/classes/org/hibernate/engine/spi/PersistentAttributeInterceptor.class deleted file mode 100644 index 3823889f..00000000 Binary files a/target/classes/org/hibernate/engine/spi/PersistentAttributeInterceptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/QueryParameters.class b/target/classes/org/hibernate/engine/spi/QueryParameters.class deleted file mode 100644 index 48988773..00000000 Binary files a/target/classes/org/hibernate/engine/spi/QueryParameters.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/RowSelection.class b/target/classes/org/hibernate/engine/spi/RowSelection.class deleted file mode 100644 index 0f4cb9b7..00000000 Binary files a/target/classes/org/hibernate/engine/spi/RowSelection.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SelfDirtinessTracker.class b/target/classes/org/hibernate/engine/spi/SelfDirtinessTracker.class deleted file mode 100644 index 40fa7427..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SelfDirtinessTracker.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionBuilderImplementor.class b/target/classes/org/hibernate/engine/spi/SessionBuilderImplementor.class deleted file mode 100644 index 3aeca824..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionBuilderImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionDelegatorBaseImpl.class b/target/classes/org/hibernate/engine/spi/SessionDelegatorBaseImpl.class deleted file mode 100644 index f47c02c3..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionDelegatorBaseImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionEventListenerManager.class b/target/classes/org/hibernate/engine/spi/SessionEventListenerManager.class deleted file mode 100644 index e4de0a48..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionEventListenerManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionFactoryDelegatingImpl.class b/target/classes/org/hibernate/engine/spi/SessionFactoryDelegatingImpl.class deleted file mode 100644 index c24bbe1e..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionFactoryDelegatingImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionFactoryImplementor$DeserializationResolver.class b/target/classes/org/hibernate/engine/spi/SessionFactoryImplementor$DeserializationResolver.class deleted file mode 100644 index 68141c6d..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionFactoryImplementor$DeserializationResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionFactoryImplementor.class b/target/classes/org/hibernate/engine/spi/SessionFactoryImplementor.class deleted file mode 100644 index 2aae07a5..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionFactoryImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionImplementor.class b/target/classes/org/hibernate/engine/spi/SessionImplementor.class deleted file mode 100644 index f2538101..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SessionOwner.class b/target/classes/org/hibernate/engine/spi/SessionOwner.class deleted file mode 100644 index 8a038f03..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SessionOwner.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/Status.class b/target/classes/org/hibernate/engine/spi/Status.class deleted file mode 100644 index 81ebfa10..00000000 Binary files a/target/classes/org/hibernate/engine/spi/Status.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/SubselectFetch.class b/target/classes/org/hibernate/engine/spi/SubselectFetch.class deleted file mode 100644 index 893c2c88..00000000 Binary files a/target/classes/org/hibernate/engine/spi/SubselectFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/TypedValue$1.class b/target/classes/org/hibernate/engine/spi/TypedValue$1.class deleted file mode 100644 index 6949d59b..00000000 Binary files a/target/classes/org/hibernate/engine/spi/TypedValue$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/TypedValue.class b/target/classes/org/hibernate/engine/spi/TypedValue.class deleted file mode 100644 index d5f75cd9..00000000 Binary files a/target/classes/org/hibernate/engine/spi/TypedValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/UnsavedValueStrategy.class b/target/classes/org/hibernate/engine/spi/UnsavedValueStrategy.class deleted file mode 100644 index 86b25b94..00000000 Binary files a/target/classes/org/hibernate/engine/spi/UnsavedValueStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/ValueInclusion.class b/target/classes/org/hibernate/engine/spi/ValueInclusion.class deleted file mode 100644 index f9cbbaa7..00000000 Binary files a/target/classes/org/hibernate/engine/spi/ValueInclusion.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/VersionValue$1.class b/target/classes/org/hibernate/engine/spi/VersionValue$1.class deleted file mode 100644 index e88e76ef..00000000 Binary files a/target/classes/org/hibernate/engine/spi/VersionValue$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/VersionValue$2.class b/target/classes/org/hibernate/engine/spi/VersionValue$2.class deleted file mode 100644 index aedb0210..00000000 Binary files a/target/classes/org/hibernate/engine/spi/VersionValue$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/VersionValue$3.class b/target/classes/org/hibernate/engine/spi/VersionValue$3.class deleted file mode 100644 index 9e67f416..00000000 Binary files a/target/classes/org/hibernate/engine/spi/VersionValue$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/spi/VersionValue.class b/target/classes/org/hibernate/engine/spi/VersionValue.class deleted file mode 100644 index 784e77ca..00000000 Binary files a/target/classes/org/hibernate/engine/spi/VersionValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/internal/NullSynchronizationException.class b/target/classes/org/hibernate/engine/transaction/internal/NullSynchronizationException.class deleted file mode 100644 index 4427dc09..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/internal/NullSynchronizationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/internal/SynchronizationRegistryImpl.class b/target/classes/org/hibernate/engine/transaction/internal/SynchronizationRegistryImpl.class deleted file mode 100644 index f02b375f..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/internal/SynchronizationRegistryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/internal/TransactionImpl.class b/target/classes/org/hibernate/engine/transaction/internal/TransactionImpl.class deleted file mode 100644 index 9afc3c0f..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/internal/TransactionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/internal/jta/JtaStatusHelper.class b/target/classes/org/hibernate/engine/transaction/internal/jta/JtaStatusHelper.class deleted file mode 100644 index e8bf244e..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/internal/jta/JtaStatusHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/AbstractJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/AbstractJtaPlatform.class deleted file mode 100644 index 5e646be6..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/AbstractJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/BitronixJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/BitronixJtaPlatform.class deleted file mode 100644 index 2d88a908..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/BitronixJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/BorlandEnterpriseServerJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/BorlandEnterpriseServerJtaPlatform.class deleted file mode 100644 index 2c5d84a1..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/BorlandEnterpriseServerJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JBossAppServerJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JBossAppServerJtaPlatform.class deleted file mode 100644 index 9cd66334..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JBossAppServerJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JBossStandAloneJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JBossStandAloneJtaPlatform.class deleted file mode 100644 index 91f1ab8c..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JBossStandAloneJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JOTMJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JOTMJtaPlatform.class deleted file mode 100644 index cceb8785..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JOTMJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JOnASJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JOnASJtaPlatform.class deleted file mode 100644 index cf6c3e9c..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JOnASJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JRun4JtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JRun4JtaPlatform.class deleted file mode 100644 index 2865d191..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JRun4JtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaPlatformInitiator.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaPlatformInitiator.class deleted file mode 100644 index 0fdebec9..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaPlatformInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaPlatformResolverInitiator.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaPlatformResolverInitiator.class deleted file mode 100644 index 386bd22d..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaPlatformResolverInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaSynchronizationStrategy.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaSynchronizationStrategy.class deleted file mode 100644 index b967bbd5..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/JtaSynchronizationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/NoJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/NoJtaPlatform.class deleted file mode 100644 index 620217fb..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/NoJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/OC4JJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/OC4JJtaPlatform.class deleted file mode 100644 index 770d333e..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/OC4JJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/OrionJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/OrionJtaPlatform.class deleted file mode 100644 index b9cc71b7..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/OrionJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/ResinJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/ResinJtaPlatform.class deleted file mode 100644 index 07f993ce..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/ResinJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/StandardJtaPlatformResolver.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/StandardJtaPlatformResolver.class deleted file mode 100644 index bd6a9a43..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/StandardJtaPlatformResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SunOneJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SunOneJtaPlatform.class deleted file mode 100644 index 88be4da6..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SunOneJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SynchronizationRegistryAccess.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SynchronizationRegistryAccess.class deleted file mode 100644 index 3879fc6a..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SynchronizationRegistryAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SynchronizationRegistryBasedSynchronizationStrategy.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SynchronizationRegistryBasedSynchronizationStrategy.class deleted file mode 100644 index 7707749b..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/SynchronizationRegistryBasedSynchronizationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/TransactionManagerAccess.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/TransactionManagerAccess.class deleted file mode 100644 index a25b1ab0..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/TransactionManagerAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/TransactionManagerBasedSynchronizationStrategy.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/TransactionManagerBasedSynchronizationStrategy.class deleted file mode 100644 index b32acb8a..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/TransactionManagerBasedSynchronizationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$1.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$1.class deleted file mode 100644 index e5f67d96..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter$TransactionAdapter$1.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter$TransactionAdapter$1.class deleted file mode 100644 index da38df10..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter$TransactionAdapter$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter$TransactionAdapter.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter$TransactionAdapter.class deleted file mode 100644 index 1dc71716..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter$TransactionAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter.class deleted file mode 100644 index fda5be10..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform$TransactionManagerAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform.class deleted file mode 100644 index 90e0d1d9..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereExtendedJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereJtaPlatform$WebSphereEnvironment.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereJtaPlatform$WebSphereEnvironment.class deleted file mode 100644 index 5366c90f..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereJtaPlatform$WebSphereEnvironment.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereJtaPlatform.class deleted file mode 100644 index fdfe5d0a..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WebSphereJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WeblogicJtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WeblogicJtaPlatform.class deleted file mode 100644 index d5299ba3..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/internal/WeblogicJtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatform.class b/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatform.class deleted file mode 100644 index 1debfc95..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatform.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformException.class b/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformException.class deleted file mode 100644 index f1f244b1..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformException.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformProvider.class b/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformProvider.class deleted file mode 100644 index a9b72329..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformResolver.class b/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformResolver.class deleted file mode 100644 index 67d215d8..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/jta/platform/spi/JtaPlatformResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/spi/IsolationDelegate.class b/target/classes/org/hibernate/engine/transaction/spi/IsolationDelegate.class deleted file mode 100644 index ee839eac..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/spi/IsolationDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/spi/JoinStatus.class b/target/classes/org/hibernate/engine/transaction/spi/JoinStatus.class deleted file mode 100644 index 00f3119f..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/spi/JoinStatus.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/spi/SynchronizationRegistry.class b/target/classes/org/hibernate/engine/transaction/spi/SynchronizationRegistry.class deleted file mode 100644 index a82183f0..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/spi/SynchronizationRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/engine/transaction/spi/TransactionObserver.class b/target/classes/org/hibernate/engine/transaction/spi/TransactionObserver.class deleted file mode 100644 index 54eb3366..00000000 Binary files a/target/classes/org/hibernate/engine/transaction/spi/TransactionObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/AbstractFlushingEventListener.class b/target/classes/org/hibernate/event/internal/AbstractFlushingEventListener.class deleted file mode 100644 index 1b7102ea..00000000 Binary files a/target/classes/org/hibernate/event/internal/AbstractFlushingEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/AbstractLockUpgradeEventListener.class b/target/classes/org/hibernate/event/internal/AbstractLockUpgradeEventListener.class deleted file mode 100644 index d0d6441c..00000000 Binary files a/target/classes/org/hibernate/event/internal/AbstractLockUpgradeEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/AbstractReassociateEventListener.class b/target/classes/org/hibernate/event/internal/AbstractReassociateEventListener.class deleted file mode 100644 index 84bfc519..00000000 Binary files a/target/classes/org/hibernate/event/internal/AbstractReassociateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/AbstractSaveEventListener$EntityState.class b/target/classes/org/hibernate/event/internal/AbstractSaveEventListener$EntityState.class deleted file mode 100644 index 26ec0d2d..00000000 Binary files a/target/classes/org/hibernate/event/internal/AbstractSaveEventListener$EntityState.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/AbstractSaveEventListener.class b/target/classes/org/hibernate/event/internal/AbstractSaveEventListener.class deleted file mode 100644 index f9839161..00000000 Binary files a/target/classes/org/hibernate/event/internal/AbstractSaveEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/AbstractVisitor.class b/target/classes/org/hibernate/event/internal/AbstractVisitor.class deleted file mode 100644 index 03a66c9f..00000000 Binary files a/target/classes/org/hibernate/event/internal/AbstractVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultAutoFlushEventListener.class b/target/classes/org/hibernate/event/internal/DefaultAutoFlushEventListener.class deleted file mode 100644 index 0dd92630..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultAutoFlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultDeleteEventListener.class b/target/classes/org/hibernate/event/internal/DefaultDeleteEventListener.class deleted file mode 100644 index dd0ebfe3..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultDeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultDirtyCheckEventListener.class b/target/classes/org/hibernate/event/internal/DefaultDirtyCheckEventListener.class deleted file mode 100644 index 54b2544c..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultDirtyCheckEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultEvictEventListener.class b/target/classes/org/hibernate/event/internal/DefaultEvictEventListener.class deleted file mode 100644 index 3279a468..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultEvictEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$1.class b/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$1.class deleted file mode 100644 index 5f248048..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$1DirtyCheckContextImpl.class b/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$1DirtyCheckContextImpl.class deleted file mode 100644 index 5c31a192..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$1DirtyCheckContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$DirtyCheckAttributeInfoImpl.class b/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$DirtyCheckAttributeInfoImpl.class deleted file mode 100644 index 95be61f5..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener$DirtyCheckAttributeInfoImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener.class b/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener.class deleted file mode 100644 index 125cac90..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultFlushEntityEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultFlushEventListener.class b/target/classes/org/hibernate/event/internal/DefaultFlushEventListener.class deleted file mode 100644 index 267b557e..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultFlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultInitializeCollectionEventListener.class b/target/classes/org/hibernate/event/internal/DefaultInitializeCollectionEventListener.class deleted file mode 100644 index 8989f92d..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultInitializeCollectionEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultLoadEventListener.class b/target/classes/org/hibernate/event/internal/DefaultLoadEventListener.class deleted file mode 100644 index b43479d0..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultLoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultLockEventListener.class b/target/classes/org/hibernate/event/internal/DefaultLockEventListener.class deleted file mode 100644 index c217de88..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultLockEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultMergeEventListener$1.class b/target/classes/org/hibernate/event/internal/DefaultMergeEventListener$1.class deleted file mode 100644 index e7176f85..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultMergeEventListener$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultMergeEventListener$2.class b/target/classes/org/hibernate/event/internal/DefaultMergeEventListener$2.class deleted file mode 100644 index 48958f2f..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultMergeEventListener$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultMergeEventListener.class b/target/classes/org/hibernate/event/internal/DefaultMergeEventListener.class deleted file mode 100644 index 1cc6bc70..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultMergeEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultPersistEventListener$1.class b/target/classes/org/hibernate/event/internal/DefaultPersistEventListener$1.class deleted file mode 100644 index 100f53b7..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultPersistEventListener$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultPersistEventListener.class b/target/classes/org/hibernate/event/internal/DefaultPersistEventListener.class deleted file mode 100644 index 2f9b59b3..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultPersistEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultPersistOnFlushEventListener.class b/target/classes/org/hibernate/event/internal/DefaultPersistOnFlushEventListener.class deleted file mode 100644 index 037b5e68..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultPersistOnFlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultPostLoadEventListener.class b/target/classes/org/hibernate/event/internal/DefaultPostLoadEventListener.class deleted file mode 100644 index 4e78d6ab..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultPostLoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultPreLoadEventListener.class b/target/classes/org/hibernate/event/internal/DefaultPreLoadEventListener.class deleted file mode 100644 index 8c07a7ca..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultPreLoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultRefreshEventListener.class b/target/classes/org/hibernate/event/internal/DefaultRefreshEventListener.class deleted file mode 100644 index f2555f05..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultRefreshEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultReplicateEventListener.class b/target/classes/org/hibernate/event/internal/DefaultReplicateEventListener.class deleted file mode 100644 index 8db63b05..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultReplicateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultResolveNaturalIdEventListener.class b/target/classes/org/hibernate/event/internal/DefaultResolveNaturalIdEventListener.class deleted file mode 100644 index 4792582b..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultResolveNaturalIdEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultSaveEventListener.class b/target/classes/org/hibernate/event/internal/DefaultSaveEventListener.class deleted file mode 100644 index 367b9c42..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultSaveEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultSaveOrUpdateEventListener$1.class b/target/classes/org/hibernate/event/internal/DefaultSaveOrUpdateEventListener$1.class deleted file mode 100644 index 2be3c96b..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultSaveOrUpdateEventListener$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultSaveOrUpdateEventListener.class b/target/classes/org/hibernate/event/internal/DefaultSaveOrUpdateEventListener.class deleted file mode 100644 index c4e6d30d..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultSaveOrUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DefaultUpdateEventListener.class b/target/classes/org/hibernate/event/internal/DefaultUpdateEventListener.class deleted file mode 100644 index 3754e531..00000000 Binary files a/target/classes/org/hibernate/event/internal/DefaultUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/DirtyCollectionSearchVisitor.class b/target/classes/org/hibernate/event/internal/DirtyCollectionSearchVisitor.class deleted file mode 100644 index da6ebbd5..00000000 Binary files a/target/classes/org/hibernate/event/internal/DirtyCollectionSearchVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/EntityCopyAllowedLoggedObserver.class b/target/classes/org/hibernate/event/internal/EntityCopyAllowedLoggedObserver.class deleted file mode 100644 index 50b57aa4..00000000 Binary files a/target/classes/org/hibernate/event/internal/EntityCopyAllowedLoggedObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/EntityCopyAllowedObserver.class b/target/classes/org/hibernate/event/internal/EntityCopyAllowedObserver.class deleted file mode 100644 index 2b24484f..00000000 Binary files a/target/classes/org/hibernate/event/internal/EntityCopyAllowedObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/EntityCopyNotAllowedObserver.class b/target/classes/org/hibernate/event/internal/EntityCopyNotAllowedObserver.class deleted file mode 100644 index e6d4e52d..00000000 Binary files a/target/classes/org/hibernate/event/internal/EntityCopyNotAllowedObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/EvictVisitor.class b/target/classes/org/hibernate/event/internal/EvictVisitor.class deleted file mode 100644 index 5480d368..00000000 Binary files a/target/classes/org/hibernate/event/internal/EvictVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/FlushVisitor.class b/target/classes/org/hibernate/event/internal/FlushVisitor.class deleted file mode 100644 index 1588063f..00000000 Binary files a/target/classes/org/hibernate/event/internal/FlushVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/MergeContext.class b/target/classes/org/hibernate/event/internal/MergeContext.class deleted file mode 100644 index 7f6b6919..00000000 Binary files a/target/classes/org/hibernate/event/internal/MergeContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/OnLockVisitor.class b/target/classes/org/hibernate/event/internal/OnLockVisitor.class deleted file mode 100644 index 175ef091..00000000 Binary files a/target/classes/org/hibernate/event/internal/OnLockVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/OnReplicateVisitor.class b/target/classes/org/hibernate/event/internal/OnReplicateVisitor.class deleted file mode 100644 index f01b1485..00000000 Binary files a/target/classes/org/hibernate/event/internal/OnReplicateVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/OnUpdateVisitor.class b/target/classes/org/hibernate/event/internal/OnUpdateVisitor.class deleted file mode 100644 index 96669b83..00000000 Binary files a/target/classes/org/hibernate/event/internal/OnUpdateVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/ProxyVisitor.class b/target/classes/org/hibernate/event/internal/ProxyVisitor.class deleted file mode 100644 index 36da43ad..00000000 Binary files a/target/classes/org/hibernate/event/internal/ProxyVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/ReattachVisitor.class b/target/classes/org/hibernate/event/internal/ReattachVisitor.class deleted file mode 100644 index abfddd89..00000000 Binary files a/target/classes/org/hibernate/event/internal/ReattachVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/internal/WrapVisitor.class b/target/classes/org/hibernate/event/internal/WrapVisitor.class deleted file mode 100644 index 32c66bea..00000000 Binary files a/target/classes/org/hibernate/event/internal/WrapVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl$1.class b/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl$1.class deleted file mode 100644 index b25b35c8..00000000 Binary files a/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl$2.class b/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl$2.class deleted file mode 100644 index cbce9ddb..00000000 Binary files a/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl.class b/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl.class deleted file mode 100644 index e6058e86..00000000 Binary files a/target/classes/org/hibernate/event/service/internal/EventListenerGroupImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/internal/EventListenerRegistryImpl.class b/target/classes/org/hibernate/event/service/internal/EventListenerRegistryImpl.class deleted file mode 100644 index f17c96b5..00000000 Binary files a/target/classes/org/hibernate/event/service/internal/EventListenerRegistryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/internal/EventListenerServiceInitiator.class b/target/classes/org/hibernate/event/service/internal/EventListenerServiceInitiator.class deleted file mode 100644 index 80eb2adb..00000000 Binary files a/target/classes/org/hibernate/event/service/internal/EventListenerServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/internal/PostCommitEventListenerGroupImpl.class b/target/classes/org/hibernate/event/service/internal/PostCommitEventListenerGroupImpl.class deleted file mode 100644 index 8286ae93..00000000 Binary files a/target/classes/org/hibernate/event/service/internal/PostCommitEventListenerGroupImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/spi/DuplicationStrategy$Action.class b/target/classes/org/hibernate/event/service/spi/DuplicationStrategy$Action.class deleted file mode 100644 index 259c14f1..00000000 Binary files a/target/classes/org/hibernate/event/service/spi/DuplicationStrategy$Action.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/spi/DuplicationStrategy.class b/target/classes/org/hibernate/event/service/spi/DuplicationStrategy.class deleted file mode 100644 index bb3a6e67..00000000 Binary files a/target/classes/org/hibernate/event/service/spi/DuplicationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/spi/EventListenerGroup.class b/target/classes/org/hibernate/event/service/spi/EventListenerGroup.class deleted file mode 100644 index b14f90e0..00000000 Binary files a/target/classes/org/hibernate/event/service/spi/EventListenerGroup.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/spi/EventListenerRegistrationException.class b/target/classes/org/hibernate/event/service/spi/EventListenerRegistrationException.class deleted file mode 100644 index c3a701b5..00000000 Binary files a/target/classes/org/hibernate/event/service/spi/EventListenerRegistrationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/service/spi/EventListenerRegistry.class b/target/classes/org/hibernate/event/service/spi/EventListenerRegistry.class deleted file mode 100644 index 1cf37239..00000000 Binary files a/target/classes/org/hibernate/event/service/spi/EventListenerRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/AbstractCollectionEvent.class b/target/classes/org/hibernate/event/spi/AbstractCollectionEvent.class deleted file mode 100644 index a5e12e90..00000000 Binary files a/target/classes/org/hibernate/event/spi/AbstractCollectionEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/AbstractEvent.class b/target/classes/org/hibernate/event/spi/AbstractEvent.class deleted file mode 100644 index d0bc89c6..00000000 Binary files a/target/classes/org/hibernate/event/spi/AbstractEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/AbstractPreDatabaseOperationEvent.class b/target/classes/org/hibernate/event/spi/AbstractPreDatabaseOperationEvent.class deleted file mode 100644 index 7c6a8d31..00000000 Binary files a/target/classes/org/hibernate/event/spi/AbstractPreDatabaseOperationEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/AutoFlushEvent.class b/target/classes/org/hibernate/event/spi/AutoFlushEvent.class deleted file mode 100644 index 86d1d79e..00000000 Binary files a/target/classes/org/hibernate/event/spi/AutoFlushEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/AutoFlushEventListener.class b/target/classes/org/hibernate/event/spi/AutoFlushEventListener.class deleted file mode 100644 index ad52742a..00000000 Binary files a/target/classes/org/hibernate/event/spi/AutoFlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/ClearEvent.class b/target/classes/org/hibernate/event/spi/ClearEvent.class deleted file mode 100644 index e070672d..00000000 Binary files a/target/classes/org/hibernate/event/spi/ClearEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/ClearEventListener.class b/target/classes/org/hibernate/event/spi/ClearEventListener.class deleted file mode 100644 index c029d489..00000000 Binary files a/target/classes/org/hibernate/event/spi/ClearEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/DeleteEvent.class b/target/classes/org/hibernate/event/spi/DeleteEvent.class deleted file mode 100644 index 9d4a49f1..00000000 Binary files a/target/classes/org/hibernate/event/spi/DeleteEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/DeleteEventListener.class b/target/classes/org/hibernate/event/spi/DeleteEventListener.class deleted file mode 100644 index 13aab9c7..00000000 Binary files a/target/classes/org/hibernate/event/spi/DeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/DirtyCheckEvent.class b/target/classes/org/hibernate/event/spi/DirtyCheckEvent.class deleted file mode 100644 index be0f8157..00000000 Binary files a/target/classes/org/hibernate/event/spi/DirtyCheckEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/DirtyCheckEventListener.class b/target/classes/org/hibernate/event/spi/DirtyCheckEventListener.class deleted file mode 100644 index 626a7ea4..00000000 Binary files a/target/classes/org/hibernate/event/spi/DirtyCheckEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/EntityCopyObserver.class b/target/classes/org/hibernate/event/spi/EntityCopyObserver.class deleted file mode 100644 index 5bc92b3a..00000000 Binary files a/target/classes/org/hibernate/event/spi/EntityCopyObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/EventSource.class b/target/classes/org/hibernate/event/spi/EventSource.class deleted file mode 100644 index 62b4d445..00000000 Binary files a/target/classes/org/hibernate/event/spi/EventSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/EventType$1.class b/target/classes/org/hibernate/event/spi/EventType$1.class deleted file mode 100644 index a939c160..00000000 Binary files a/target/classes/org/hibernate/event/spi/EventType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/EventType.class b/target/classes/org/hibernate/event/spi/EventType.class deleted file mode 100644 index 99a7390f..00000000 Binary files a/target/classes/org/hibernate/event/spi/EventType.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/EvictEvent.class b/target/classes/org/hibernate/event/spi/EvictEvent.class deleted file mode 100644 index 32c34dcd..00000000 Binary files a/target/classes/org/hibernate/event/spi/EvictEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/EvictEventListener.class b/target/classes/org/hibernate/event/spi/EvictEventListener.class deleted file mode 100644 index 49c30ad4..00000000 Binary files a/target/classes/org/hibernate/event/spi/EvictEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/FlushEntityEvent.class b/target/classes/org/hibernate/event/spi/FlushEntityEvent.class deleted file mode 100644 index 68844783..00000000 Binary files a/target/classes/org/hibernate/event/spi/FlushEntityEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/FlushEntityEventListener.class b/target/classes/org/hibernate/event/spi/FlushEntityEventListener.class deleted file mode 100644 index 93c806fe..00000000 Binary files a/target/classes/org/hibernate/event/spi/FlushEntityEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/FlushEvent.class b/target/classes/org/hibernate/event/spi/FlushEvent.class deleted file mode 100644 index cb9c4c75..00000000 Binary files a/target/classes/org/hibernate/event/spi/FlushEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/FlushEventListener.class b/target/classes/org/hibernate/event/spi/FlushEventListener.class deleted file mode 100644 index 3f7af3d5..00000000 Binary files a/target/classes/org/hibernate/event/spi/FlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/InitializeCollectionEvent.class b/target/classes/org/hibernate/event/spi/InitializeCollectionEvent.class deleted file mode 100644 index 1a34dcf6..00000000 Binary files a/target/classes/org/hibernate/event/spi/InitializeCollectionEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/InitializeCollectionEventListener.class b/target/classes/org/hibernate/event/spi/InitializeCollectionEventListener.class deleted file mode 100644 index a6184f36..00000000 Binary files a/target/classes/org/hibernate/event/spi/InitializeCollectionEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/LoadEvent$1.class b/target/classes/org/hibernate/event/spi/LoadEvent$1.class deleted file mode 100644 index d2f640d5..00000000 Binary files a/target/classes/org/hibernate/event/spi/LoadEvent$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/LoadEvent.class b/target/classes/org/hibernate/event/spi/LoadEvent.class deleted file mode 100644 index 789d5fd8..00000000 Binary files a/target/classes/org/hibernate/event/spi/LoadEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/LoadEventListener$1.class b/target/classes/org/hibernate/event/spi/LoadEventListener$1.class deleted file mode 100644 index cd42a411..00000000 Binary files a/target/classes/org/hibernate/event/spi/LoadEventListener$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/LoadEventListener$LoadType.class b/target/classes/org/hibernate/event/spi/LoadEventListener$LoadType.class deleted file mode 100644 index b7fb5310..00000000 Binary files a/target/classes/org/hibernate/event/spi/LoadEventListener$LoadType.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/LoadEventListener.class b/target/classes/org/hibernate/event/spi/LoadEventListener.class deleted file mode 100644 index 578e2aa2..00000000 Binary files a/target/classes/org/hibernate/event/spi/LoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/LockEvent.class b/target/classes/org/hibernate/event/spi/LockEvent.class deleted file mode 100644 index 1336659b..00000000 Binary files a/target/classes/org/hibernate/event/spi/LockEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/LockEventListener.class b/target/classes/org/hibernate/event/spi/LockEventListener.class deleted file mode 100644 index d5841118..00000000 Binary files a/target/classes/org/hibernate/event/spi/LockEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/MergeEvent.class b/target/classes/org/hibernate/event/spi/MergeEvent.class deleted file mode 100644 index e46b60f7..00000000 Binary files a/target/classes/org/hibernate/event/spi/MergeEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/MergeEventListener.class b/target/classes/org/hibernate/event/spi/MergeEventListener.class deleted file mode 100644 index 97509d11..00000000 Binary files a/target/classes/org/hibernate/event/spi/MergeEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PersistEvent.class b/target/classes/org/hibernate/event/spi/PersistEvent.class deleted file mode 100644 index f00d5a7d..00000000 Binary files a/target/classes/org/hibernate/event/spi/PersistEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PersistEventListener.class b/target/classes/org/hibernate/event/spi/PersistEventListener.class deleted file mode 100644 index 7e9c2dc8..00000000 Binary files a/target/classes/org/hibernate/event/spi/PersistEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCollectionRecreateEvent.class b/target/classes/org/hibernate/event/spi/PostCollectionRecreateEvent.class deleted file mode 100644 index 2be7f060..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCollectionRecreateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCollectionRecreateEventListener.class b/target/classes/org/hibernate/event/spi/PostCollectionRecreateEventListener.class deleted file mode 100644 index f4f68670..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCollectionRecreateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCollectionRemoveEvent.class b/target/classes/org/hibernate/event/spi/PostCollectionRemoveEvent.class deleted file mode 100644 index 18be41d7..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCollectionRemoveEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCollectionRemoveEventListener.class b/target/classes/org/hibernate/event/spi/PostCollectionRemoveEventListener.class deleted file mode 100644 index b0faf267..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCollectionRemoveEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCollectionUpdateEvent.class b/target/classes/org/hibernate/event/spi/PostCollectionUpdateEvent.class deleted file mode 100644 index 05e18e8a..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCollectionUpdateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCollectionUpdateEventListener.class b/target/classes/org/hibernate/event/spi/PostCollectionUpdateEventListener.class deleted file mode 100644 index ef736090..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCollectionUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCommitDeleteEventListener.class b/target/classes/org/hibernate/event/spi/PostCommitDeleteEventListener.class deleted file mode 100644 index 335e6f8f..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCommitDeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCommitInsertEventListener.class b/target/classes/org/hibernate/event/spi/PostCommitInsertEventListener.class deleted file mode 100644 index 7fc144a2..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCommitInsertEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostCommitUpdateEventListener.class b/target/classes/org/hibernate/event/spi/PostCommitUpdateEventListener.class deleted file mode 100644 index d1dd9c3f..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostCommitUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostDeleteEvent.class b/target/classes/org/hibernate/event/spi/PostDeleteEvent.class deleted file mode 100644 index 979a3207..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostDeleteEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostDeleteEventListener.class b/target/classes/org/hibernate/event/spi/PostDeleteEventListener.class deleted file mode 100644 index 321f76a8..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostDeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostInsertEvent.class b/target/classes/org/hibernate/event/spi/PostInsertEvent.class deleted file mode 100644 index 361af1d1..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostInsertEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostInsertEventListener.class b/target/classes/org/hibernate/event/spi/PostInsertEventListener.class deleted file mode 100644 index c988afad..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostInsertEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostLoadEvent.class b/target/classes/org/hibernate/event/spi/PostLoadEvent.class deleted file mode 100644 index 3824515e..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostLoadEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostLoadEventListener.class b/target/classes/org/hibernate/event/spi/PostLoadEventListener.class deleted file mode 100644 index 1e138cc7..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostLoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostUpdateEvent.class b/target/classes/org/hibernate/event/spi/PostUpdateEvent.class deleted file mode 100644 index 8f7655d9..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostUpdateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PostUpdateEventListener.class b/target/classes/org/hibernate/event/spi/PostUpdateEventListener.class deleted file mode 100644 index 7060bc61..00000000 Binary files a/target/classes/org/hibernate/event/spi/PostUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreCollectionRecreateEvent.class b/target/classes/org/hibernate/event/spi/PreCollectionRecreateEvent.class deleted file mode 100644 index 34096b38..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreCollectionRecreateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreCollectionRecreateEventListener.class b/target/classes/org/hibernate/event/spi/PreCollectionRecreateEventListener.class deleted file mode 100644 index 8e105ddb..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreCollectionRecreateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreCollectionRemoveEvent.class b/target/classes/org/hibernate/event/spi/PreCollectionRemoveEvent.class deleted file mode 100644 index 6d70c498..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreCollectionRemoveEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreCollectionRemoveEventListener.class b/target/classes/org/hibernate/event/spi/PreCollectionRemoveEventListener.class deleted file mode 100644 index 9cddb296..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreCollectionRemoveEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreCollectionUpdateEvent.class b/target/classes/org/hibernate/event/spi/PreCollectionUpdateEvent.class deleted file mode 100644 index 9f6db876..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreCollectionUpdateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreCollectionUpdateEventListener.class b/target/classes/org/hibernate/event/spi/PreCollectionUpdateEventListener.class deleted file mode 100644 index 765dc7a6..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreCollectionUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreDeleteEvent.class b/target/classes/org/hibernate/event/spi/PreDeleteEvent.class deleted file mode 100644 index ff9f645a..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreDeleteEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreDeleteEventListener.class b/target/classes/org/hibernate/event/spi/PreDeleteEventListener.class deleted file mode 100644 index 704de391..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreDeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreInsertEvent.class b/target/classes/org/hibernate/event/spi/PreInsertEvent.class deleted file mode 100644 index b3c53855..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreInsertEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreInsertEventListener.class b/target/classes/org/hibernate/event/spi/PreInsertEventListener.class deleted file mode 100644 index 80fc2d66..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreInsertEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreLoadEvent.class b/target/classes/org/hibernate/event/spi/PreLoadEvent.class deleted file mode 100644 index 68b9acce..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreLoadEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreLoadEventListener.class b/target/classes/org/hibernate/event/spi/PreLoadEventListener.class deleted file mode 100644 index a295b203..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreLoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreUpdateEvent.class b/target/classes/org/hibernate/event/spi/PreUpdateEvent.class deleted file mode 100644 index ec378512..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreUpdateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/PreUpdateEventListener.class b/target/classes/org/hibernate/event/spi/PreUpdateEventListener.class deleted file mode 100644 index 51ba1b25..00000000 Binary files a/target/classes/org/hibernate/event/spi/PreUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/RefreshEvent.class b/target/classes/org/hibernate/event/spi/RefreshEvent.class deleted file mode 100644 index 5c8e2eb0..00000000 Binary files a/target/classes/org/hibernate/event/spi/RefreshEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/RefreshEventListener.class b/target/classes/org/hibernate/event/spi/RefreshEventListener.class deleted file mode 100644 index 06a73d08..00000000 Binary files a/target/classes/org/hibernate/event/spi/RefreshEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/ReplicateEvent.class b/target/classes/org/hibernate/event/spi/ReplicateEvent.class deleted file mode 100644 index 39349185..00000000 Binary files a/target/classes/org/hibernate/event/spi/ReplicateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/ReplicateEventListener.class b/target/classes/org/hibernate/event/spi/ReplicateEventListener.class deleted file mode 100644 index fd15f0e7..00000000 Binary files a/target/classes/org/hibernate/event/spi/ReplicateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/ResolveNaturalIdEvent.class b/target/classes/org/hibernate/event/spi/ResolveNaturalIdEvent.class deleted file mode 100644 index f03a92de..00000000 Binary files a/target/classes/org/hibernate/event/spi/ResolveNaturalIdEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/ResolveNaturalIdEventListener.class b/target/classes/org/hibernate/event/spi/ResolveNaturalIdEventListener.class deleted file mode 100644 index 594b2231..00000000 Binary files a/target/classes/org/hibernate/event/spi/ResolveNaturalIdEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/SaveOrUpdateEvent.class b/target/classes/org/hibernate/event/spi/SaveOrUpdateEvent.class deleted file mode 100644 index d554752d..00000000 Binary files a/target/classes/org/hibernate/event/spi/SaveOrUpdateEvent.class and /dev/null differ diff --git a/target/classes/org/hibernate/event/spi/SaveOrUpdateEventListener.class b/target/classes/org/hibernate/event/spi/SaveOrUpdateEventListener.class deleted file mode 100644 index b987843b..00000000 Binary files a/target/classes/org/hibernate/event/spi/SaveOrUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/ConstraintViolationException.class b/target/classes/org/hibernate/exception/ConstraintViolationException.class deleted file mode 100644 index 60d1e1a0..00000000 Binary files a/target/classes/org/hibernate/exception/ConstraintViolationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/DataException.class b/target/classes/org/hibernate/exception/DataException.class deleted file mode 100644 index 623d7f98..00000000 Binary files a/target/classes/org/hibernate/exception/DataException.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/GenericJDBCException.class b/target/classes/org/hibernate/exception/GenericJDBCException.class deleted file mode 100644 index 9750026f..00000000 Binary files a/target/classes/org/hibernate/exception/GenericJDBCException.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/JDBCConnectionException.class b/target/classes/org/hibernate/exception/JDBCConnectionException.class deleted file mode 100644 index 4f5ca5e3..00000000 Binary files a/target/classes/org/hibernate/exception/JDBCConnectionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/LockAcquisitionException.class b/target/classes/org/hibernate/exception/LockAcquisitionException.class deleted file mode 100644 index f526af2f..00000000 Binary files a/target/classes/org/hibernate/exception/LockAcquisitionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/LockTimeoutException.class b/target/classes/org/hibernate/exception/LockTimeoutException.class deleted file mode 100644 index 57163c0c..00000000 Binary files a/target/classes/org/hibernate/exception/LockTimeoutException.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/SQLGrammarException.class b/target/classes/org/hibernate/exception/SQLGrammarException.class deleted file mode 100644 index baf95d18..00000000 Binary files a/target/classes/org/hibernate/exception/SQLGrammarException.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/internal/CacheSQLExceptionConversionDelegate.class b/target/classes/org/hibernate/exception/internal/CacheSQLExceptionConversionDelegate.class deleted file mode 100644 index d60fe31e..00000000 Binary files a/target/classes/org/hibernate/exception/internal/CacheSQLExceptionConversionDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/internal/SQLExceptionTypeDelegate.class b/target/classes/org/hibernate/exception/internal/SQLExceptionTypeDelegate.class deleted file mode 100644 index a760baf2..00000000 Binary files a/target/classes/org/hibernate/exception/internal/SQLExceptionTypeDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/internal/SQLStateConversionDelegate.class b/target/classes/org/hibernate/exception/internal/SQLStateConversionDelegate.class deleted file mode 100644 index 5b718b5e..00000000 Binary files a/target/classes/org/hibernate/exception/internal/SQLStateConversionDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/internal/SQLStateConverter$1.class b/target/classes/org/hibernate/exception/internal/SQLStateConverter$1.class deleted file mode 100644 index aea6e716..00000000 Binary files a/target/classes/org/hibernate/exception/internal/SQLStateConverter$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/internal/SQLStateConverter.class b/target/classes/org/hibernate/exception/internal/SQLStateConverter.class deleted file mode 100644 index 6da6bb05..00000000 Binary files a/target/classes/org/hibernate/exception/internal/SQLStateConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/internal/StandardSQLExceptionConverter.class b/target/classes/org/hibernate/exception/internal/StandardSQLExceptionConverter.class deleted file mode 100644 index db1bc5e6..00000000 Binary files a/target/classes/org/hibernate/exception/internal/StandardSQLExceptionConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/AbstractSQLExceptionConversionDelegate.class b/target/classes/org/hibernate/exception/spi/AbstractSQLExceptionConversionDelegate.class deleted file mode 100644 index c14a290e..00000000 Binary files a/target/classes/org/hibernate/exception/spi/AbstractSQLExceptionConversionDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/Configurable.class b/target/classes/org/hibernate/exception/spi/Configurable.class deleted file mode 100644 index 8b84f752..00000000 Binary files a/target/classes/org/hibernate/exception/spi/Configurable.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/ConversionContext.class b/target/classes/org/hibernate/exception/spi/ConversionContext.class deleted file mode 100644 index ecb01432..00000000 Binary files a/target/classes/org/hibernate/exception/spi/ConversionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/SQLExceptionConversionDelegate.class b/target/classes/org/hibernate/exception/spi/SQLExceptionConversionDelegate.class deleted file mode 100644 index dd47602a..00000000 Binary files a/target/classes/org/hibernate/exception/spi/SQLExceptionConversionDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/SQLExceptionConverter.class b/target/classes/org/hibernate/exception/spi/SQLExceptionConverter.class deleted file mode 100644 index 8674a82a..00000000 Binary files a/target/classes/org/hibernate/exception/spi/SQLExceptionConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/SQLExceptionConverterFactory$1.class b/target/classes/org/hibernate/exception/spi/SQLExceptionConverterFactory$1.class deleted file mode 100644 index a124f63f..00000000 Binary files a/target/classes/org/hibernate/exception/spi/SQLExceptionConverterFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/SQLExceptionConverterFactory.class b/target/classes/org/hibernate/exception/spi/SQLExceptionConverterFactory.class deleted file mode 100644 index 84189f05..00000000 Binary files a/target/classes/org/hibernate/exception/spi/SQLExceptionConverterFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/TemplatedViolatedConstraintNameExtracter.class b/target/classes/org/hibernate/exception/spi/TemplatedViolatedConstraintNameExtracter.class deleted file mode 100644 index 953fe2a5..00000000 Binary files a/target/classes/org/hibernate/exception/spi/TemplatedViolatedConstraintNameExtracter.class and /dev/null differ diff --git a/target/classes/org/hibernate/exception/spi/ViolatedConstraintNameExtracter.class b/target/classes/org/hibernate/exception/spi/ViolatedConstraintNameExtracter.class deleted file mode 100644 index a0685e6f..00000000 Binary files a/target/classes/org/hibernate/exception/spi/ViolatedConstraintNameExtracter.class and /dev/null differ diff --git a/target/classes/org/hibernate/graph/spi/AttributeNodeImplementor.class b/target/classes/org/hibernate/graph/spi/AttributeNodeImplementor.class deleted file mode 100644 index 1a380c83..00000000 Binary files a/target/classes/org/hibernate/graph/spi/AttributeNodeImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/graph/spi/GraphNodeImplementor.class b/target/classes/org/hibernate/graph/spi/GraphNodeImplementor.class deleted file mode 100644 index e5367aec..00000000 Binary files a/target/classes/org/hibernate/graph/spi/GraphNodeImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hibernate-configuration-3.0.dtd b/target/classes/org/hibernate/hibernate-configuration-3.0.dtd deleted file mode 100644 index 693b0012..00000000 --- a/target/classes/org/hibernate/hibernate-configuration-3.0.dtd +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/org/hibernate/hibernate-configuration-4.0.xsd b/target/classes/org/hibernate/hibernate-configuration-4.0.xsd deleted file mode 100644 index d2a7177f..00000000 --- a/target/classes/org/hibernate/hibernate-configuration-4.0.xsd +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/org/hibernate/hibernate-mapping-3.0.dtd b/target/classes/org/hibernate/hibernate-mapping-3.0.dtd deleted file mode 100644 index 9de0ef23..00000000 --- a/target/classes/org/hibernate/hibernate-mapping-3.0.dtd +++ /dev/null @@ -1,1078 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/org/hibernate/hibernate-mapping-4.0.xsd b/target/classes/org/hibernate/hibernate-mapping-4.0.xsd deleted file mode 100644 index b99e6907..00000000 --- a/target/classes/org/hibernate/hibernate-mapping-4.0.xsd +++ /dev/null @@ -1,1823 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/org/hibernate/hql/internal/CollectionProperties.class b/target/classes/org/hibernate/hql/internal/CollectionProperties.class deleted file mode 100644 index 3ad747ab..00000000 Binary files a/target/classes/org/hibernate/hql/internal/CollectionProperties.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/CollectionSubqueryFactory.class b/target/classes/org/hibernate/hql/internal/CollectionSubqueryFactory.class deleted file mode 100644 index 4c5da348..00000000 Binary files a/target/classes/org/hibernate/hql/internal/CollectionSubqueryFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/HolderInstantiator.class b/target/classes/org/hibernate/hql/internal/HolderInstantiator.class deleted file mode 100644 index 1cacc646..00000000 Binary files a/target/classes/org/hibernate/hql/internal/HolderInstantiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/NameGenerator.class b/target/classes/org/hibernate/hql/internal/NameGenerator.class deleted file mode 100644 index a801694f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/NameGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/QueryExecutionRequestException.class b/target/classes/org/hibernate/hql/internal/QueryExecutionRequestException.class deleted file mode 100644 index 6a8e839d..00000000 Binary files a/target/classes/org/hibernate/hql/internal/QueryExecutionRequestException.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/QuerySplitter.class b/target/classes/org/hibernate/hql/internal/QuerySplitter.class deleted file mode 100644 index bf74d265..00000000 Binary files a/target/classes/org/hibernate/hql/internal/QuerySplitter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/QueryTranslatorFactoryInitiator.class b/target/classes/org/hibernate/hql/internal/QueryTranslatorFactoryInitiator.class deleted file mode 100644 index 94022560..00000000 Binary files a/target/classes/org/hibernate/hql/internal/QueryTranslatorFactoryInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/HqlBaseLexer.class b/target/classes/org/hibernate/hql/internal/antlr/HqlBaseLexer.class deleted file mode 100644 index c2caa72e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/HqlBaseLexer.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/HqlBaseParser.class b/target/classes/org/hibernate/hql/internal/antlr/HqlBaseParser.class deleted file mode 100644 index 1ee0b93f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/HqlBaseParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/HqlSqlBaseWalker.class b/target/classes/org/hibernate/hql/internal/antlr/HqlSqlBaseWalker.class deleted file mode 100644 index f0dbf2d7..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/HqlSqlBaseWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/HqlSqlTokenTypes.class b/target/classes/org/hibernate/hql/internal/antlr/HqlSqlTokenTypes.class deleted file mode 100644 index 92ef4032..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/HqlSqlTokenTypes.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/HqlTokenTypes.class b/target/classes/org/hibernate/hql/internal/antlr/HqlTokenTypes.class deleted file mode 100644 index 2989215d..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/HqlTokenTypes.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlGeneratorBase.class b/target/classes/org/hibernate/hql/internal/antlr/SqlGeneratorBase.class deleted file mode 100644 index 2e1e22b8..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlGeneratorBase.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementLexer.class b/target/classes/org/hibernate/hql/internal/antlr/SqlStatementLexer.class deleted file mode 100644 index 8a64f683..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementLexer.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$1.class b/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$1.class deleted file mode 100644 index 37dd737b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$ErrorHandler.class b/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$ErrorHandler.class deleted file mode 100644 index 432f0e19..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$ErrorHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$StatementParserException.class b/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$StatementParserException.class deleted file mode 100644 index 5cbb4dab..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser$StatementParserException.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser.class b/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser.class deleted file mode 100644 index ff2a2d17..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParserTokenTypes.class b/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParserTokenTypes.class deleted file mode 100644 index 49e969f1..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlStatementParserTokenTypes.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/antlr/SqlTokenTypes.class b/target/classes/org/hibernate/hql/internal/antlr/SqlTokenTypes.class deleted file mode 100644 index a7f50f1c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/antlr/SqlTokenTypes.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/ASTQueryTranslatorFactory.class b/target/classes/org/hibernate/hql/internal/ast/ASTQueryTranslatorFactory.class deleted file mode 100644 index bba0b9b7..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/ASTQueryTranslatorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/DetailedSemanticException.class b/target/classes/org/hibernate/hql/internal/ast/DetailedSemanticException.class deleted file mode 100644 index fd866ea9..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/DetailedSemanticException.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/ErrorCounter.class b/target/classes/org/hibernate/hql/internal/ast/ErrorCounter.class deleted file mode 100644 index f2014f16..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/ErrorCounter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/ErrorReporter.class b/target/classes/org/hibernate/hql/internal/ast/ErrorReporter.class deleted file mode 100644 index ed0c789c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/ErrorReporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/HqlASTFactory.class b/target/classes/org/hibernate/hql/internal/ast/HqlASTFactory.class deleted file mode 100644 index c982bf5a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/HqlASTFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/HqlLexer.class b/target/classes/org/hibernate/hql/internal/ast/HqlLexer.class deleted file mode 100644 index fb46f80f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/HqlLexer.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/HqlParser.class b/target/classes/org/hibernate/hql/internal/ast/HqlParser.class deleted file mode 100644 index 8bf0e39b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/HqlParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/HqlSqlWalker$WithClauseVisitor.class b/target/classes/org/hibernate/hql/internal/ast/HqlSqlWalker$WithClauseVisitor.class deleted file mode 100644 index ae73bd84..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/HqlSqlWalker$WithClauseVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/HqlSqlWalker.class b/target/classes/org/hibernate/hql/internal/ast/HqlSqlWalker.class deleted file mode 100644 index 8925ebe2..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/HqlSqlWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/HqlToken.class b/target/classes/org/hibernate/hql/internal/ast/HqlToken.class deleted file mode 100644 index baad675c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/HqlToken.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/InvalidPathException.class b/target/classes/org/hibernate/hql/internal/ast/InvalidPathException.class deleted file mode 100644 index 7bb03059..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/InvalidPathException.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/InvalidWithClauseException.class b/target/classes/org/hibernate/hql/internal/ast/InvalidWithClauseException.class deleted file mode 100644 index f0ef7673..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/InvalidWithClauseException.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl$1NamedParamTempHolder.class b/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl$1NamedParamTempHolder.class deleted file mode 100644 index e58fca41..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl$1NamedParamTempHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl$ParameterInfo.class b/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl$ParameterInfo.class deleted file mode 100644 index dab4de35..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl$ParameterInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl.class b/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl.class deleted file mode 100644 index da79648c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/ParameterTranslationsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/ParseErrorHandler.class b/target/classes/org/hibernate/hql/internal/ast/ParseErrorHandler.class deleted file mode 100644 index 36c48b87..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/ParseErrorHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/QuerySyntaxException.class b/target/classes/org/hibernate/hql/internal/ast/QuerySyntaxException.class deleted file mode 100644 index 2465ffad..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/QuerySyntaxException.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/QueryTranslatorImpl$JavaConstantConverter.class b/target/classes/org/hibernate/hql/internal/ast/QueryTranslatorImpl$JavaConstantConverter.class deleted file mode 100644 index 640e2d4b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/QueryTranslatorImpl$JavaConstantConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/QueryTranslatorImpl.class b/target/classes/org/hibernate/hql/internal/ast/QueryTranslatorImpl.class deleted file mode 100644 index 976f41c1..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/QueryTranslatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/SqlASTFactory.class b/target/classes/org/hibernate/hql/internal/ast/SqlASTFactory.class deleted file mode 100644 index 17f2145f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/SqlASTFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$CastFunctionArguments.class b/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$CastFunctionArguments.class deleted file mode 100644 index 897681d0..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$CastFunctionArguments.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$DefaultWriter.class b/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$DefaultWriter.class deleted file mode 100644 index b20f194a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$DefaultWriter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$FunctionArgumentsCollectingWriter.class b/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$FunctionArgumentsCollectingWriter.class deleted file mode 100644 index e7b6523f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$FunctionArgumentsCollectingWriter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$SqlWriter.class b/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$SqlWriter.class deleted file mode 100644 index 2f2fddda..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$SqlWriter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$StandardFunctionArguments.class b/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$StandardFunctionArguments.class deleted file mode 100644 index 86b9b8fd..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator$StandardFunctionArguments.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator.class b/target/classes/org/hibernate/hql/internal/ast/SqlGenerator.class deleted file mode 100644 index 9e976033..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/SqlGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/TypeDiscriminatorMetadata.class b/target/classes/org/hibernate/hql/internal/ast/TypeDiscriminatorMetadata.class deleted file mode 100644 index 53e329dd..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/TypeDiscriminatorMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/exec/BasicExecutor.class b/target/classes/org/hibernate/hql/internal/ast/exec/BasicExecutor.class deleted file mode 100644 index 5424d3a9..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/exec/BasicExecutor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/exec/DeleteExecutor.class b/target/classes/org/hibernate/hql/internal/ast/exec/DeleteExecutor.class deleted file mode 100644 index ff721a6e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/exec/DeleteExecutor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/exec/MultiTableDeleteExecutor.class b/target/classes/org/hibernate/hql/internal/ast/exec/MultiTableDeleteExecutor.class deleted file mode 100644 index 3348b931..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/exec/MultiTableDeleteExecutor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/exec/MultiTableUpdateExecutor.class b/target/classes/org/hibernate/hql/internal/ast/exec/MultiTableUpdateExecutor.class deleted file mode 100644 index a2851a85..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/exec/MultiTableUpdateExecutor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/exec/StatementExecutor.class b/target/classes/org/hibernate/hql/internal/ast/exec/StatementExecutor.class deleted file mode 100644 index a304ab67..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/exec/StatementExecutor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractMapComponentNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/AbstractMapComponentNode.class deleted file mode 100644 index 26b272e4..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractMapComponentNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractNullnessCheckNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/AbstractNullnessCheckNode.class deleted file mode 100644 index 82b35d12..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractNullnessCheckNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractRestrictableStatement.class b/target/classes/org/hibernate/hql/internal/ast/tree/AbstractRestrictableStatement.class deleted file mode 100644 index 91c139e5..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractRestrictableStatement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractSelectExpression.class b/target/classes/org/hibernate/hql/internal/ast/tree/AbstractSelectExpression.class deleted file mode 100644 index af9e731e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractSelectExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractStatement.class b/target/classes/org/hibernate/hql/internal/ast/tree/AbstractStatement.class deleted file mode 100644 index 4cbfc9ea..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AbstractStatement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AggregateNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/AggregateNode.class deleted file mode 100644 index 3d2c1c56..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AggregateNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AggregatedSelectExpression.class b/target/classes/org/hibernate/hql/internal/ast/tree/AggregatedSelectExpression.class deleted file mode 100644 index dcf2cd78..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AggregatedSelectExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AssignmentSpecification$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/AssignmentSpecification$1.class deleted file mode 100644 index 1fd9e36d..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AssignmentSpecification$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/AssignmentSpecification.class b/target/classes/org/hibernate/hql/internal/ast/tree/AssignmentSpecification.class deleted file mode 100644 index 2c4d24cc..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/AssignmentSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/BetweenOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/BetweenOperatorNode.class deleted file mode 100644 index 27eae7f7..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/BetweenOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/BinaryArithmeticOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/BinaryArithmeticOperatorNode.class deleted file mode 100644 index 8e2032bf..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/BinaryArithmeticOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/BinaryLogicOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/BinaryLogicOperatorNode.class deleted file mode 100644 index 5c585e0c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/BinaryLogicOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/BinaryOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/BinaryOperatorNode.class deleted file mode 100644 index 1eec4ff5..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/BinaryOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/BooleanLiteralNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/BooleanLiteralNode.class deleted file mode 100644 index f7354554..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/BooleanLiteralNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/CastFunctionNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/CastFunctionNode.class deleted file mode 100644 index 5e1d13fd..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/CastFunctionNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/CollectionFunction.class b/target/classes/org/hibernate/hql/internal/ast/tree/CollectionFunction.class deleted file mode 100644 index d17220b3..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/CollectionFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/CollectionPropertyReference.class b/target/classes/org/hibernate/hql/internal/ast/tree/CollectionPropertyReference.class deleted file mode 100644 index 0403acc8..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/CollectionPropertyReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$1.class deleted file mode 100644 index 059d072c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$ComponentFromElementType.class b/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$ComponentFromElementType.class deleted file mode 100644 index 7d963090..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$ComponentFromElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$ComponentPropertyMapping.class b/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$ComponentPropertyMapping.class deleted file mode 100644 index 387ad785..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin$ComponentPropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin.class b/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin.class deleted file mode 100644 index 2ac7dcf9..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ComponentJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ConstructorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/ConstructorNode.class deleted file mode 100644 index 8a42ef2d..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ConstructorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/CountNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/CountNode.class deleted file mode 100644 index 06635f4b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/CountNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/DeleteStatement.class b/target/classes/org/hibernate/hql/internal/ast/tree/DeleteStatement.class deleted file mode 100644 index 545b458f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/DeleteStatement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/DisplayableNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/DisplayableNode.class deleted file mode 100644 index a2a89241..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/DisplayableNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$1.class deleted file mode 100644 index ec4e14b8..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$DereferenceType.class b/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$DereferenceType.class deleted file mode 100644 index 4b93ac18..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$DereferenceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$IllegalCollectionDereferenceExceptionBuilder.class b/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$IllegalCollectionDereferenceExceptionBuilder.class deleted file mode 100644 index 29f2bd16..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode$IllegalCollectionDereferenceExceptionBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/DotNode.class deleted file mode 100644 index 9ee88601..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/DotNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$1.class deleted file mode 100644 index 134a20e5..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$EntityJoinJoinFragment.class b/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$EntityJoinJoinFragment.class deleted file mode 100644 index cd29c47e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$EntityJoinJoinFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$EntityJoinJoinSequenceImpl.class b/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$EntityJoinJoinSequenceImpl.class deleted file mode 100644 index d05ac560..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement$EntityJoinJoinSequenceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement.class b/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement.class deleted file mode 100644 index 761eeb0a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/EntityJoinFromElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ExpectedTypeAwareNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/ExpectedTypeAwareNode.class deleted file mode 100644 index 6e0d1f78..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ExpectedTypeAwareNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$1.class deleted file mode 100644 index 71214d5c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$2.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$2.class deleted file mode 100644 index 40093e90..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$3.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$3.class deleted file mode 100644 index 57b76f29..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$4.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$4.class deleted file mode 100644 index e891c279..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromClause.class deleted file mode 100644 index baab5d21..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromClause.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromElement$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromElement$1.class deleted file mode 100644 index 3b4ccef0..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromElement$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromElement$TypeDiscriminatorMetadataImpl.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromElement$TypeDiscriminatorMetadataImpl.class deleted file mode 100644 index 908fc9b4..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromElement$TypeDiscriminatorMetadataImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromElement.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromElement.class deleted file mode 100644 index 74aef49f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementFactory.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromElementFactory.class deleted file mode 100644 index 919d35a4..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType$1.class deleted file mode 100644 index 5cd7a3e4..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType$SpecialManyToManyCollectionPropertyMapping.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType$SpecialManyToManyCollectionPropertyMapping.class deleted file mode 100644 index 39be346b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType$SpecialManyToManyCollectionPropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType.class deleted file mode 100644 index aff16b65..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromElementType.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FromReferenceNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/FromReferenceNode.class deleted file mode 100644 index 611e0852..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FromReferenceNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/FunctionNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/FunctionNode.class deleted file mode 100644 index 692b5bbd..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/FunctionNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/HqlSqlWalkerNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/HqlSqlWalkerNode.class deleted file mode 100644 index 657a2bf6..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/HqlSqlWalkerNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/IdentNode$DereferenceType.class b/target/classes/org/hibernate/hql/internal/ast/tree/IdentNode$DereferenceType.class deleted file mode 100644 index 64de5f05..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/IdentNode$DereferenceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/IdentNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/IdentNode.class deleted file mode 100644 index e1a01e1e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/IdentNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ImpliedFromElement.class b/target/classes/org/hibernate/hql/internal/ast/tree/ImpliedFromElement.class deleted file mode 100644 index 03252d40..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ImpliedFromElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/InLogicOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/InLogicOperatorNode.class deleted file mode 100644 index 68928f6c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/InLogicOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/IndexNode$AggregatedIndexCollectionSelectorParameterSpecifications.class b/target/classes/org/hibernate/hql/internal/ast/tree/IndexNode$AggregatedIndexCollectionSelectorParameterSpecifications.class deleted file mode 100644 index d2a93af5..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/IndexNode$AggregatedIndexCollectionSelectorParameterSpecifications.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/IndexNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/IndexNode.class deleted file mode 100644 index e131f2aa..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/IndexNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/InitializeableNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/InitializeableNode.class deleted file mode 100644 index cf8a25cb..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/InitializeableNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/InsertStatement.class b/target/classes/org/hibernate/hql/internal/ast/tree/InsertStatement.class deleted file mode 100644 index bef9fe1e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/InsertStatement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/IntoClause.class b/target/classes/org/hibernate/hql/internal/ast/tree/IntoClause.class deleted file mode 100644 index 6f48b8d8..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/IntoClause.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/IsNotNullLogicOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/IsNotNullLogicOperatorNode.class deleted file mode 100644 index 8e286936..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/IsNotNullLogicOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/IsNullLogicOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/IsNullLogicOperatorNode.class deleted file mode 100644 index 0ba8de89..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/IsNullLogicOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/JavaConstantNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/JavaConstantNode.class deleted file mode 100644 index 7955ffbe..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/JavaConstantNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/LiteralNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/LiteralNode.class deleted file mode 100644 index acf6cd2d..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/LiteralNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$1.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$1.class deleted file mode 100644 index cf88f88c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$BasicSelectExpression.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$BasicSelectExpression.class deleted file mode 100644 index 53f23006..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$BasicSelectExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$EntryAdapter.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$EntryAdapter.class deleted file mode 100644 index 901073e4..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$EntryAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$LocalAliasGenerator.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$LocalAliasGenerator.class deleted file mode 100644 index 2ac08ffc..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$LocalAliasGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$MapEntryBuilder.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$MapEntryBuilder.class deleted file mode 100644 index 10709343..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode$MapEntryBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode.class deleted file mode 100644 index ba702de1..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapEntryNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapKeyEntityFromElement.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapKeyEntityFromElement.class deleted file mode 100644 index 7400287a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapKeyEntityFromElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapKeyNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapKeyNode.class deleted file mode 100644 index 30252d30..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapKeyNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MapValueNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/MapValueNode.class deleted file mode 100644 index 870b5edc..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MapValueNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/MethodNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/MethodNode.class deleted file mode 100644 index 382211f3..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/MethodNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/Node.class b/target/classes/org/hibernate/hql/internal/ast/tree/Node.class deleted file mode 100644 index ebfcfe3a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/Node.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/OperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/OperatorNode.class deleted file mode 100644 index ba1b31ef..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/OperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/OrderByClause.class b/target/classes/org/hibernate/hql/internal/ast/tree/OrderByClause.class deleted file mode 100644 index 47b1a558..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/OrderByClause.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ParameterContainer.class b/target/classes/org/hibernate/hql/internal/ast/tree/ParameterContainer.class deleted file mode 100644 index 77710292..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ParameterContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ParameterNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/ParameterNode.class deleted file mode 100644 index 48683db9..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ParameterNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/PathNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/PathNode.class deleted file mode 100644 index b12b8b63..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/PathNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/QueryNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/QueryNode.class deleted file mode 100644 index f0802625..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/QueryNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ResolvableNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/ResolvableNode.class deleted file mode 100644 index b002ac4c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ResolvableNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/RestrictableStatement.class b/target/classes/org/hibernate/hql/internal/ast/tree/RestrictableStatement.class deleted file mode 100644 index 2ed29786..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/RestrictableStatement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/ResultVariableRefNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/ResultVariableRefNode.class deleted file mode 100644 index 046e5ed6..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/ResultVariableRefNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SearchedCaseNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/SearchedCaseNode.class deleted file mode 100644 index a7daeb09..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SearchedCaseNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SelectClause.class b/target/classes/org/hibernate/hql/internal/ast/tree/SelectClause.class deleted file mode 100644 index 625d182e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SelectClause.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpression.class b/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpression.class deleted file mode 100644 index 89be6d03..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpressionImpl.class b/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpressionImpl.class deleted file mode 100644 index 50f74d50..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpressionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpressionList.class b/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpressionList.class deleted file mode 100644 index d0d8a8a6..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SelectExpressionList.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SessionFactoryAwareNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/SessionFactoryAwareNode.class deleted file mode 100644 index a1e25fbd..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SessionFactoryAwareNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SimpleCaseNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/SimpleCaseNode.class deleted file mode 100644 index 76171c70..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SimpleCaseNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SqlFragment.class b/target/classes/org/hibernate/hql/internal/ast/tree/SqlFragment.class deleted file mode 100644 index d9b1ad78..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SqlFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/SqlNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/SqlNode.class deleted file mode 100644 index cfc2220d..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/SqlNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/Statement.class b/target/classes/org/hibernate/hql/internal/ast/tree/Statement.class deleted file mode 100644 index 2eabdb4a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/Statement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/UnaryArithmeticNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/UnaryArithmeticNode.class deleted file mode 100644 index cba25731..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/UnaryArithmeticNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/UnaryLogicOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/UnaryLogicOperatorNode.class deleted file mode 100644 index b9e8d1ba..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/UnaryLogicOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/UnaryOperatorNode.class b/target/classes/org/hibernate/hql/internal/ast/tree/UnaryOperatorNode.class deleted file mode 100644 index b15f8e04..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/UnaryOperatorNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/tree/UpdateStatement.class b/target/classes/org/hibernate/hql/internal/ast/tree/UpdateStatement.class deleted file mode 100644 index e96bb9be..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/tree/UpdateStatement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTAppender.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTAppender.class deleted file mode 100644 index 213c4ba4..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTAppender.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTIterator.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTIterator.class deleted file mode 100644 index 22543c4b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTParentsFirstIterator.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTParentsFirstIterator.class deleted file mode 100644 index 560bafa4..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTParentsFirstIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTPrinter.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTPrinter.class deleted file mode 100644 index 29cb5084..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTPrinter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$CollectingNodeVisitor.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$CollectingNodeVisitor.class deleted file mode 100644 index 97ebec05..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$CollectingNodeVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$FilterPredicate.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$FilterPredicate.class deleted file mode 100644 index b3528f7e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$FilterPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$IncludePredicate.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$IncludePredicate.class deleted file mode 100644 index db284308..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil$IncludePredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil.class b/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil.class deleted file mode 100644 index 850cc25e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ASTUtil.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/AliasGenerator.class b/target/classes/org/hibernate/hql/internal/ast/util/AliasGenerator.class deleted file mode 100644 index 1644b6f8..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/AliasGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/ColumnHelper.class b/target/classes/org/hibernate/hql/internal/ast/util/ColumnHelper.class deleted file mode 100644 index 25bebc8f..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/ColumnHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/JoinProcessor$1.class b/target/classes/org/hibernate/hql/internal/ast/util/JoinProcessor$1.class deleted file mode 100644 index 1bad6dc0..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/JoinProcessor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/JoinProcessor.class b/target/classes/org/hibernate/hql/internal/ast/util/JoinProcessor.class deleted file mode 100644 index 6196061c..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/JoinProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$1.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$1.class deleted file mode 100644 index b6cf2e23..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$ApproximateDecimalFormatter.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$ApproximateDecimalFormatter.class deleted file mode 100644 index 7150c833..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$ApproximateDecimalFormatter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalFormatter.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalFormatter.class deleted file mode 100644 index 05fcbb80..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalFormatter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat$1.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat$1.class deleted file mode 100644 index 72465654..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat$2.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat$2.class deleted file mode 100644 index 51a6350b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat.class deleted file mode 100644 index 67891bab..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$DecimalLiteralFormat.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$ExactDecimalFormatter.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$ExactDecimalFormatter.class deleted file mode 100644 index 0736b2b1..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor$ExactDecimalFormatter.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor.class b/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor.class deleted file mode 100644 index a30bfc28..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/LiteralProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/NodeTraverser$VisitationStrategy.class b/target/classes/org/hibernate/hql/internal/ast/util/NodeTraverser$VisitationStrategy.class deleted file mode 100644 index e272953e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/NodeTraverser$VisitationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/NodeTraverser.class b/target/classes/org/hibernate/hql/internal/ast/util/NodeTraverser.class deleted file mode 100644 index f9cb48b3..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/NodeTraverser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/PathHelper.class b/target/classes/org/hibernate/hql/internal/ast/util/PathHelper.class deleted file mode 100644 index f09636ae..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/PathHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/SessionFactoryHelper.class b/target/classes/org/hibernate/hql/internal/ast/util/SessionFactoryHelper.class deleted file mode 100644 index d3a3a2f1..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/SessionFactoryHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/ast/util/SyntheticAndFactory.class b/target/classes/org/hibernate/hql/internal/ast/util/SyntheticAndFactory.class deleted file mode 100644 index 2446c0a6..00000000 Binary files a/target/classes/org/hibernate/hql/internal/ast/util/SyntheticAndFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/ClassicQueryTranslatorFactory.class b/target/classes/org/hibernate/hql/internal/classic/ClassicQueryTranslatorFactory.class deleted file mode 100644 index 47826151..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/ClassicQueryTranslatorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/ClauseParser.class b/target/classes/org/hibernate/hql/internal/classic/ClauseParser.class deleted file mode 100644 index 02c361bf..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/ClauseParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/FromParser.class b/target/classes/org/hibernate/hql/internal/classic/FromParser.class deleted file mode 100644 index bf319bda..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/FromParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/FromPathExpressionParser.class b/target/classes/org/hibernate/hql/internal/classic/FromPathExpressionParser.class deleted file mode 100644 index 450f6d19..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/FromPathExpressionParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/GroupByParser.class b/target/classes/org/hibernate/hql/internal/classic/GroupByParser.class deleted file mode 100644 index 9958633b..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/GroupByParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/HavingParser.class b/target/classes/org/hibernate/hql/internal/classic/HavingParser.class deleted file mode 100644 index f9b16b52..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/HavingParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/OrderByParser.class b/target/classes/org/hibernate/hql/internal/classic/OrderByParser.class deleted file mode 100644 index beb9545a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/OrderByParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/Parser.class b/target/classes/org/hibernate/hql/internal/classic/Parser.class deleted file mode 100644 index abf6e94e..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/Parser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/ParserHelper.class b/target/classes/org/hibernate/hql/internal/classic/ParserHelper.class deleted file mode 100644 index 9d2f55e7..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/ParserHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/PathExpressionParser$CollectionElement.class b/target/classes/org/hibernate/hql/internal/classic/PathExpressionParser$CollectionElement.class deleted file mode 100644 index d2a7e7e8..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/PathExpressionParser$CollectionElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/PathExpressionParser.class b/target/classes/org/hibernate/hql/internal/classic/PathExpressionParser.class deleted file mode 100644 index 91159aa2..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/PathExpressionParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/PreprocessingParser.class b/target/classes/org/hibernate/hql/internal/classic/PreprocessingParser.class deleted file mode 100644 index 8b8626e1..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/PreprocessingParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl$1.class b/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl$1.class deleted file mode 100644 index e2904245..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl$2.class b/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl$2.class deleted file mode 100644 index 92b89d54..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl.class b/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl.class deleted file mode 100644 index d2dda67a..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/QueryTranslatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/SelectParser.class b/target/classes/org/hibernate/hql/internal/classic/SelectParser.class deleted file mode 100644 index 33ae7bf6..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/SelectParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/SelectPathExpressionParser.class b/target/classes/org/hibernate/hql/internal/classic/SelectPathExpressionParser.class deleted file mode 100644 index 3c56bcc3..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/SelectPathExpressionParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/internal/classic/WhereParser.class b/target/classes/org/hibernate/hql/internal/classic/WhereParser.class deleted file mode 100644 index 65d218be..00000000 Binary files a/target/classes/org/hibernate/hql/internal/classic/WhereParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/FilterTranslator.class b/target/classes/org/hibernate/hql/spi/FilterTranslator.class deleted file mode 100644 index a04ae247..00000000 Binary files a/target/classes/org/hibernate/hql/spi/FilterTranslator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/ParameterTranslations.class b/target/classes/org/hibernate/hql/spi/ParameterTranslations.class deleted file mode 100644 index 0d065139..00000000 Binary files a/target/classes/org/hibernate/hql/spi/ParameterTranslations.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/QueryTranslator.class b/target/classes/org/hibernate/hql/spi/QueryTranslator.class deleted file mode 100644 index 3027e572..00000000 Binary files a/target/classes/org/hibernate/hql/spi/QueryTranslator.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/QueryTranslatorFactory.class b/target/classes/org/hibernate/hql/spi/QueryTranslatorFactory.class deleted file mode 100644 index 66d45caf..00000000 Binary files a/target/classes/org/hibernate/hql/spi/QueryTranslatorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/AbstractMultiTableBulkIdStrategyImpl$PreparationContext.class b/target/classes/org/hibernate/hql/spi/id/AbstractMultiTableBulkIdStrategyImpl$PreparationContext.class deleted file mode 100644 index fb1c9e6b..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/AbstractMultiTableBulkIdStrategyImpl$PreparationContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/AbstractMultiTableBulkIdStrategyImpl.class b/target/classes/org/hibernate/hql/spi/id/AbstractMultiTableBulkIdStrategyImpl.class deleted file mode 100644 index 85c004f8..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/AbstractMultiTableBulkIdStrategyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/AbstractTableBasedBulkIdHandler$ProcessedWhereClause.class b/target/classes/org/hibernate/hql/spi/id/AbstractTableBasedBulkIdHandler$ProcessedWhereClause.class deleted file mode 100644 index f5592301..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/AbstractTableBasedBulkIdHandler$ProcessedWhereClause.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/AbstractTableBasedBulkIdHandler.class b/target/classes/org/hibernate/hql/spi/id/AbstractTableBasedBulkIdHandler.class deleted file mode 100644 index 63f8b91c..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/AbstractTableBasedBulkIdHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/IdTableHelper.class b/target/classes/org/hibernate/hql/spi/id/IdTableHelper.class deleted file mode 100644 index a2675621..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/IdTableHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/IdTableInfo.class b/target/classes/org/hibernate/hql/spi/id/IdTableInfo.class deleted file mode 100644 index 8272ba20..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/IdTableInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/IdTableSupport.class b/target/classes/org/hibernate/hql/spi/id/IdTableSupport.class deleted file mode 100644 index dc80e889..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/IdTableSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/IdTableSupportStandardImpl.class b/target/classes/org/hibernate/hql/spi/id/IdTableSupportStandardImpl.class deleted file mode 100644 index e90cb964..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/IdTableSupportStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy$DeleteHandler.class b/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy$DeleteHandler.class deleted file mode 100644 index 94bcf325..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy$DeleteHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy$UpdateHandler.class b/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy$UpdateHandler.class deleted file mode 100644 index 31e28032..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy$UpdateHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy.class b/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy.class deleted file mode 100644 index 9d914a65..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/MultiTableBulkIdStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/TableBasedDeleteHandlerImpl.class b/target/classes/org/hibernate/hql/spi/id/TableBasedDeleteHandlerImpl.class deleted file mode 100644 index 972b512f..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/TableBasedDeleteHandlerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/TableBasedUpdateHandlerImpl.class b/target/classes/org/hibernate/hql/spi/id/TableBasedUpdateHandlerImpl.class deleted file mode 100644 index b0b42b42..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/TableBasedUpdateHandlerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$1.class b/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$1.class deleted file mode 100644 index 01eec7c0..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$2.class b/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$2.class deleted file mode 100644 index 29b8da3c..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$3.class b/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$3.class deleted file mode 100644 index 48ba600c..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy.class b/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy.class deleted file mode 100644 index 7c80ce17..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/global/GlobalTemporaryTableBulkIdStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/global/IdTableInfoImpl.class b/target/classes/org/hibernate/hql/spi/id/global/IdTableInfoImpl.class deleted file mode 100644 index fe9fdb76..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/global/IdTableInfoImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/global/PreparationContextImpl.class b/target/classes/org/hibernate/hql/spi/id/global/PreparationContextImpl.class deleted file mode 100644 index c2ca466e..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/global/PreparationContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/AfterUseAction.class b/target/classes/org/hibernate/hql/spi/id/local/AfterUseAction.class deleted file mode 100644 index 19f4d860..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/AfterUseAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/Helper$1.class b/target/classes/org/hibernate/hql/spi/id/local/Helper$1.class deleted file mode 100644 index e689edc0..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/Helper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/Helper$TemporaryTableCreationWork.class b/target/classes/org/hibernate/hql/spi/id/local/Helper$TemporaryTableCreationWork.class deleted file mode 100644 index e101a821..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/Helper$TemporaryTableCreationWork.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/Helper$TemporaryTableDropWork.class b/target/classes/org/hibernate/hql/spi/id/local/Helper$TemporaryTableDropWork.class deleted file mode 100644 index ec382ac2..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/Helper$TemporaryTableDropWork.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/Helper.class b/target/classes/org/hibernate/hql/spi/id/local/Helper.class deleted file mode 100644 index 69fe210b..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/IdTableInfoImpl.class b/target/classes/org/hibernate/hql/spi/id/local/IdTableInfoImpl.class deleted file mode 100644 index c807c6b6..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/IdTableInfoImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$1.class b/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$1.class deleted file mode 100644 index 68420881..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$2.class b/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$2.class deleted file mode 100644 index 10e3d7c7..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$3.class b/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$3.class deleted file mode 100644 index 4406bf3a..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy.class b/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy.class deleted file mode 100644 index 27a8a454..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/local/LocalTemporaryTableBulkIdStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/persistent/DeleteHandlerImpl.class b/target/classes/org/hibernate/hql/spi/id/persistent/DeleteHandlerImpl.class deleted file mode 100644 index 72886d30..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/persistent/DeleteHandlerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/persistent/Helper.class b/target/classes/org/hibernate/hql/spi/id/persistent/Helper.class deleted file mode 100644 index 447c0392..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/persistent/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/persistent/IdTableInfoImpl.class b/target/classes/org/hibernate/hql/spi/id/persistent/IdTableInfoImpl.class deleted file mode 100644 index 384c04b7..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/persistent/IdTableInfoImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/persistent/PersistentTableBulkIdStrategy.class b/target/classes/org/hibernate/hql/spi/id/persistent/PersistentTableBulkIdStrategy.class deleted file mode 100644 index 17207482..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/persistent/PersistentTableBulkIdStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/persistent/PreparationContextImpl.class b/target/classes/org/hibernate/hql/spi/id/persistent/PreparationContextImpl.class deleted file mode 100644 index 38c5cbce..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/persistent/PreparationContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/hql/spi/id/persistent/UpdateHandlerImpl.class b/target/classes/org/hibernate/hql/spi/id/persistent/UpdateHandlerImpl.class deleted file mode 100644 index fbc67c10..00000000 Binary files a/target/classes/org/hibernate/hql/spi/id/persistent/UpdateHandlerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/AbstractPostInsertGenerator.class b/target/classes/org/hibernate/id/AbstractPostInsertGenerator.class deleted file mode 100644 index 1d796a2b..00000000 Binary files a/target/classes/org/hibernate/id/AbstractPostInsertGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/AbstractUUIDGenerator.class b/target/classes/org/hibernate/id/AbstractUUIDGenerator.class deleted file mode 100644 index 0192fce7..00000000 Binary files a/target/classes/org/hibernate/id/AbstractUUIDGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/Assigned.class b/target/classes/org/hibernate/id/Assigned.class deleted file mode 100644 index d8b5e388..00000000 Binary files a/target/classes/org/hibernate/id/Assigned.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/BulkInsertionCapableIdentifierGenerator.class b/target/classes/org/hibernate/id/BulkInsertionCapableIdentifierGenerator.class deleted file mode 100644 index e67f7673..00000000 Binary files a/target/classes/org/hibernate/id/BulkInsertionCapableIdentifierGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator$GenerationContextLocator.class b/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator$GenerationContextLocator.class deleted file mode 100644 index 04aa4083..00000000 Binary files a/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator$GenerationContextLocator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator$GenerationPlan.class b/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator$GenerationPlan.class deleted file mode 100644 index 3087de8a..00000000 Binary files a/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator$GenerationPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator.class b/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator.class deleted file mode 100644 index b589059d..00000000 Binary files a/target/classes/org/hibernate/id/CompositeNestedGeneratedValueGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/Configurable.class b/target/classes/org/hibernate/id/Configurable.class deleted file mode 100644 index 46bae06d..00000000 Binary files a/target/classes/org/hibernate/id/Configurable.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/EntityIdentifierNature.class b/target/classes/org/hibernate/id/EntityIdentifierNature.class deleted file mode 100644 index d049a82a..00000000 Binary files a/target/classes/org/hibernate/id/EntityIdentifierNature.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/ExportableColumn$ColumnIterator.class b/target/classes/org/hibernate/id/ExportableColumn$ColumnIterator.class deleted file mode 100644 index bc0b721c..00000000 Binary files a/target/classes/org/hibernate/id/ExportableColumn$ColumnIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/ExportableColumn$ValueImpl.class b/target/classes/org/hibernate/id/ExportableColumn$ValueImpl.class deleted file mode 100644 index 307d7d7a..00000000 Binary files a/target/classes/org/hibernate/id/ExportableColumn$ValueImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/ExportableColumn.class b/target/classes/org/hibernate/id/ExportableColumn.class deleted file mode 100644 index 4f2d1e15..00000000 Binary files a/target/classes/org/hibernate/id/ExportableColumn.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/ForeignGenerator.class b/target/classes/org/hibernate/id/ForeignGenerator.class deleted file mode 100644 index ff322e7c..00000000 Binary files a/target/classes/org/hibernate/id/ForeignGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/GUIDGenerator.class b/target/classes/org/hibernate/id/GUIDGenerator.class deleted file mode 100644 index 5d463ccb..00000000 Binary files a/target/classes/org/hibernate/id/GUIDGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGenerationException.class b/target/classes/org/hibernate/id/IdentifierGenerationException.class deleted file mode 100644 index 5d789b5a..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGenerationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGenerator.class b/target/classes/org/hibernate/id/IdentifierGenerator.class deleted file mode 100644 index 3fdc3c63..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGeneratorAggregator.class b/target/classes/org/hibernate/id/IdentifierGeneratorAggregator.class deleted file mode 100644 index c7bd4a72..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGeneratorAggregator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$1.class b/target/classes/org/hibernate/id/IdentifierGeneratorHelper$1.class deleted file mode 100644 index 1a1d399e..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$2.class b/target/classes/org/hibernate/id/IdentifierGeneratorHelper$2.class deleted file mode 100644 index ffd3de0f..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BasicHolder.class b/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BasicHolder.class deleted file mode 100644 index 86d3cd67..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BasicHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BigDecimalHolder.class b/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BigDecimalHolder.class deleted file mode 100644 index f02c9d7c..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BigDecimalHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BigIntegerHolder.class b/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BigIntegerHolder.class deleted file mode 100644 index 27eb62b0..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGeneratorHelper$BigIntegerHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentifierGeneratorHelper.class b/target/classes/org/hibernate/id/IdentifierGeneratorHelper.class deleted file mode 100644 index 2d5fa8a3..00000000 Binary files a/target/classes/org/hibernate/id/IdentifierGeneratorHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentityGenerator$BasicDelegate.class b/target/classes/org/hibernate/id/IdentityGenerator$BasicDelegate.class deleted file mode 100644 index 8476953b..00000000 Binary files a/target/classes/org/hibernate/id/IdentityGenerator$BasicDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentityGenerator$InsertSelectDelegate.class b/target/classes/org/hibernate/id/IdentityGenerator$InsertSelectDelegate.class deleted file mode 100644 index ce2baa65..00000000 Binary files a/target/classes/org/hibernate/id/IdentityGenerator$InsertSelectDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IdentityGenerator.class b/target/classes/org/hibernate/id/IdentityGenerator.class deleted file mode 100644 index ab8f83ca..00000000 Binary files a/target/classes/org/hibernate/id/IdentityGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IncrementGenerator.class b/target/classes/org/hibernate/id/IncrementGenerator.class deleted file mode 100644 index 7a011faf..00000000 Binary files a/target/classes/org/hibernate/id/IncrementGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/IntegralDataTypeHolder.class b/target/classes/org/hibernate/id/IntegralDataTypeHolder.class deleted file mode 100644 index 95ca5c29..00000000 Binary files a/target/classes/org/hibernate/id/IntegralDataTypeHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator$1.class b/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator$1.class deleted file mode 100644 index 59ddfb44..00000000 Binary files a/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator$2.class b/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator$2.class deleted file mode 100644 index 201b2b01..00000000 Binary files a/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator.class b/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator.class deleted file mode 100644 index f1c2cb6a..00000000 Binary files a/target/classes/org/hibernate/id/MultipleHiLoPerTableGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/PersistentIdentifierGenerator.class b/target/classes/org/hibernate/id/PersistentIdentifierGenerator.class deleted file mode 100644 index 478fd524..00000000 Binary files a/target/classes/org/hibernate/id/PersistentIdentifierGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/PostInsertIdentifierGenerator.class b/target/classes/org/hibernate/id/PostInsertIdentifierGenerator.class deleted file mode 100644 index f87f2b4e..00000000 Binary files a/target/classes/org/hibernate/id/PostInsertIdentifierGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/PostInsertIdentityPersister.class b/target/classes/org/hibernate/id/PostInsertIdentityPersister.class deleted file mode 100644 index c7a80e42..00000000 Binary files a/target/classes/org/hibernate/id/PostInsertIdentityPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/ResultSetIdentifierConsumer.class b/target/classes/org/hibernate/id/ResultSetIdentifierConsumer.class deleted file mode 100644 index 343b3436..00000000 Binary files a/target/classes/org/hibernate/id/ResultSetIdentifierConsumer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SelectGenerator$1.class b/target/classes/org/hibernate/id/SelectGenerator$1.class deleted file mode 100644 index 8a64571e..00000000 Binary files a/target/classes/org/hibernate/id/SelectGenerator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SelectGenerator$SelectGeneratorDelegate.class b/target/classes/org/hibernate/id/SelectGenerator$SelectGeneratorDelegate.class deleted file mode 100644 index ec47f53f..00000000 Binary files a/target/classes/org/hibernate/id/SelectGenerator$SelectGeneratorDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SelectGenerator.class b/target/classes/org/hibernate/id/SelectGenerator.class deleted file mode 100644 index c2bc8669..00000000 Binary files a/target/classes/org/hibernate/id/SelectGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SequenceGenerator.class b/target/classes/org/hibernate/id/SequenceGenerator.class deleted file mode 100644 index b15e7ff0..00000000 Binary files a/target/classes/org/hibernate/id/SequenceGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SequenceHiLoGenerator$1.class b/target/classes/org/hibernate/id/SequenceHiLoGenerator$1.class deleted file mode 100644 index d718e309..00000000 Binary files a/target/classes/org/hibernate/id/SequenceHiLoGenerator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SequenceHiLoGenerator.class b/target/classes/org/hibernate/id/SequenceHiLoGenerator.class deleted file mode 100644 index 49b2fea2..00000000 Binary files a/target/classes/org/hibernate/id/SequenceHiLoGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SequenceIdentityGenerator$Delegate.class b/target/classes/org/hibernate/id/SequenceIdentityGenerator$Delegate.class deleted file mode 100644 index 8ba352d2..00000000 Binary files a/target/classes/org/hibernate/id/SequenceIdentityGenerator$Delegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SequenceIdentityGenerator$NoCommentsInsert.class b/target/classes/org/hibernate/id/SequenceIdentityGenerator$NoCommentsInsert.class deleted file mode 100644 index 1c9f927f..00000000 Binary files a/target/classes/org/hibernate/id/SequenceIdentityGenerator$NoCommentsInsert.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/SequenceIdentityGenerator.class b/target/classes/org/hibernate/id/SequenceIdentityGenerator.class deleted file mode 100644 index c6ce6cda..00000000 Binary files a/target/classes/org/hibernate/id/SequenceIdentityGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/UUIDGenerationStrategy.class b/target/classes/org/hibernate/id/UUIDGenerationStrategy.class deleted file mode 100644 index dc208e40..00000000 Binary files a/target/classes/org/hibernate/id/UUIDGenerationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/UUIDGenerator.class b/target/classes/org/hibernate/id/UUIDGenerator.class deleted file mode 100644 index 833969ae..00000000 Binary files a/target/classes/org/hibernate/id/UUIDGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/UUIDHexGenerator.class b/target/classes/org/hibernate/id/UUIDHexGenerator.class deleted file mode 100644 index e8a0c650..00000000 Binary files a/target/classes/org/hibernate/id/UUIDHexGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/AbstractOptimizer.class b/target/classes/org/hibernate/id/enhanced/AbstractOptimizer.class deleted file mode 100644 index f0070658..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/AbstractOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/AccessCallback.class b/target/classes/org/hibernate/id/enhanced/AccessCallback.class deleted file mode 100644 index c24daa65..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/AccessCallback.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/DatabaseStructure.class b/target/classes/org/hibernate/id/enhanced/DatabaseStructure.class deleted file mode 100644 index 154ab4a1..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/DatabaseStructure.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/HiLoOptimizer$1.class b/target/classes/org/hibernate/id/enhanced/HiLoOptimizer$1.class deleted file mode 100644 index 3a282baf..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/HiLoOptimizer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/HiLoOptimizer$GenerationState.class b/target/classes/org/hibernate/id/enhanced/HiLoOptimizer$GenerationState.class deleted file mode 100644 index d2fa759d..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/HiLoOptimizer$GenerationState.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/HiLoOptimizer.class b/target/classes/org/hibernate/id/enhanced/HiLoOptimizer.class deleted file mode 100644 index 10a132e9..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/HiLoOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/InitialValueAwareOptimizer.class b/target/classes/org/hibernate/id/enhanced/InitialValueAwareOptimizer.class deleted file mode 100644 index 73f39967..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/InitialValueAwareOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer$1.class b/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer$1.class deleted file mode 100644 index 340ab5d6..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer$GenerationState.class b/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer$GenerationState.class deleted file mode 100644 index 661b4d8f..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer$GenerationState.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer.class b/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer.class deleted file mode 100644 index 38731cc5..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/LegacyHiLoAlgorithmOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/NoopOptimizer.class b/target/classes/org/hibernate/id/enhanced/NoopOptimizer.class deleted file mode 100644 index d8494732..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/NoopOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/Optimizer.class b/target/classes/org/hibernate/id/enhanced/Optimizer.class deleted file mode 100644 index 315018ee..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/Optimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/OptimizerFactory.class b/target/classes/org/hibernate/id/enhanced/OptimizerFactory.class deleted file mode 100644 index 8f07cc53..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/OptimizerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer$1.class b/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer$1.class deleted file mode 100644 index aaebb531..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer$GenerationState.class b/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer$GenerationState.class deleted file mode 100644 index c1f7879f..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer$GenerationState.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer.class b/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer.class deleted file mode 100644 index d2a34f37..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledLoOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer$1.class b/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer$1.class deleted file mode 100644 index bd2e7da3..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer$GenerationState.class b/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer$GenerationState.class deleted file mode 100644 index b6f7a79e..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer$GenerationState.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer.class b/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer.class deleted file mode 100644 index ba15bfc1..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledLoThreadLocalOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledOptimizer$1.class b/target/classes/org/hibernate/id/enhanced/PooledOptimizer$1.class deleted file mode 100644 index 47517d62..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledOptimizer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledOptimizer$GenerationState.class b/target/classes/org/hibernate/id/enhanced/PooledOptimizer$GenerationState.class deleted file mode 100644 index e3ea0e4c..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledOptimizer$GenerationState.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/PooledOptimizer.class b/target/classes/org/hibernate/id/enhanced/PooledOptimizer.class deleted file mode 100644 index c54afe3a..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/PooledOptimizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/SequenceStructure$1.class b/target/classes/org/hibernate/id/enhanced/SequenceStructure$1.class deleted file mode 100644 index 40ab0f5f..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/SequenceStructure$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/SequenceStructure.class b/target/classes/org/hibernate/id/enhanced/SequenceStructure.class deleted file mode 100644 index a3e0a349..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/SequenceStructure.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/SequenceStyleGenerator.class b/target/classes/org/hibernate/id/enhanced/SequenceStyleGenerator.class deleted file mode 100644 index 1a61bc6a..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/SequenceStyleGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/StandardOptimizerDescriptor.class b/target/classes/org/hibernate/id/enhanced/StandardOptimizerDescriptor.class deleted file mode 100644 index 030f5649..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/StandardOptimizerDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/TableGenerator$1$1.class b/target/classes/org/hibernate/id/enhanced/TableGenerator$1$1.class deleted file mode 100644 index 0788cdb5..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/TableGenerator$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/TableGenerator$1.class b/target/classes/org/hibernate/id/enhanced/TableGenerator$1.class deleted file mode 100644 index 2c5e23e1..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/TableGenerator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/TableGenerator.class b/target/classes/org/hibernate/id/enhanced/TableGenerator.class deleted file mode 100644 index 4203654e..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/TableGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/TableStructure$1$1.class b/target/classes/org/hibernate/id/enhanced/TableStructure$1$1.class deleted file mode 100644 index 3989f15b..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/TableStructure$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/TableStructure$1.class b/target/classes/org/hibernate/id/enhanced/TableStructure$1.class deleted file mode 100644 index a8681e0b..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/TableStructure$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/enhanced/TableStructure.class b/target/classes/org/hibernate/id/enhanced/TableStructure.class deleted file mode 100644 index c542be5b..00000000 Binary files a/target/classes/org/hibernate/id/enhanced/TableStructure.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/factory/IdentifierGeneratorFactory.class b/target/classes/org/hibernate/id/factory/IdentifierGeneratorFactory.class deleted file mode 100644 index b4bd4314..00000000 Binary files a/target/classes/org/hibernate/id/factory/IdentifierGeneratorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/factory/internal/DefaultIdentifierGeneratorFactory.class b/target/classes/org/hibernate/id/factory/internal/DefaultIdentifierGeneratorFactory.class deleted file mode 100644 index 9e2d99db..00000000 Binary files a/target/classes/org/hibernate/id/factory/internal/DefaultIdentifierGeneratorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/factory/internal/MutableIdentifierGeneratorFactoryInitiator.class b/target/classes/org/hibernate/id/factory/internal/MutableIdentifierGeneratorFactoryInitiator.class deleted file mode 100644 index fe42813f..00000000 Binary files a/target/classes/org/hibernate/id/factory/internal/MutableIdentifierGeneratorFactoryInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/factory/spi/MutableIdentifierGeneratorFactory.class b/target/classes/org/hibernate/id/factory/spi/MutableIdentifierGeneratorFactory.class deleted file mode 100644 index 39b45b28..00000000 Binary files a/target/classes/org/hibernate/id/factory/spi/MutableIdentifierGeneratorFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/insert/AbstractReturningDelegate.class b/target/classes/org/hibernate/id/insert/AbstractReturningDelegate.class deleted file mode 100644 index 56d843b7..00000000 Binary files a/target/classes/org/hibernate/id/insert/AbstractReturningDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/insert/AbstractSelectingDelegate.class b/target/classes/org/hibernate/id/insert/AbstractSelectingDelegate.class deleted file mode 100644 index 6b998895..00000000 Binary files a/target/classes/org/hibernate/id/insert/AbstractSelectingDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/insert/Binder.class b/target/classes/org/hibernate/id/insert/Binder.class deleted file mode 100644 index 4a921a13..00000000 Binary files a/target/classes/org/hibernate/id/insert/Binder.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/insert/IdentifierGeneratingInsert.class b/target/classes/org/hibernate/id/insert/IdentifierGeneratingInsert.class deleted file mode 100644 index b869d32b..00000000 Binary files a/target/classes/org/hibernate/id/insert/IdentifierGeneratingInsert.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/insert/InsertGeneratedIdentifierDelegate.class b/target/classes/org/hibernate/id/insert/InsertGeneratedIdentifierDelegate.class deleted file mode 100644 index d257f516..00000000 Binary files a/target/classes/org/hibernate/id/insert/InsertGeneratedIdentifierDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/insert/InsertSelectIdentityInsert.class b/target/classes/org/hibernate/id/insert/InsertSelectIdentityInsert.class deleted file mode 100644 index b43468de..00000000 Binary files a/target/classes/org/hibernate/id/insert/InsertSelectIdentityInsert.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/uuid/CustomVersionOneStrategy.class b/target/classes/org/hibernate/id/uuid/CustomVersionOneStrategy.class deleted file mode 100644 index c4fd94b6..00000000 Binary files a/target/classes/org/hibernate/id/uuid/CustomVersionOneStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/uuid/Helper.class b/target/classes/org/hibernate/id/uuid/Helper.class deleted file mode 100644 index 31518e05..00000000 Binary files a/target/classes/org/hibernate/id/uuid/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/id/uuid/StandardRandomStrategy.class b/target/classes/org/hibernate/id/uuid/StandardRandomStrategy.class deleted file mode 100644 index 8c405008..00000000 Binary files a/target/classes/org/hibernate/id/uuid/StandardRandomStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/integrator/internal/IntegratorServiceImpl.class b/target/classes/org/hibernate/integrator/internal/IntegratorServiceImpl.class deleted file mode 100644 index ba5c9514..00000000 Binary files a/target/classes/org/hibernate/integrator/internal/IntegratorServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/integrator/spi/Integrator.class b/target/classes/org/hibernate/integrator/spi/Integrator.class deleted file mode 100644 index d301d8c4..00000000 Binary files a/target/classes/org/hibernate/integrator/spi/Integrator.class and /dev/null differ diff --git a/target/classes/org/hibernate/integrator/spi/IntegratorService.class b/target/classes/org/hibernate/integrator/spi/IntegratorService.class deleted file mode 100644 index 5f5ecfda..00000000 Binary files a/target/classes/org/hibernate/integrator/spi/IntegratorService.class and /dev/null differ diff --git a/target/classes/org/hibernate/integrator/spi/ServiceContributingIntegrator.class b/target/classes/org/hibernate/integrator/spi/ServiceContributingIntegrator.class deleted file mode 100644 index 80cb5f73..00000000 Binary files a/target/classes/org/hibernate/integrator/spi/ServiceContributingIntegrator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractBasicQueryContractImpl.class b/target/classes/org/hibernate/internal/AbstractBasicQueryContractImpl.class deleted file mode 100644 index 820707bf..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractBasicQueryContractImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractQueryImpl.class b/target/classes/org/hibernate/internal/AbstractQueryImpl.class deleted file mode 100644 index 843c3e9a..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractScrollableResults.class b/target/classes/org/hibernate/internal/AbstractScrollableResults.class deleted file mode 100644 index 337d30f2..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractScrollableResults.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractSessionImpl$1.class b/target/classes/org/hibernate/internal/AbstractSessionImpl$1.class deleted file mode 100644 index 418eb35a..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractSessionImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractSessionImpl$ContextualJdbcConnectionAccess.class b/target/classes/org/hibernate/internal/AbstractSessionImpl$ContextualJdbcConnectionAccess.class deleted file mode 100644 index 509d0252..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractSessionImpl$ContextualJdbcConnectionAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractSessionImpl$JdbcObserverImpl.class b/target/classes/org/hibernate/internal/AbstractSessionImpl$JdbcObserverImpl.class deleted file mode 100644 index 6e20d80f..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractSessionImpl$JdbcObserverImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractSessionImpl$JdbcSessionContextImpl.class b/target/classes/org/hibernate/internal/AbstractSessionImpl$JdbcSessionContextImpl.class deleted file mode 100644 index 8e81f3e5..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractSessionImpl$JdbcSessionContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractSessionImpl$NonContextualJdbcConnectionAccess.class b/target/classes/org/hibernate/internal/AbstractSessionImpl$NonContextualJdbcConnectionAccess.class deleted file mode 100644 index cca1af02..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractSessionImpl$NonContextualJdbcConnectionAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/AbstractSessionImpl.class b/target/classes/org/hibernate/internal/AbstractSessionImpl.class deleted file mode 100644 index 9938b470..00000000 Binary files a/target/classes/org/hibernate/internal/AbstractSessionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CacheImpl.class b/target/classes/org/hibernate/internal/CacheImpl.class deleted file mode 100644 index 856485a4..00000000 Binary files a/target/classes/org/hibernate/internal/CacheImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CollectionFilterImpl.class b/target/classes/org/hibernate/internal/CollectionFilterImpl.class deleted file mode 100644 index 5da53600..00000000 Binary files a/target/classes/org/hibernate/internal/CollectionFilterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/ConnectionObserverStatsBridge.class b/target/classes/org/hibernate/internal/ConnectionObserverStatsBridge.class deleted file mode 100644 index 3a908cac..00000000 Binary files a/target/classes/org/hibernate/internal/ConnectionObserverStatsBridge.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CoreLogging.class b/target/classes/org/hibernate/internal/CoreLogging.class deleted file mode 100644 index 49b74c68..00000000 Binary files a/target/classes/org/hibernate/internal/CoreLogging.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CoreMessageLogger.class b/target/classes/org/hibernate/internal/CoreMessageLogger.class deleted file mode 100644 index b1d34df4..00000000 Binary files a/target/classes/org/hibernate/internal/CoreMessageLogger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CoreMessageLogger.i18n.properties b/target/classes/org/hibernate/internal/CoreMessageLogger.i18n.properties deleted file mode 100644 index 28e26244..00000000 --- a/target/classes/org/hibernate/internal/CoreMessageLogger.i18n.properties +++ /dev/null @@ -1,1808 +0,0 @@ -##################################################################################################### -# -# This file is for reference only, changes have no effect on the generated interface implementations. -# -##################################################################################################### - -# Id: 2 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Already session bound on call to bind(); make sure you clean up your sessions! -alreadySessionBound=Already session bound on call to bind(); make sure you clean up your sessions! -# Id: 6 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Autocommit mode: %s -# @param 1: autocommit - -autoCommitMode=Autocommit mode: %s -# Id: 8 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: JTASessionContext being used with JDBC transactions; auto-flush will not operate correctly with getCurrentSession() -autoFlushWillNotWork=JTASessionContext being used with JDBC transactions; auto-flush will not operate correctly with getCurrentSession() -# Id: 10 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: On release of batch it still contained JDBC statements -batchContainedStatementsOnRelease=On release of batch it still contained JDBC statements -# Id: 21 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Bytecode provider name : %s -# @param 1: provider - -bytecodeProvider=Bytecode provider name : %s -# Id: 22 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: c3p0 properties were encountered, but the %s provider class was not found on the classpath; these properties are going to be ignored. -# @param 1: c3p0ProviderClassName - -c3p0ProviderClassNotFound=c3p0 properties were encountered, but the %s provider class was not found on the classpath; these properties are going to be ignored. -# Id: 23 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: I/O reported cached file could not be found : %s : %s -# @param 1: path - -# @param 2: error - -cachedFileNotFound=I/O reported cached file could not be found : %s : %s -# Id: 24 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Cache provider: %s -# @param 1: name - -cacheProvider=Cache provider: %s -# Id: 27 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Calling joinTransaction() on a non JTA EntityManager -callingJoinTransactionOnNonJtaEntityManager=Calling joinTransaction() on a non JTA EntityManager -# Id: 31 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: Closing -closing=Closing -# Id: 32 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Collections fetched (minimize this): %s -# @param 1: collectionFetchCount - -collectionsFetched=Collections fetched (minimize this): %s -# Id: 33 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Collections loaded: %s -# @param 1: collectionLoadCount - -collectionsLoaded=Collections loaded: %s -# Id: 34 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Collections recreated: %s -# @param 1: collectionRecreateCount - -collectionsRecreated=Collections recreated: %s -# Id: 35 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Collections removed: %s -# @param 1: collectionRemoveCount - -collectionsRemoved=Collections removed: %s -# Id: 36 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Collections updated: %s -# @param 1: collectionUpdateCount - -collectionsUpdated=Collections updated: %s -# Id: 37 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Columns: %s -# @param 1: keySet - -columns=Columns: %s -# Id: 38 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Composite-id class does not override equals(): %s -# @param 1: name - -compositeIdClassDoesNotOverrideEquals=Composite-id class does not override equals(): %s -# Id: 39 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Composite-id class does not override hashCode(): %s -# @param 1: name - -compositeIdClassDoesNotOverrideHashCode=Composite-id class does not override hashCode(): %s -# Id: 40 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Configuration resource: %s -# @param 1: resource - -configurationResource=Configuration resource: %s -# Id: 41 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Configured SessionFactory: %s -# @param 1: name - -configuredSessionFactory=Configured SessionFactory: %s -# Id: 42 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Configuring from file: %s -# @param 1: file - -configuringFromFile=Configuring from file: %s -# Id: 43 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Configuring from resource: %s -# @param 1: resource - -configuringFromResource=Configuring from resource: %s -# Id: 44 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Configuring from URL: %s -# @param 1: url - -configuringFromUrl=Configuring from URL: %s -# Id: 45 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Configuring from XML document -configuringFromXmlDocument=Configuring from XML document -# Id: 48 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Connections obtained: %s -# @param 1: connectCount - -connectionsObtained=Connections obtained: %s -# Id: 50 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Container is providing a null PersistenceUnitRootUrl: discovery impossible -containerProvidingNullPersistenceUnitRootUrl=Container is providing a null PersistenceUnitRootUrl: discovery impossible -# Id: 51 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Ignoring bag join fetch [%s] due to prior collection join fetch -# @param 1: role - -containsJoinFetchedCollection=Ignoring bag join fetch [%s] due to prior collection join fetch -# Id: 53 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Creating subcontext: %s -# @param 1: intermediateContextName - -creatingSubcontextInfo=Creating subcontext: %s -# Id: 59 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Defining %s=true ignored in HEM -# @param 1: flushBeforeCompletion - -definingFlushBeforeCompletionIgnoredInHem=Defining %s=true ignored in HEM -# Id: 62 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: @ForceDiscriminator is deprecated use @DiscriminatorOptions instead. -deprecatedForceDescriminatorAnnotation=@ForceDiscriminator is deprecated use @DiscriminatorOptions instead. -# Id: 63 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: The Oracle9Dialect dialect has been deprecated; use either Oracle9iDialect or Oracle10gDialect instead -deprecatedOracle9Dialect=The Oracle9Dialect dialect has been deprecated; use either Oracle9iDialect or Oracle10gDialect instead -# Id: 64 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: The OracleDialect dialect has been deprecated; use Oracle8iDialect instead -deprecatedOracleDialect=The OracleDialect dialect has been deprecated; use Oracle8iDialect instead -# Id: 65 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: DEPRECATED : use [%s] instead with custom [%s] implementation -# @param 1: name - -# @param 2: name2 - -deprecatedUuidGenerator=DEPRECATED : use [%s] instead with custom [%s] implementation -# Id: 67 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Disallowing insert statement comment for select-identity due to Oracle driver bug -disallowingInsertStatementComment=Disallowing insert statement comment for select-identity due to Oracle driver bug -# Id: 69 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Duplicate generator name %s -# @param 1: name - -duplicateGeneratorName=Duplicate generator name %s -# Id: 70 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Duplicate generator table: %s -# @param 1: name - -duplicateGeneratorTable=Duplicate generator table: %s -# Id: 71 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Duplicate import: %s -> %s -# @param 1: entityName - -# @param 2: rename - -duplicateImport=Duplicate import: %s -> %s -# Id: 72 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Duplicate joins for class: %s -# @param 1: entityName - -duplicateJoins=Duplicate joins for class: %s -# Id: 73 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: entity-listener duplication, first event definition will be used: %s -# @param 1: className - -duplicateListener=entity-listener duplication, first event definition will be used: %s -# Id: 74 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Found more than one , subsequent ignored -duplicateMetadata=Found more than one , subsequent ignored -# Id: 76 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Entities deleted: %s -# @param 1: entityDeleteCount - -entitiesDeleted=Entities deleted: %s -# Id: 77 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Entities fetched (minimize this): %s -# @param 1: entityFetchCount - -entitiesFetched=Entities fetched (minimize this): %s -# Id: 78 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Entities inserted: %s -# @param 1: entityInsertCount - -entitiesInserted=Entities inserted: %s -# Id: 79 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Entities loaded: %s -# @param 1: entityLoadCount - -entitiesLoaded=Entities loaded: %s -# Id: 80 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Entities updated: %s -# @param 1: entityUpdateCount - -entitiesUpdated=Entities updated: %s -# Id: 81 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: @org.hibernate.annotations.Entity used on a non root entity: ignored for %s -# @param 1: className - -entityAnnotationOnNonRoot=@org.hibernate.annotations.Entity used on a non root entity: ignored for %s -# Id: 82 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Entity Manager closed by someone else (%s must not be used) -# @param 1: autoCloseSession - -entityManagerClosedBySomeoneElse=Entity Manager closed by someone else (%s must not be used) -# Id: 84 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Entity [%s] is abstract-class/interface explicitly mapped as non-abstract; be sure to supply entity-names -# @param 1: name - -entityMappedAsNonAbstract=Entity [%s] is abstract-class/interface explicitly mapped as non-abstract; be sure to supply entity-names -# Id: 85 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: %s %s found -# @param 1: exceptionHeader - -# @param 2: metaInfOrmXml - -exceptionHeaderFound=%s %s found -# Id: 86 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: %s No %s found -# @param 1: exceptionHeader - -# @param 2: metaInfOrmXml - -exceptionHeaderNotFound=%s No %s found -# Id: 87 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Exception in interceptor afterTransactionCompletion() -exceptionInAfterTransactionCompletionInterceptor=Exception in interceptor afterTransactionCompletion() -# Id: 88 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Exception in interceptor beforeTransactionCompletion() -exceptionInBeforeTransactionCompletionInterceptor=Exception in interceptor beforeTransactionCompletion() -# Id: 89 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Sub-resolver threw unexpected exception, continuing to next : %s -# @param 1: message - -exceptionInSubResolver=Sub-resolver threw unexpected exception, continuing to next : %s -# Id: 91 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Expected type: %s, actual value: %s -# @param 1: name - -# @param 2: string - -expectedType=Expected type: %s, actual value: %s -# Id: 92 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: An item was expired by the cache while it was locked (increase your cache timeout): %s -# @param 1: key - -expired=An item was expired by the cache while it was locked (increase your cache timeout): %s -# Id: 94 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Bound factory to JNDI name: %s -# @param 1: name - -factoryBoundToJndiName=Bound factory to JNDI name: %s -# Id: 96 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: A factory was renamed from [%s] to [%s] in JNDI -# @param 1: oldName - -# @param 2: newName - -factoryJndiRename=A factory was renamed from [%s] to [%s] in JNDI -# Id: 97 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unbound factory from JNDI name: %s -# @param 1: name - -factoryUnboundFromJndiName=Unbound factory from JNDI name: %s -# Id: 98 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: A factory was unbound from name: %s -# @param 1: name - -factoryUnboundFromName=A factory was unbound from name: %s -# Id: 99 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session): %s -# @param 1: throwable - -failed=an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session): %s -# Id: 100 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Fail-safe cleanup (collections) : %s -# @param 1: collectionLoadContext - -failSafeCollectionsCleanup=Fail-safe cleanup (collections) : %s -# Id: 101 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Fail-safe cleanup (entities) : %s -# @param 1: entityLoadContext - -failSafeEntitiesCleanup=Fail-safe cleanup (entities) : %s -# Id: 102 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Fetching database metadata -fetchingDatabaseMetadata=Fetching database metadata -# Id: 104 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: firstResult/maxResults specified with collection fetch; applying in memory! -firstOrMaxResultsSpecifiedWithCollectionFetch=firstResult/maxResults specified with collection fetch; applying in memory! -# Id: 105 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Flushes: %s -# @param 1: flushCount - -flushes=Flushes: %s -# Id: 106 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Forcing container resource cleanup on transaction completion -forcingContainerResourceCleanup=Forcing container resource cleanup on transaction completion -# Id: 107 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Forcing table use for sequence-style generator due to pooled optimizer selection where db does not support pooled sequences -forcingTableUse=Forcing table use for sequence-style generator due to pooled optimizer selection where db does not support pooled sequences -# Id: 108 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Foreign keys: %s -# @param 1: keySet - -foreignKeys=Foreign keys: %s -# Id: 109 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Found mapping document in jar: %s -# @param 1: name - -foundMappingDocument=Found mapping document in jar: %s -# Id: 112 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Getters of lazy classes cannot be final: %s.%s -# @param 1: entityName - -# @param 2: name - -gettersOfLazyClassesCannotBeFinal=Getters of lazy classes cannot be final: %s.%s -# Id: 113 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: GUID identifier generated: %s -# @param 1: result - -guidGenerated=GUID identifier generated: %s -# Id: 114 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Handling transient entity in delete processing -handlingTransientEntity=Handling transient entity in delete processing -# Id: 115 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Hibernate connection pool size: %s (min=%s) -# @param 1: poolSize - -# @param 2: minSize - -hibernateConnectionPoolSize=Hibernate connection pool size: %s (min=%s) -# Id: 116 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Config specified explicit optimizer of [%s], but [%s=%s; honoring optimizer setting -# @param 1: none - -# @param 2: incrementParam - -# @param 3: incrementSize - -honoringOptimizerSetting=Config specified explicit optimizer of [%s], but [%s=%s; honoring optimizer setting -# Id: 117 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: HQL: %s, time: %sms, rows: %s -# @param 1: hql - -# @param 2: valueOf - -# @param 3: valueOf2 - -hql=HQL: %s, time: %sms, rows: %s -# Id: 118 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: HSQLDB supports only READ_UNCOMMITTED isolation -hsqldbSupportsOnlyReadCommittedIsolation=HSQLDB supports only READ_UNCOMMITTED isolation -# Id: 119 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: On EntityLoadContext#clear, hydratingEntities contained [%s] entries -# @param 1: size - -hydratingEntitiesCount=On EntityLoadContext#clear, hydratingEntities contained [%s] entries -# Id: 120 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Ignoring unique constraints specified on table generator [%s] -# @param 1: name - -ignoringTableGeneratorConstraints=Ignoring unique constraints specified on table generator [%s] -# Id: 121 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Ignoring unrecognized query hint [%s] -# @param 1: hintName - -ignoringUnrecognizedQueryHint=Ignoring unrecognized query hint [%s] -# Id: 122 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: IllegalArgumentException in class: %s, getter method of property: %s -# @param 1: name - -# @param 2: propertyName - -illegalPropertyGetterArgument=IllegalArgumentException in class: %s, getter method of property: %s -# Id: 123 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: IllegalArgumentException in class: %s, setter method of property: %s -# @param 1: name - -# @param 2: propertyName - -illegalPropertySetterArgument=IllegalArgumentException in class: %s, setter method of property: %s -# Id: 124 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: @Immutable used on a non root entity: ignored for %s -# @param 1: className - -immutableAnnotationOnNonRoot=@Immutable used on a non root entity: ignored for %s -# Id: 125 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Mapping metadata cache was not completely processed -incompleteMappingMetadataCacheProcessing=Mapping metadata cache was not completely processed -# Id: 126 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Indexes: %s -# @param 1: keySet - -indexes=Indexes: %s -# Id: 127 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: Could not bind JNDI listener -couldNotBindJndiListener=Could not bind JNDI listener -# Id: 130 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Instantiating explicit connection provider: %s -# @param 1: providerClassName - -instantiatingExplicitConnectionProvider=Instantiating explicit connection provider: %s -# Id: 132 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Array element type error -%s -# @param 1: message - -invalidArrayElementType=Array element type error -%s -# Id: 133 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Discriminator column has to be defined in the root entity, it will be ignored in subclass: %s -# @param 1: className - -invalidDiscriminatorAnnotation=Discriminator column has to be defined in the root entity, it will be ignored in subclass: %s -# Id: 134 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Application attempted to edit read only item: %s -# @param 1: key - -invalidEditOfReadOnlyItem=Application attempted to edit read only item: %s -# Id: 135 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Invalid JNDI name: %s -# @param 1: name - -invalidJndiName=Invalid JNDI name: %s -# Id: 136 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Inapropriate use of @OnDelete on entity, annotation ignored: %s -# @param 1: entityName - -invalidOnDeleteAnnotation=Inapropriate use of @OnDelete on entity, annotation ignored: %s -# Id: 137 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Root entity should not hold an PrimaryKeyJoinColum(s), will be ignored -invalidPrimaryKeyJoinColumnAnnotation=Root entity should not hold an PrimaryKeyJoinColum(s), will be ignored -# Id: 138 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Mixing inheritance strategy in a entity hierarchy is not allowed, ignoring sub strategy in: %s -# @param 1: className - -invalidSubStrategy=Mixing inheritance strategy in a entity hierarchy is not allowed, ignoring sub strategy in: %s -# Id: 139 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Illegal use of @Table in a subclass of a SINGLE_TABLE hierarchy: %s -# @param 1: className - -invalidTableAnnotation=Illegal use of @Table in a subclass of a SINGLE_TABLE hierarchy: %s -# Id: 140 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: JACC contextID: %s -# @param 1: contextId - -jaccContextId=JACC contextID: %s -# Id: 141 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: java.sql.Types mapped the same code [%s] multiple times; was [%s]; now [%s] -# @param 1: code - -# @param 2: old - -# @param 3: name - -JavaSqlTypesMappedSameCodeMultipleTimes=java.sql.Types mapped the same code [%s] multiple times; was [%s]; now [%s] -# Id: 142 -# Message: Javassist Enhancement failed: %s -# @param 1: entityName - -javassistEnhancementFailed=Javassist Enhancement failed: %s -# Id: 144 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: %s = false breaks the EJB3 specification -# @param 1: autocommit - -jdbcAutoCommitFalseBreaksEjb3Spec=%s = false breaks the EJB3 specification -# Id: 151 -# Message: JDBC rollback failed -jdbcRollbackFailed=JDBC rollback failed -# Id: 154 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: JNDI InitialContext properties:%s -# @param 1: hash - -jndiInitialContextProperties=JNDI InitialContext properties:%s -# Id: 155 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: JNDI name %s does not handle a session factory reference -# @param 1: sfJNDIName - -jndiNameDoesNotHandleSessionFactoryReference=JNDI name %s does not handle a session factory reference -# Id: 157 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Lazy property fetching available for: %s -# @param 1: name - -lazyPropertyFetchingAvailable=Lazy property fetching available for: %s -# Id: 159 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: In CollectionLoadContext#endLoadingCollections, localLoadingCollectionKeys contained [%s], but no LoadingCollectionEntry was found in loadContexts -# @param 1: collectionKey - -loadingCollectionKeyNotFound=In CollectionLoadContext#endLoadingCollections, localLoadingCollectionKeys contained [%s], but no LoadingCollectionEntry was found in loadContexts -# Id: 160 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: On CollectionLoadContext#cleanup, localLoadingCollectionKeys contained [%s] entries -# @param 1: size - -localLoadingCollectionKeysCount=On CollectionLoadContext#cleanup, localLoadingCollectionKeys contained [%s] entries -# Id: 161 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Logging statistics.... -loggingStatistics=Logging statistics.... -# Id: 162 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: *** Logical connection closed *** -logicalConnectionClosed=*** Logical connection closed *** -# Id: 163 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: Logical connection releasing its physical connection -logicalConnectionReleasingPhysicalConnection=Logical connection releasing its physical connection -# Id: 173 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Max query time: %sms -# @param 1: queryExecutionMaxTime - -maxQueryTime=Max query time: %sms -# Id: 174 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Function template anticipated %s arguments, but %s arguments encountered -# @param 1: anticipatedNumberOfArguments - -# @param 2: numberOfArguments - -missingArguments=Function template anticipated %s arguments, but %s arguments encountered -# Id: 175 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Class annotated @org.hibernate.annotations.Entity but not javax.persistence.Entity (most likely a user error): %s -# @param 1: className - -missingEntityAnnotation=Class annotated @org.hibernate.annotations.Entity but not javax.persistence.Entity (most likely a user error): %s -# Id: 177 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error in named query: %s -# @param 1: queryName - -namedQueryError=Error in named query: %s -# Id: 178 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Naming exception occurred accessing factory: %s -# @param 1: exception - -namingExceptionAccessingFactory=Naming exception occurred accessing factory: %s -# Id: 179 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Narrowing proxy to %s - this operation breaks == -# @param 1: concreteProxyClass - -narrowingProxy=Narrowing proxy to %s - this operation breaks == -# Id: 180 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: FirstResult/maxResults specified on polymorphic query; applying in memory! -needsLimit=FirstResult/maxResults specified on polymorphic query; applying in memory! -# Id: 181 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: No appropriate connection provider encountered, assuming application will be supplying connections -noAppropriateConnectionProvider=No appropriate connection provider encountered, assuming application will be supplying connections -# Id: 182 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: No default (no-argument) constructor for class: %s (class must be instantiated by Interceptor) -# @param 1: name - -noDefaultConstructor=No default (no-argument) constructor for class: %s (class must be instantiated by Interceptor) -# Id: 183 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: no persistent classes found for query class: %s -# @param 1: query - -noPersistentClassesFound=no persistent classes found for query class: %s -# Id: 184 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: No session factory with JNDI name %s -# @param 1: sfJNDIName - -noSessionFactoryWithJndiName=No session factory with JNDI name %s -# Id: 187 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Optimistic lock failures: %s -# @param 1: optimisticFailureCount - -optimisticLockFailures=Optimistic lock failures: %s -# Id: 189 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: @OrderBy not allowed for an indexed collection, annotation ignored. -orderByAnnotationIndexedCollection=@OrderBy not allowed for an indexed collection, annotation ignored. -# Id: 193 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Overriding %s is dangerous, this might break the EJB3 specification implementation -# @param 1: transactionStrategy - -overridingTransactionStrategyDangerous=Overriding %s is dangerous, this might break the EJB3 specification implementation -# Id: 194 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: Package not found or wo package-info.java: %s -# @param 1: packageName - -packageNotFound=Package not found or wo package-info.java: %s -# Id: 196 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error parsing XML (%s) : %s -# @param 1: lineNumber - -# @param 2: message - -parsingXmlError=Error parsing XML (%s) : %s -# Id: 197 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error parsing XML: %s(%s) %s -# @param 1: file - -# @param 2: lineNumber - -# @param 3: message - -parsingXmlErrorForFile=Error parsing XML: %s(%s) %s -# Id: 198 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Warning parsing XML (%s) : %s -# @param 1: lineNumber - -# @param 2: message - -parsingXmlWarning=Warning parsing XML (%s) : %s -# Id: 199 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Warning parsing XML: %s(%s) %s -# @param 1: file - -# @param 2: lineNumber - -# @param 3: message - -parsingXmlWarningForFile=Warning parsing XML: %s(%s) %s -# Id: 200 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Persistence provider caller does not implement the EJB3 spec correctly.PersistenceUnitInfo.getNewTempClassLoader() is null. -persistenceProviderCallerDoesNotImplementEjb3SpecCorrectly=Persistence provider caller does not implement the EJB3 spec correctly.PersistenceUnitInfo.getNewTempClassLoader() is null. -# Id: 201 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Pooled optimizer source reported [%s] as the initial value; use of 1 or greater highly recommended -# @param 1: value - -pooledOptimizerReportedInitialValue=Pooled optimizer source reported [%s] as the initial value; use of 1 or greater highly recommended -# Id: 202 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: PreparedStatement was already in the batch, [%s]. -# @param 1: sql - -preparedStatementAlreadyInBatch=PreparedStatement was already in the batch, [%s]. -# Id: 203 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: processEqualityExpression() : No expression to process! -processEqualityExpression=processEqualityExpression() : No expression to process! -# Id: 204 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Processing PersistenceUnitInfo [ - name: %s - ...] -# @param 1: persistenceUnitName - -processingPersistenceUnitInfoName=Processing PersistenceUnitInfo [ - name: %s - ...] -# Id: 205 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Loaded properties from resource hibernate.properties: %s -# @param 1: maskOut - -propertiesLoaded=Loaded properties from resource hibernate.properties: %s -# Id: 206 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: hibernate.properties not found -propertiesNotFound=hibernate.properties not found -# Id: 207 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Property %s not found in class but described in (possible typo error) -# @param 1: property - -propertyNotFound=Property %s not found in class but described in (possible typo error) -# Id: 209 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: proxool properties were encountered, but the %s provider class was not found on the classpath; these properties are going to be ignored. -# @param 1: proxoolProviderClassName - -proxoolProviderClassNotFound=proxool properties were encountered, but the %s provider class was not found on the classpath; these properties are going to be ignored. -# Id: 210 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Queries executed to database: %s -# @param 1: queryExecutionCount - -queriesExecuted=Queries executed to database: %s -# Id: 213 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Query cache hits: %s -# @param 1: queryCacheHitCount - -queryCacheHits=Query cache hits: %s -# Id: 214 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Query cache misses: %s -# @param 1: queryCacheMissCount - -queryCacheMisses=Query cache misses: %s -# Id: 215 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Query cache puts: %s -# @param 1: queryCachePutCount - -queryCachePuts=Query cache puts: %s -# Id: 218 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: RDMSOS2200Dialect version: 1.0 -rdmsOs2200Dialect=RDMSOS2200Dialect version: 1.0 -# Id: 219 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Reading mappings from cache file: %s -# @param 1: cachedFile - -readingCachedMappings=Reading mappings from cache file: %s -# Id: 220 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Reading mappings from file: %s -# @param 1: path - -readingMappingsFromFile=Reading mappings from file: %s -# Id: 221 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Reading mappings from resource: %s -# @param 1: resourceName - -readingMappingsFromResource=Reading mappings from resource: %s -# Id: 222 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: read-only cache configured for mutable collection [%s] -# @param 1: name - -readOnlyCacheConfiguredForMutableCollection=read-only cache configured for mutable collection [%s] -# Id: 223 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Recognized obsolete hibernate namespace %s. Use namespace %s instead. Refer to Hibernate 3.6 Migration Guide! -# @param 1: oldHibernateNamespace - -# @param 2: hibernateNamespace - -recognizedObsoleteHibernateNamespace=Recognized obsolete hibernate namespace %s. Use namespace %s instead. Refer to Hibernate 3.6 Migration Guide! -# Id: 225 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Property [%s] has been renamed to [%s]; update your properties appropriately -# @param 1: propertyName - -# @param 2: newPropertyName - -renamedProperty=Property [%s] has been renamed to [%s]; update your properties appropriately -# Id: 226 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Required a different provider: %s -# @param 1: provider - -requiredDifferentProvider=Required a different provider: %s -# Id: 227 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Running hbm2ddl schema export -runningHbm2ddlSchemaExport=Running hbm2ddl schema export -# Id: 228 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Running hbm2ddl schema update -runningHbm2ddlSchemaUpdate=Running hbm2ddl schema update -# Id: 229 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Running schema validator -runningSchemaValidator=Running schema validator -# Id: 230 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Schema export complete -schemaExportComplete=Schema export complete -# Id: 231 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Schema export unsuccessful -schemaExportUnsuccessful=Schema export unsuccessful -# Id: 232 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Schema update complete -schemaUpdateComplete=Schema update complete -# Id: 233 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Scoping types to session factory %s after already scoped %s -# @param 1: factory - -# @param 2: factory2 - -scopingTypesToSessionFactoryAfterAlreadyScoped=Scoping types to session factory %s after already scoped %s -# Id: 235 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Searching for mapping documents in jar: %s -# @param 1: name - -searchingForMappingDocuments=Searching for mapping documents in jar: %s -# Id: 237 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Second level cache hits: %s -# @param 1: secondLevelCacheHitCount - -secondLevelCacheHits=Second level cache hits: %s -# Id: 238 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Second level cache misses: %s -# @param 1: secondLevelCacheMissCount - -secondLevelCacheMisses=Second level cache misses: %s -# Id: 239 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Second level cache puts: %s -# @param 1: secondLevelCachePutCount - -secondLevelCachePuts=Second level cache puts: %s -# Id: 240 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Service properties: %s -# @param 1: properties - -serviceProperties=Service properties: %s -# Id: 241 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Sessions closed: %s -# @param 1: sessionCloseCount - -sessionsClosed=Sessions closed: %s -# Id: 242 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Sessions opened: %s -# @param 1: sessionOpenCount - -sessionsOpened=Sessions opened: %s -# Id: 243 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Setters of lazy classes cannot be final: %s.%s -# @param 1: entityName - -# @param 2: name - -settersOfLazyClassesCannotBeFinal=Setters of lazy classes cannot be final: %s.%s -# Id: 244 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: @Sort not allowed for an indexed collection, annotation ignored. -sortAnnotationIndexedCollection=@Sort not allowed for an indexed collection, annotation ignored. -# Id: 245 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Manipulation query [%s] resulted in [%s] split queries -# @param 1: sourceQuery - -# @param 2: length - -splitQueries=Manipulation query [%s] resulted in [%s] split queries -# Id: 247 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: SQL Error: %s, SQLState: %s -# @param 1: errorCode - -# @param 2: sqlState - -sqlWarning=SQL Error: %s, SQLState: %s -# Id: 248 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Starting query cache at region: %s -# @param 1: region - -startingQueryCache=Starting query cache at region: %s -# Id: 249 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Starting service at JNDI name: %s -# @param 1: boundName - -startingServiceAtJndiName=Starting service at JNDI name: %s -# Id: 250 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Starting update timestamps cache at region: %s -# @param 1: region - -startingUpdateTimestampsCache=Starting update timestamps cache at region: %s -# Id: 251 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Start time: %s -# @param 1: startTime - -startTime=Start time: %s -# Id: 252 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Statements closed: %s -# @param 1: closeStatementCount - -statementsClosed=Statements closed: %s -# Id: 253 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Statements prepared: %s -# @param 1: prepareStatementCount - -statementsPrepared=Statements prepared: %s -# Id: 255 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Stopping service -stoppingService=Stopping service -# Id: 257 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: sub-resolver threw unexpected exception, continuing to next : %s -# @param 1: message - -subResolverException=sub-resolver threw unexpected exception, continuing to next : %s -# Id: 258 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Successful transactions: %s -# @param 1: committedTransactionCount - -successfulTransactions=Successful transactions: %s -# Id: 259 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Synchronization [%s] was already registered -# @param 1: synchronization - -synchronizationAlreadyRegistered=Synchronization [%s] was already registered -# Id: 260 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Exception calling user Synchronization [%s] : %s -# @param 1: synchronization - -# @param 2: t - -synchronizationFailed=Exception calling user Synchronization [%s] : %s -# Id: 261 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Table found: %s -# @param 1: string - -tableFound=Table found: %s -# Id: 262 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Table not found: %s -# @param 1: name - -tableNotFound=Table not found: %s -# Id: 263 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: More than one table found: %s -# @param 1: name - -multipleTablesFound=More than one table found: %s -# Id: 266 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Transactions: %s -# @param 1: transactionCount - -transactions=Transactions: %s -# Id: 267 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Transaction started on non-root session -transactionStartedOnNonRootSession=Transaction started on non-root session -# Id: 268 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Transaction strategy: %s -# @param 1: strategyClassName - -transactionStrategy=Transaction strategy: %s -# Id: 269 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Type [%s] defined no registration keys; ignoring -# @param 1: type - -typeDefinedNoRegistrationKeys=Type [%s] defined no registration keys; ignoring -# Id: 270 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Type registration [%s] overrides previous : %s -# @param 1: key - -# @param 2: old - -typeRegistrationOverridesPrevious=Type registration [%s] overrides previous : %s -# Id: 271 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Naming exception occurred accessing Ejb3Configuration -unableToAccessEjb3Configuration=Naming exception occurred accessing Ejb3Configuration -# Id: 272 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error while accessing session factory with JNDI name %s -# @param 1: sfJNDIName - -unableToAccessSessionFactory=Error while accessing session factory with JNDI name %s -# Id: 273 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Error accessing type info result set : %s -# @param 1: string - -unableToAccessTypeInfoResultSet=Error accessing type info result set : %s -# Id: 274 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to apply constraints on DDL for %s -# @param 1: className - -unableToApplyConstraints=Unable to apply constraints on DDL for %s -# Id: 276 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not bind Ejb3Configuration to JNDI -unableToBindEjb3ConfigurationToJndi=Could not bind Ejb3Configuration to JNDI -# Id: 277 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not bind factory to JNDI -unableToBindFactoryToJndi=Could not bind factory to JNDI -# Id: 278 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Could not bind value '%s' to parameter: %s; %s -# @param 1: nullSafeToString - -# @param 2: index - -# @param 3: message - -unableToBindValueToParameter=Could not bind value '%s' to parameter: %s; %s -# Id: 279 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Unable to build enhancement metamodel for %s -# @param 1: className - -unableToBuildEnhancementMetamodel=Unable to build enhancement metamodel for %s -# Id: 280 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Could not build SessionFactory using the MBean classpath - will try again using client classpath: %s -# @param 1: message - -unableToBuildSessionFactoryUsingMBeanClasspath=Could not build SessionFactory using the MBean classpath - will try again using client classpath: %s -# Id: 281 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to clean up callable statement -unableToCleanUpCallableStatement=Unable to clean up callable statement -# Id: 282 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to clean up prepared statement -unableToCleanUpPreparedStatement=Unable to clean up prepared statement -# Id: 283 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to cleanup temporary id table after use [%s] -# @param 1: t - -unableToCleanupTemporaryIdTable=Unable to cleanup temporary id table after use [%s] -# Id: 284 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error closing connection -unableToCloseConnection=Error closing connection -# Id: 285 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Error closing InitialContext [%s] -# @param 1: string - -unableToCloseInitialContext=Error closing InitialContext [%s] -# Id: 286 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error closing input files: %s -# @param 1: name - -unableToCloseInputFiles=Error closing input files: %s -# Id: 287 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not close input stream -unableToCloseInputStream=Could not close input stream -# Id: 288 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not close input stream for %s -# @param 1: resourceName - -unableToCloseInputStreamForResource=Could not close input stream for %s -# Id: 289 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to close iterator -unableToCloseIterator=Unable to close iterator -# Id: 290 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not close jar: %s -# @param 1: message - -unableToCloseJar=Could not close jar: %s -# Id: 291 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error closing output file: %s -# @param 1: outputFile - -unableToCloseOutputFile=Error closing output file: %s -# Id: 292 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: IOException occurred closing output stream -unableToCloseOutputStream=IOException occurred closing output stream -# Id: 294 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not close session -unableToCloseSession=Could not close session -# Id: 295 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not close session during rollback -unableToCloseSessionDuringRollback=Could not close session during rollback -# Id: 296 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: IOException occurred closing stream -unableToCloseStream=IOException occurred closing stream -# Id: 297 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not close stream on hibernate.properties: %s -# @param 1: error - -unableToCloseStreamError=Could not close stream on hibernate.properties: %s -# Id: 298 -# Message: JTA commit failed -unableToCommitJta=JTA commit failed -# Id: 299 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not complete schema update -unableToCompleteSchemaUpdate=Could not complete schema update -# Id: 300 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not complete schema validation -unableToCompleteSchemaValidation=Could not complete schema validation -# Id: 301 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to configure SQLExceptionConverter : %s -# @param 1: e - -unableToConfigureSqlExceptionConverter=Unable to configure SQLExceptionConverter : %s -# Id: 302 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Unable to construct current session context [%s] -# @param 1: impl - -unableToConstructCurrentSessionContext=Unable to construct current session context [%s] -# Id: 303 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to construct instance of specified SQLExceptionConverter : %s -# @param 1: t - -unableToConstructSqlExceptionConverter=Unable to construct instance of specified SQLExceptionConverter : %s -# Id: 304 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not copy system properties, system properties will be ignored -unableToCopySystemProperties=Could not copy system properties, system properties will be ignored -# Id: 305 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not create proxy factory for:%s -# @param 1: entityName - -unableToCreateProxyFactory=Could not create proxy factory for:%s -# Id: 306 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error creating schema -unableToCreateSchema=Error creating schema -# Id: 307 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not deserialize cache file: %s : %s -# @param 1: path - -# @param 2: error - -unableToDeserializeCache=Could not deserialize cache file: %s : %s -# Id: 308 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to destroy cache: %s -# @param 1: message - -unableToDestroyCache=Unable to destroy cache: %s -# Id: 309 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to destroy query cache: %s: %s -# @param 1: region - -# @param 2: message - -unableToDestroyQueryCache=Unable to destroy query cache: %s: %s -# Id: 310 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to destroy update timestamps cache: %s: %s -# @param 1: region - -# @param 2: message - -unableToDestroyUpdateTimestampsCache=Unable to destroy update timestamps cache: %s: %s -# Id: 311 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to determine lock mode value : %s -> %s -# @param 1: hintName - -# @param 2: value - -unableToDetermineLockModeValue=Unable to determine lock mode value : %s -> %s -# Id: 312 -# Message: Could not determine transaction status -unableToDetermineTransactionStatus=Could not determine transaction status -# Id: 313 -# Message: Could not determine transaction status after commit -unableToDetermineTransactionStatusAfterCommit=Could not determine transaction status after commit -# Id: 314 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to drop temporary id table after use [%s] -# @param 1: message - -unableToDropTemporaryIdTable=Unable to drop temporary id table after use [%s] -# Id: 315 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Exception executing batch [%s] -# @param 1: message - -unableToExecuteBatch=Exception executing batch [%s] -# Id: 316 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Error executing resolver [%s] : %s -# @param 1: abstractDialectResolver - -# @param 2: message - -unableToExecuteResolver=Error executing resolver [%s] : %s -# Id: 318 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Could not find any META-INF/persistence.xml file in the classpath -unableToFindPersistenceXmlInClasspath=Could not find any META-INF/persistence.xml file in the classpath -# Id: 319 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not get database metadata -unableToGetDatabaseMetadata=Could not get database metadata -# Id: 320 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to instantiate configured schema name resolver [%s] %s -# @param 1: resolverClassName - -# @param 2: message - -unableToInstantiateConfiguredSchemaNameResolver=Unable to instantiate configured schema name resolver [%s] %s -# Id: 321 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to interpret specified optimizer [%s], falling back to noop -# @param 1: type - -unableToLocateCustomOptimizerClass=Unable to interpret specified optimizer [%s], falling back to noop -# Id: 322 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to instantiate specified optimizer [%s], falling back to noop -# @param 1: type - -unableToInstantiateOptimizer=Unable to instantiate specified optimizer [%s], falling back to noop -# Id: 325 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to instantiate UUID generation strategy class : %s -# @param 1: ignore - -unableToInstantiateUuidGenerationStrategy=Unable to instantiate UUID generation strategy class : %s -# Id: 326 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Cannot join transaction: do not override %s -# @param 1: transactionStrategy - -unableToJoinTransaction=Cannot join transaction: do not override %s -# Id: 327 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Error performing load command : %s -# @param 1: e - -unableToLoadCommand=Error performing load command : %s -# Id: 328 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to load/access derby driver class sysinfo to check versions : %s -# @param 1: message - -unableToLoadDerbyDriver=Unable to load/access derby driver class sysinfo to check versions : %s -# Id: 329 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Problem loading properties from hibernate.properties -unableToLoadProperties=Problem loading properties from hibernate.properties -# Id: 330 -# Message: Unable to locate config file: %s -# @param 1: path - -unableToLocateConfigFile=Unable to locate config file: %s -# Id: 331 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to locate configured schema name resolver class [%s] %s -# @param 1: resolverClassName - -# @param 2: message - -unableToLocateConfiguredSchemaNameResolver=Unable to locate configured schema name resolver class [%s] %s -# Id: 332 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to locate MBeanServer on JMX service shutdown -unableToLocateMBeanServer=Unable to locate MBeanServer on JMX service shutdown -# Id: 334 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to locate requested UUID generation strategy class : %s -# @param 1: strategyClassName - -unableToLocateUuidGenerationStrategy=Unable to locate requested UUID generation strategy class : %s -# Id: 335 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to log SQLWarnings : %s -# @param 1: sqle - -unableToLogSqlWarnings=Unable to log SQLWarnings : %s -# Id: 336 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not log warnings -unableToLogWarnings=Could not log warnings -# Id: 337 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Unable to mark for rollback on PersistenceException: -unableToMarkForRollbackOnPersistenceException=Unable to mark for rollback on PersistenceException: -# Id: 338 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Unable to mark for rollback on TransientObjectException: -unableToMarkForRollbackOnTransientObjectException=Unable to mark for rollback on TransientObjectException: -# Id: 339 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not obtain connection metadata: %s -# @param 1: error - -unableToObjectConnectionMetadata=Could not obtain connection metadata: %s -# Id: 340 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not obtain connection to query metadata: %s -# @param 1: error - -unableToObjectConnectionToQueryMetadata=Could not obtain connection to query metadata: %s -# Id: 341 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not obtain connection metadata : %s -# @param 1: message - -unableToObtainConnectionMetadata=Could not obtain connection metadata : %s -# Id: 342 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Could not obtain connection to query metadata : %s -# @param 1: message - -unableToObtainConnectionToQueryMetadata=Could not obtain connection to query metadata : %s -# Id: 343 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not obtain initial context -unableToObtainInitialContext=Could not obtain initial context -# Id: 344 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not parse the package-level metadata [%s] -# @param 1: packageName - -unableToParseMetadata=Could not parse the package-level metadata [%s] -# Id: 345 -# Message: JDBC commit failed -unableToPerformJdbcCommit=JDBC commit failed -# Id: 346 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error during managed flush [%s] -# @param 1: message - -unableToPerformManagedFlush=Error during managed flush [%s] -# Id: 347 -# Message: Unable to query java.sql.DatabaseMetaData -unableToQueryDatabaseMetadata=Unable to query java.sql.DatabaseMetaData -# Id: 348 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Unable to read class: %s -# @param 1: message - -unableToReadClass=Unable to read class: %s -# Id: 349 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Could not read column value from result set: %s; %s -# @param 1: name - -# @param 2: message - -unableToReadColumnValueFromResultSet=Could not read column value from result set: %s; %s -# Id: 350 -# Message: Could not read a hi value - you need to populate the table: %s -# @param 1: tableName - -unableToReadHiValue=Could not read a hi value - you need to populate the table: %s -# Id: 351 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not read or init a hi value -unableToReadOrInitHiValue=Could not read or init a hi value -# Id: 352 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Unable to release batch statement... -unableToReleaseBatchStatement=Unable to release batch statement... -# Id: 353 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not release a cache lock : %s -# @param 1: ce - -unableToReleaseCacheLock=Could not release a cache lock : %s -# Id: 354 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to release initial context: %s -# @param 1: message - -unableToReleaseContext=Unable to release initial context: %s -# Id: 355 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to release created MBeanServer : %s -# @param 1: string - -unableToReleaseCreatedMBeanServer=Unable to release created MBeanServer : %s -# Id: 356 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to release isolated connection [%s] -# @param 1: ignore - -unableToReleaseIsolatedConnection=Unable to release isolated connection [%s] -# Id: 357 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to release type info result set -unableToReleaseTypeInfoResultSet=Unable to release type info result set -# Id: 358 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to erase previously added bag join fetch -unableToRemoveBagJoinFetch=Unable to erase previously added bag join fetch -# Id: 359 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Could not resolve aggregate function [%s]; using standard definition -# @param 1: name - -unableToResolveAggregateFunction=Could not resolve aggregate function [%s]; using standard definition -# Id: 360 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to resolve mapping file [%s] -# @param 1: xmlFile - -unableToResolveMappingFile=Unable to resolve mapping file [%s] -# Id: 361 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to retrieve cache from JNDI [%s]: %s -# @param 1: namespace - -# @param 2: message - -unableToRetrieveCache=Unable to retrieve cache from JNDI [%s]: %s -# Id: 362 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to retrieve type info result set : %s -# @param 1: string - -unableToRetrieveTypeInfoResultSet=Unable to retrieve type info result set : %s -# Id: 363 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to rollback connection on exception [%s] -# @param 1: ignore - -unableToRollbackConnection=Unable to rollback connection on exception [%s] -# Id: 364 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Unable to rollback isolated transaction on error [%s] : [%s] -# @param 1: e - -# @param 2: ignore - -unableToRollbackIsolatedTransaction=Unable to rollback isolated transaction on error [%s] : [%s] -# Id: 365 -# Message: JTA rollback failed -unableToRollbackJta=JTA rollback failed -# Id: 366 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Error running schema update -unableToRunSchemaUpdate=Error running schema update -# Id: 367 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Could not set transaction to rollback only -unableToSetTransactionToRollbackOnly=Could not set transaction to rollback only -# Id: 368 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Exception while stopping service -unableToStopHibernateService=Exception while stopping service -# Id: 369 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Error stopping service [%s] : %s -# @param 1: class1 - -# @param 2: string - -unableToStopService=Error stopping service [%s] : %s -# Id: 370 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Exception switching from method: [%s] to a method using the column index. Reverting to using: [% %s]; please update usage -# @param 1: requestedRole - -# @param 2: targetRole - -alternateServiceRole=Encountered request for Service by non-primary service role [%s -> %s]; please update usage -# Id: 451 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Transaction afterCompletion called by a background thread; delaying afterCompletion processing until the original thread can handle it. [status=%s] -# @param 1: status - -rollbackFromBackgroundThread=Transaction afterCompletion called by a background thread; delaying afterCompletion processing until the original thread can handle it. [status=%s] -# Id: 452 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Exception while loading a class or resource found during scanning -unableToLoadScannedClassOrResource=Exception while loading a class or resource found during scanning -# Id: 453 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Exception while discovering OSGi service implementations : %s -# @param 1: service - -unableToDiscoverOsgiService=Exception while discovering OSGi service implementations : %s -# Id: 454 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: The outer-join attribute on has been deprecated. Instead of outer-join="false", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -deprecatedManyToManyOuterJoin=The outer-join attribute on has been deprecated. Instead of outer-join="false", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -# Id: 455 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: The fetch attribute on has been deprecated. Instead of fetch="select", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -deprecatedManyToManyFetch=The fetch attribute on has been deprecated. Instead of fetch="select", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -# Id: 456 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Named parameters are used for a callable statement, but database metadata indicates named parameters are not supported. -unsupportedNamedParameters=Named parameters are used for a callable statement, but database metadata indicates named parameters are not supported. -# Id: 457 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Joined inheritance hierarchy [%1$s] defined explicit @DiscriminatorColumn. Legacy Hibernate behavior was to ignore the @DiscriminatorColumn. However, as part of issue HHH-6911 we now apply the explicit @DiscriminatorColumn. If you would prefer the legacy behavior, enable the `%2$s` setting (%2$s=true) -# @param 1: className - -# @param 2: overrideSetting - -applyingExplicitDiscriminatorColumnForJoined=Joined inheritance hierarchy [%1$s] defined explicit @DiscriminatorColumn. Legacy Hibernate behavior was to ignore the @DiscriminatorColumn. However, as part of issue HHH-6911 we now apply the explicit @DiscriminatorColumn. If you would prefer the legacy behavior, enable the `%2$s` setting (%2$s=true) -# Id: 467 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: Creating pooled optimizer (lo) with [incrementSize=%s; returnClass=%s] -# @param 1: incrementSize - -# @param 2: name - -creatingPooledLoOptimizer=Creating pooled optimizer (lo) with [incrementSize=%s; returnClass=%s] -# Id: 468 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to interpret type [%s] as an AttributeConverter due to an exception : %s -# @param 1: type - -# @param 2: exceptionMessage - -logBadHbmAttributeConverterType=Unable to interpret type [%s] as an AttributeConverter due to an exception : %s -# Id: 469 -# Message: The ClassLoaderService can not be reused. This instance was stopped already. -usingStoppedClassLoaderService=The ClassLoaderService can not be reused. This instance was stopped already. -# Id: 470 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: An unexpected session is defined for a collection, but the collection is not connected to that session. A persistent collection may only be associated with one session at a time. Overwriting session. %s -# @param 1: msg - -logUnexpectedSessionInCollectionNotConnected=An unexpected session is defined for a collection, but the collection is not connected to that session. A persistent collection may only be associated with one session at a time. Overwriting session. %s -# Id: 471 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Cannot unset session in a collection because an unexpected session is defined. A persistent collection may only be associated with one session at a time. %s -# @param 1: msg - -logCannotUnsetUnexpectedSessionInCollection=Cannot unset session in a collection because an unexpected session is defined. A persistent collection may only be associated with one session at a time. %s -# Id: 472 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Hikari properties were encountered, but the Hikari ConnectionProvider was not found on the classpath; these properties are going to be ignored. -hikariProviderClassNotFound=Hikari properties were encountered, but the Hikari ConnectionProvider was not found on the classpath; these properties are going to be ignored. -# Id: 473 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Omitting cached file [%s] as the mapping file is newer -# @param 1: cachedFile - -cachedFileObsolete=Omitting cached file [%s] as the mapping file is newer -# Id: 474 -# Message: Ambiguous persistent property methods detected on %s; mark one as @Transient : [%s] and [%s] -# @param 1: entityName - -# @param 2: oneMethodSig - -# @param 3: secondMethodSig - -ambiguousPropertyMethods=Ambiguous persistent property methods detected on %s; mark one as @Transient : [%s] and [%s] -# Id: 475 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Cannot locate column information using identifier [%s]; ignoring index [%s] -# @param 1: columnIdentifierText - -# @param 2: indexIdentifierText - -logCannotLocateIndexColumnInformation=Cannot locate column information using identifier [%s]; ignoring index [%s] -# Id: 476 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Executing import script '%s' -# @param 1: scriptName - -executingImportScript=Executing import script '%s' -# Id: 477 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Starting delayed drop of schema as part of SessionFactory shut-down' -startingDelayedSchemaDrop=Starting delayed drop of schema as part of SessionFactory shut-down' -# Id: 478 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Unsuccessful: %s -# @param 1: command - -unsuccessfulSchemaManagementCommand=Unsuccessful: %s diff --git a/target/classes/org/hibernate/internal/CoreMessageLogger_$logger.class b/target/classes/org/hibernate/internal/CoreMessageLogger_$logger.class deleted file mode 100644 index 53b1093e..00000000 Binary files a/target/classes/org/hibernate/internal/CoreMessageLogger_$logger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CriteriaImpl$1.class b/target/classes/org/hibernate/internal/CriteriaImpl$1.class deleted file mode 100644 index c6c23662..00000000 Binary files a/target/classes/org/hibernate/internal/CriteriaImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CriteriaImpl$CriterionEntry.class b/target/classes/org/hibernate/internal/CriteriaImpl$CriterionEntry.class deleted file mode 100644 index 4af05d87..00000000 Binary files a/target/classes/org/hibernate/internal/CriteriaImpl$CriterionEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CriteriaImpl$OrderEntry.class b/target/classes/org/hibernate/internal/CriteriaImpl$OrderEntry.class deleted file mode 100644 index e73d282b..00000000 Binary files a/target/classes/org/hibernate/internal/CriteriaImpl$OrderEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CriteriaImpl$Subcriteria.class b/target/classes/org/hibernate/internal/CriteriaImpl$Subcriteria.class deleted file mode 100644 index b6b8daac..00000000 Binary files a/target/classes/org/hibernate/internal/CriteriaImpl$Subcriteria.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/CriteriaImpl.class b/target/classes/org/hibernate/internal/CriteriaImpl.class deleted file mode 100644 index f593c32f..00000000 Binary files a/target/classes/org/hibernate/internal/CriteriaImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/DynamicFilterAliasGenerator.class b/target/classes/org/hibernate/internal/DynamicFilterAliasGenerator.class deleted file mode 100644 index 3daa3e22..00000000 Binary files a/target/classes/org/hibernate/internal/DynamicFilterAliasGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/FetchingScrollableResultsImpl.class b/target/classes/org/hibernate/internal/FetchingScrollableResultsImpl.class deleted file mode 100644 index 9f105dc6..00000000 Binary files a/target/classes/org/hibernate/internal/FetchingScrollableResultsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/FilterAliasGenerator.class b/target/classes/org/hibernate/internal/FilterAliasGenerator.class deleted file mode 100644 index 22a8ef84..00000000 Binary files a/target/classes/org/hibernate/internal/FilterAliasGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/FilterConfiguration.class b/target/classes/org/hibernate/internal/FilterConfiguration.class deleted file mode 100644 index e3af7fe4..00000000 Binary files a/target/classes/org/hibernate/internal/FilterConfiguration.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/FilterHelper.class b/target/classes/org/hibernate/internal/FilterHelper.class deleted file mode 100644 index 8020ddc7..00000000 Binary files a/target/classes/org/hibernate/internal/FilterHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/FilterImpl.class b/target/classes/org/hibernate/internal/FilterImpl.class deleted file mode 100644 index 5065f8be..00000000 Binary files a/target/classes/org/hibernate/internal/FilterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/IteratorImpl.class b/target/classes/org/hibernate/internal/IteratorImpl.class deleted file mode 100644 index 8268533a..00000000 Binary files a/target/classes/org/hibernate/internal/IteratorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/NamedQueryRepository.class b/target/classes/org/hibernate/internal/NamedQueryRepository.class deleted file mode 100644 index 2f28fdea..00000000 Binary files a/target/classes/org/hibernate/internal/NamedQueryRepository.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/QueryImpl.class b/target/classes/org/hibernate/internal/QueryImpl.class deleted file mode 100644 index 1d1fcb1e..00000000 Binary files a/target/classes/org/hibernate/internal/QueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SQLQueryImpl$1.class b/target/classes/org/hibernate/internal/SQLQueryImpl$1.class deleted file mode 100644 index 510edb75..00000000 Binary files a/target/classes/org/hibernate/internal/SQLQueryImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SQLQueryImpl$FetchReturnBuilder$1.class b/target/classes/org/hibernate/internal/SQLQueryImpl$FetchReturnBuilder$1.class deleted file mode 100644 index 30d622e7..00000000 Binary files a/target/classes/org/hibernate/internal/SQLQueryImpl$FetchReturnBuilder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SQLQueryImpl$FetchReturnBuilder.class b/target/classes/org/hibernate/internal/SQLQueryImpl$FetchReturnBuilder.class deleted file mode 100644 index 52fe752d..00000000 Binary files a/target/classes/org/hibernate/internal/SQLQueryImpl$FetchReturnBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SQLQueryImpl$ReturnBuilder.class b/target/classes/org/hibernate/internal/SQLQueryImpl$ReturnBuilder.class deleted file mode 100644 index aa7e49ad..00000000 Binary files a/target/classes/org/hibernate/internal/SQLQueryImpl$ReturnBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SQLQueryImpl$RootReturnBuilder$1.class b/target/classes/org/hibernate/internal/SQLQueryImpl$RootReturnBuilder$1.class deleted file mode 100644 index 2a8b4c11..00000000 Binary files a/target/classes/org/hibernate/internal/SQLQueryImpl$RootReturnBuilder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SQLQueryImpl$RootReturnBuilder.class b/target/classes/org/hibernate/internal/SQLQueryImpl$RootReturnBuilder.class deleted file mode 100644 index 664712d5..00000000 Binary files a/target/classes/org/hibernate/internal/SQLQueryImpl$RootReturnBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SQLQueryImpl.class b/target/classes/org/hibernate/internal/SQLQueryImpl.class deleted file mode 100644 index c3ff838f..00000000 Binary files a/target/classes/org/hibernate/internal/SQLQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/ScrollableResultsImpl.class b/target/classes/org/hibernate/internal/ScrollableResultsImpl.class deleted file mode 100644 index 61e9e8ab..00000000 Binary files a/target/classes/org/hibernate/internal/ScrollableResultsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl$1.class b/target/classes/org/hibernate/internal/SessionFactoryImpl$1.class deleted file mode 100644 index e8d0f80c..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl$1IntegratorObserver.class b/target/classes/org/hibernate/internal/SessionFactoryImpl$1IntegratorObserver.class deleted file mode 100644 index 3ebaa56b..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl$1IntegratorObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl$2.class b/target/classes/org/hibernate/internal/SessionFactoryImpl$2.class deleted file mode 100644 index f8b0bb5c..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl$3.class b/target/classes/org/hibernate/internal/SessionFactoryImpl$3.class deleted file mode 100644 index 66504dab..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl$4.class b/target/classes/org/hibernate/internal/SessionFactoryImpl$4.class deleted file mode 100644 index 2427cfa2..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl.class b/target/classes/org/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl.class deleted file mode 100644 index e616415e..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl$StatelessSessionBuilderImpl.class b/target/classes/org/hibernate/internal/SessionFactoryImpl$StatelessSessionBuilderImpl.class deleted file mode 100644 index 2dc2e23f..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl$StatelessSessionBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryImpl.class b/target/classes/org/hibernate/internal/SessionFactoryImpl.class deleted file mode 100644 index 0d78531e..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryObserverChain.class b/target/classes/org/hibernate/internal/SessionFactoryObserverChain.class deleted file mode 100644 index 74764dc2..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryObserverChain.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryRegistry$1.class b/target/classes/org/hibernate/internal/SessionFactoryRegistry$1.class deleted file mode 100644 index 89de295a..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryRegistry$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryRegistry$ObjectFactoryImpl.class b/target/classes/org/hibernate/internal/SessionFactoryRegistry$ObjectFactoryImpl.class deleted file mode 100644 index 955eb7e5..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryRegistry$ObjectFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionFactoryRegistry.class b/target/classes/org/hibernate/internal/SessionFactoryRegistry.class deleted file mode 100644 index c2c547d9..00000000 Binary files a/target/classes/org/hibernate/internal/SessionFactoryRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$1.class b/target/classes/org/hibernate/internal/SessionImpl$1.class deleted file mode 100644 index eade827c..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$2.class b/target/classes/org/hibernate/internal/SessionImpl$2.class deleted file mode 100644 index fbf38546..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$3.class b/target/classes/org/hibernate/internal/SessionImpl$3.class deleted file mode 100644 index 8695cc6d..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$4.class b/target/classes/org/hibernate/internal/SessionImpl$4.class deleted file mode 100644 index fcaf49e1..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$5.class b/target/classes/org/hibernate/internal/SessionImpl$5.class deleted file mode 100644 index 8743d236..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$6.class b/target/classes/org/hibernate/internal/SessionImpl$6.class deleted file mode 100644 index 7a16c19b..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$7.class b/target/classes/org/hibernate/internal/SessionImpl$7.class deleted file mode 100644 index 9ecadf3f..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$7.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$BaseNaturalIdLoadAccessImpl.class b/target/classes/org/hibernate/internal/SessionImpl$BaseNaturalIdLoadAccessImpl.class deleted file mode 100644 index 57953b18..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$BaseNaturalIdLoadAccessImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$CoordinatingEntityNameResolver.class b/target/classes/org/hibernate/internal/SessionImpl$CoordinatingEntityNameResolver.class deleted file mode 100644 index e0bbca57..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$CoordinatingEntityNameResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$IdentifierLoadAccessImpl.class b/target/classes/org/hibernate/internal/SessionImpl$IdentifierLoadAccessImpl.class deleted file mode 100644 index c68f5629..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$IdentifierLoadAccessImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$LobHelperImpl.class b/target/classes/org/hibernate/internal/SessionImpl$LobHelperImpl.class deleted file mode 100644 index 4daf9856..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$LobHelperImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$LockRequestImpl.class b/target/classes/org/hibernate/internal/SessionImpl$LockRequestImpl.class deleted file mode 100644 index 1c67395a..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$LockRequestImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$MultiIdentifierLoadAccessImpl.class b/target/classes/org/hibernate/internal/SessionImpl$MultiIdentifierLoadAccessImpl.class deleted file mode 100644 index 045ae444..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$MultiIdentifierLoadAccessImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$NaturalIdLoadAccessImpl.class b/target/classes/org/hibernate/internal/SessionImpl$NaturalIdLoadAccessImpl.class deleted file mode 100644 index a09b2877..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$NaturalIdLoadAccessImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$SharedSessionBuilderImpl.class b/target/classes/org/hibernate/internal/SessionImpl$SharedSessionBuilderImpl.class deleted file mode 100644 index a6f0e493..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$SharedSessionBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl$SimpleNaturalIdLoadAccessImpl.class b/target/classes/org/hibernate/internal/SessionImpl$SimpleNaturalIdLoadAccessImpl.class deleted file mode 100644 index aca8f361..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl$SimpleNaturalIdLoadAccessImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/SessionImpl.class b/target/classes/org/hibernate/internal/SessionImpl.class deleted file mode 100644 index 87c90b4e..00000000 Binary files a/target/classes/org/hibernate/internal/SessionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/StatelessSessionImpl$1.class b/target/classes/org/hibernate/internal/StatelessSessionImpl$1.class deleted file mode 100644 index 8534239e..00000000 Binary files a/target/classes/org/hibernate/internal/StatelessSessionImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/StatelessSessionImpl$2.class b/target/classes/org/hibernate/internal/StatelessSessionImpl$2.class deleted file mode 100644 index 88667cd0..00000000 Binary files a/target/classes/org/hibernate/internal/StatelessSessionImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/StatelessSessionImpl.class b/target/classes/org/hibernate/internal/StatelessSessionImpl.class deleted file mode 100644 index b68ddb2a..00000000 Binary files a/target/classes/org/hibernate/internal/StatelessSessionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/StaticFilterAliasGenerator.class b/target/classes/org/hibernate/internal/StaticFilterAliasGenerator.class deleted file mode 100644 index 112296d5..00000000 Binary files a/target/classes/org/hibernate/internal/StaticFilterAliasGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/TypeLocatorImpl.class b/target/classes/org/hibernate/internal/TypeLocatorImpl.class deleted file mode 100644 index 9887b4e9..00000000 Binary files a/target/classes/org/hibernate/internal/TypeLocatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/WrapperOptionsImpl.class b/target/classes/org/hibernate/internal/WrapperOptionsImpl.class deleted file mode 100644 index 9b42fed1..00000000 Binary files a/target/classes/org/hibernate/internal/WrapperOptionsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger.class b/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger.class deleted file mode 100644 index 9e4c89f4..00000000 Binary files a/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger.i18n.properties b/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger.i18n.properties deleted file mode 100644 index 170501a8..00000000 --- a/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger.i18n.properties +++ /dev/null @@ -1,49 +0,0 @@ -##################################################################################################### -# -# This file is for reference only, changes have no effect on the generated interface implementations. -# -##################################################################################################### - -# Id: 10001001 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Connection properties: %s -# @param 1: connectionProps - -connectionProperties=Connection properties: %s -# Id: 10001002 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Using Hibernate built-in connection pool (not for production use!) -usingHibernateBuiltInConnectionPool=Using Hibernate built-in connection pool (not for production use!) -# Id: 10001003 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Autocommit mode: %s -# @param 1: autocommit - -autoCommitMode=Autocommit mode: %s -# Id: 10001004 -# Message: JDBC URL was not specified by property %s -# @param 1: url - -jdbcUrlNotSpecified=JDBC URL was not specified by property %s -# Id: 10001005 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: using driver [%s] at URL [%s] -# @param 1: driverClassName - -# @param 2: url - -usingDriver=using driver [%s] at URL [%s] -# Id: 10001006 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: No JDBC Driver class was specified by property %s -# @param 1: driver - -jdbcDriverNotSpecified=No JDBC Driver class was specified by property %s -# Id: 10001007 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: JDBC isolation level: %s -# @param 1: isolationLevelToString - -jdbcIsolationLevel=JDBC isolation level: %s -# Id: 10001008 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Cleaning up connection pool [%s] -# @param 1: url - -cleaningUpConnectionPool=Cleaning up connection pool [%s] -# Id: 10001009 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Problem closing pooled connection -unableToClosePooledConnection=Problem closing pooled connection diff --git a/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger_$logger.class b/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger_$logger.class deleted file mode 100644 index 6a743aaf..00000000 Binary files a/target/classes/org/hibernate/internal/log/ConnectionPoolingLogger_$logger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/log/DeprecationLogger.class b/target/classes/org/hibernate/internal/log/DeprecationLogger.class deleted file mode 100644 index f39524ec..00000000 Binary files a/target/classes/org/hibernate/internal/log/DeprecationLogger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/log/DeprecationLogger.i18n.properties b/target/classes/org/hibernate/internal/log/DeprecationLogger.i18n.properties deleted file mode 100644 index 6cb9f922..00000000 --- a/target/classes/org/hibernate/internal/log/DeprecationLogger.i18n.properties +++ /dev/null @@ -1,99 +0,0 @@ -##################################################################################################### -# -# This file is for reference only, changes have no effect on the generated interface implementations. -# -##################################################################################################### - -# Id: 90000001 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Found usage of deprecated setting for specifying Scanner [hibernate.ejb.resource_scanner]; use [hibernate.archive.scanner] instead -logDeprecatedScannerSetting=Found usage of deprecated setting for specifying Scanner [hibernate.ejb.resource_scanner]; use [hibernate.archive.scanner] instead -# Id: 90000002 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Support for an entity defining multiple entity-modes is deprecated -logDeprecationOfMultipleEntityModeSupport=Support for an entity defining multiple entity-modes is deprecated -# Id: 90000003 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Use of DOM4J entity-mode is considered deprecated -logDeprecationOfDomEntityModeSupport=Use of DOM4J entity-mode is considered deprecated -# Id: 90000004 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: embed-xml attributes were intended to be used for DOM4J entity mode. Since that entity mode has been removed, embed-xml attributes are no longer supported and should be removed from mappings. -logDeprecationOfEmbedXmlSupport=embed-xml attributes were intended to be used for DOM4J entity mode. Since that entity mode has been removed, embed-xml attributes are no longer supported and should be removed from mappings. -# Id: 90000005 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Defining an entity [%s] with no physical id attribute is no longer supported; please map the identifier to a physical entity attribute -# @param 1: entityName - -logDeprecationOfNonNamedIdAttribute=Defining an entity [%s] with no physical id attribute is no longer supported; please map the identifier to a physical entity attribute -# Id: 90000006 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Attempted to specify unsupported NamingStrategy via setting [%s]; NamingStrategy has been removed in favor of the split ImplicitNamingStrategy and PhysicalNamingStrategy; use [%s] or [%s], respectively, instead. -# @param 1: setting - -# @param 2: implicitInstead - -# @param 3: physicalInstead - -logDeprecatedNamingStrategySetting=Attempted to specify unsupported NamingStrategy via setting [%s]; NamingStrategy has been removed in favor of the split ImplicitNamingStrategy and PhysicalNamingStrategy; use [%s] or [%s], respectively, instead. -# Id: 90000007 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Attempted to specify unsupported NamingStrategy via command-line argument [--naming]. NamingStrategy has been removed in favor of the split ImplicitNamingStrategy and PhysicalNamingStrategy; use [--implicit-naming] or [--physical-naming], respectively, instead. -logDeprecatedNamingStrategyArgument=Attempted to specify unsupported NamingStrategy via command-line argument [--naming]. NamingStrategy has been removed in favor of the split ImplicitNamingStrategy and PhysicalNamingStrategy; use [--implicit-naming] or [--physical-naming], respectively, instead. -# Id: 90000008 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Attempted to specify unsupported NamingStrategy via Ant task argument. NamingStrategy has been removed in favor of the split ImplicitNamingStrategy and PhysicalNamingStrategy. -logDeprecatedNamingStrategyAntArgument=Attempted to specify unsupported NamingStrategy via Ant task argument. NamingStrategy has been removed in favor of the split ImplicitNamingStrategy and PhysicalNamingStrategy. -# Id: 90000009 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: The outer-join attribute on has been deprecated. Instead of outer-join="false", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -deprecatedManyToManyOuterJoin=The outer-join attribute on has been deprecated. Instead of outer-join="false", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -# Id: 90000010 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: The fetch attribute on has been deprecated. Instead of fetch="select", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -deprecatedManyToManyFetch=The fetch attribute on has been deprecated. Instead of fetch="select", use lazy="extra" with , , , , or , which will only initialize entities (not as a proxy) as needed. -# Id: 90000011 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: org.hibernate.hql.spi.TemporaryTableBulkIdStrategy (temporary) has been deprecated in favor of the more specific org.hibernate.hql.spi.id.local.LocalTemporaryTableBulkIdStrategy (local_temporary). -logDeprecationOfTemporaryTableBulkIdStrategy=org.hibernate.hql.spi.TemporaryTableBulkIdStrategy (temporary) has been deprecated in favor of the more specific org.hibernate.hql.spi.id.local.LocalTemporaryTableBulkIdStrategy (local_temporary). -# Id: 90000012 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Recognized obsolete hibernate namespace %s. Use namespace %s instead. Support for obsolete DTD/XSD namespaces may be removed at any time. -# @param 1: oldHibernateNamespace - -# @param 2: hibernateNamespace - -recognizedObsoleteHibernateNamespace=Recognized obsolete hibernate namespace %s. Use namespace %s instead. Support for obsolete DTD/XSD namespaces may be removed at any time. -# Id: 90000013 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Named ConnectionProvider [%s] has been deprecated in favor of %s; that provider will be used instead. Update your settings -# @param 1: providerClassName - -# @param 2: actualProviderClassName - -connectionProviderClassDeprecated=Named ConnectionProvider [%s] has been deprecated in favor of %s; that provider will be used instead. Update your settings -# Id: 90000014 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Found use of deprecated [%s] sequence-based id generator; use org.hibernate.id.enhanced.SequenceStyleGenerator instead. See Hibernate Domain Model Mapping Guide for details. -# @param 1: generatorImpl - -deprecatedSequenceGenerator=Found use of deprecated [%s] sequence-based id generator; use org.hibernate.id.enhanced.SequenceStyleGenerator instead. See Hibernate Domain Model Mapping Guide for details. -# Id: 90000015 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Found use of deprecated [%s] table-based id generator; use org.hibernate.id.enhanced.TableGenerator instead. See Hibernate Domain Model Mapping Guide for details. -# @param 1: generatorImpl - -deprecatedTableGenerator=Found use of deprecated [%s] table-based id generator; use org.hibernate.id.enhanced.TableGenerator instead. See Hibernate Domain Model Mapping Guide for details. -# Id: 90000016 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Found use of deprecated 'collection property' syntax in HQL/JPQL query [%2$s.%1$s]; use collection function syntax instead [%1$s(%2$s)]. -# @param 1: collectionPropertyName - -# @param 2: alias - -logDeprecationOfCollectionPropertiesInHql=Found use of deprecated 'collection property' syntax in HQL/JPQL query [%2$s.%1$s]; use collection function syntax instead [%1$s(%2$s)]. -# Id: 90000017 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Found use of deprecated entity-type selector syntax in HQL/JPQL query ['%1$s.class']; use TYPE operator instead : type(%1$s) -# @param 1: path - -logDeprecationOfClassEntityTypeSelector=Found use of deprecated entity-type selector syntax in HQL/JPQL query ['%1$s.class']; use TYPE operator instead : type(%1$s) -# Id: 90000018 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Found use of deprecated transaction factory setting [%s]; use the new TransactionCoordinatorBuilder settings [%s] instead -# @param 1: legacySettingName - -# @param 2: updatedSettingName - -logDeprecatedTransactionFactorySetting=Found use of deprecated transaction factory setting [%s]; use the new TransactionCoordinatorBuilder settings [%s] instead -# Id: 90000020 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: You are using the deprecated legacy bytecode enhancement Ant-task. This task is left in place for a short-time to aid migrations to 5.1 and the new (vastly improved) bytecode enhancement support. This task (%s) now delegates to thenew Ant-task (%s) leveraging that new bytecode enhancement. You should update your build to use the new task explicitly. -# @param 1: taskClass - -# @param 2: newTaskClass - -logDeprecatedInstrumentTask=You are using the deprecated legacy bytecode enhancement Ant-task. This task is left in place for a short-time to aid migrations to 5.1 and the new (vastly improved) bytecode enhancement support. This task (%s) now delegates to thenew Ant-task (%s) leveraging that new bytecode enhancement. You should update your build to use the new task explicitly. diff --git a/target/classes/org/hibernate/internal/log/DeprecationLogger_$logger.class b/target/classes/org/hibernate/internal/log/DeprecationLogger_$logger.class deleted file mode 100644 index 219d45a9..00000000 Binary files a/target/classes/org/hibernate/internal/log/DeprecationLogger_$logger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/log/UrlMessageBundle.class b/target/classes/org/hibernate/internal/log/UrlMessageBundle.class deleted file mode 100644 index 03cd440c..00000000 Binary files a/target/classes/org/hibernate/internal/log/UrlMessageBundle.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/log/UrlMessageBundle.i18n.properties b/target/classes/org/hibernate/internal/log/UrlMessageBundle.i18n.properties deleted file mode 100644 index d5880802..00000000 --- a/target/classes/org/hibernate/internal/log/UrlMessageBundle.i18n.properties +++ /dev/null @@ -1,31 +0,0 @@ -##################################################################################################### -# -# This file is for reference only, changes have no effect on the generated interface implementations. -# -##################################################################################################### - -# Id: 10000001 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Malformed URL: %s -# @param 1: jarUrl - The URL that lead to the {@link java.net.URISyntaxException} -logMalformedUrl=Malformed URL: %s -# Id: 10000002 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: File or directory named by URL [%s] could not be found. URL will be ignored -# @param 1: url - The URL is supposed to identify the file which we cannot locate -logUnableToFindFileByUrl=File or directory named by URL [%s] could not be found. URL will be ignored -# Id: 10000003 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: File or directory named by URL [%s] did not exist. URL will be ignored -# @param 1: url - The URL that named the file/directory -logFileDoesNotExist=File or directory named by URL [%s] did not exist. URL will be ignored -# Id: 10000004 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Expecting resource named by URL [%s] to be a directory, but it was not. URL will be ignored -# @param 1: url - The URL that named the file/directory -logFileIsNotDirectory=Expecting resource named by URL [%s] to be a directory, but it was not. URL will be ignored -# Id: 10000005 -# Message: File [%s] referenced by given URL [%s] does not exist -# @param 1: filePart - The "file part" that we gleaned from the URL -# @param 2: url - The given URL -fileDoesNotExist=File [%s] referenced by given URL [%s] does not exist diff --git a/target/classes/org/hibernate/internal/log/UrlMessageBundle_$logger.class b/target/classes/org/hibernate/internal/log/UrlMessageBundle_$logger.class deleted file mode 100644 index ead5361f..00000000 Binary files a/target/classes/org/hibernate/internal/log/UrlMessageBundle_$logger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/BytesHelper.class b/target/classes/org/hibernate/internal/util/BytesHelper.class deleted file mode 100644 index f5f46737..00000000 Binary files a/target/classes/org/hibernate/internal/util/BytesHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/Cloneable$1.class b/target/classes/org/hibernate/internal/util/Cloneable$1.class deleted file mode 100644 index 2e9c5810..00000000 Binary files a/target/classes/org/hibernate/internal/util/Cloneable$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/Cloneable$2.class b/target/classes/org/hibernate/internal/util/Cloneable$2.class deleted file mode 100644 index 4afa5a1c..00000000 Binary files a/target/classes/org/hibernate/internal/util/Cloneable$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/Cloneable.class b/target/classes/org/hibernate/internal/util/Cloneable.class deleted file mode 100644 index 87bc56c5..00000000 Binary files a/target/classes/org/hibernate/internal/util/Cloneable.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/ConfigHelper.class b/target/classes/org/hibernate/internal/util/ConfigHelper.class deleted file mode 100644 index 481936d1..00000000 Binary files a/target/classes/org/hibernate/internal/util/ConfigHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/EntityPrinter.class b/target/classes/org/hibernate/internal/util/EntityPrinter.class deleted file mode 100644 index 7e46f5da..00000000 Binary files a/target/classes/org/hibernate/internal/util/EntityPrinter.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/JdbcExceptionHelper.class b/target/classes/org/hibernate/internal/util/JdbcExceptionHelper.class deleted file mode 100644 index d902c0f3..00000000 Binary files a/target/classes/org/hibernate/internal/util/JdbcExceptionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/LockModeConverter$1.class b/target/classes/org/hibernate/internal/util/LockModeConverter$1.class deleted file mode 100644 index 90b891b2..00000000 Binary files a/target/classes/org/hibernate/internal/util/LockModeConverter$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/LockModeConverter.class b/target/classes/org/hibernate/internal/util/LockModeConverter.class deleted file mode 100644 index cb6f00e8..00000000 Binary files a/target/classes/org/hibernate/internal/util/LockModeConverter.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/MarkerObject.class b/target/classes/org/hibernate/internal/util/MarkerObject.class deleted file mode 100644 index 94c7024e..00000000 Binary files a/target/classes/org/hibernate/internal/util/MarkerObject.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/ReflectHelper.class b/target/classes/org/hibernate/internal/util/ReflectHelper.class deleted file mode 100644 index 8b6962fc..00000000 Binary files a/target/classes/org/hibernate/internal/util/ReflectHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/SerializationHelper$1.class b/target/classes/org/hibernate/internal/util/SerializationHelper$1.class deleted file mode 100644 index dc181f66..00000000 Binary files a/target/classes/org/hibernate/internal/util/SerializationHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/SerializationHelper$CustomObjectInputStream.class b/target/classes/org/hibernate/internal/util/SerializationHelper$CustomObjectInputStream.class deleted file mode 100644 index 20c793d4..00000000 Binary files a/target/classes/org/hibernate/internal/util/SerializationHelper$CustomObjectInputStream.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/SerializationHelper.class b/target/classes/org/hibernate/internal/util/SerializationHelper.class deleted file mode 100644 index c6754b1a..00000000 Binary files a/target/classes/org/hibernate/internal/util/SerializationHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/StringHelper$Renderer.class b/target/classes/org/hibernate/internal/util/StringHelper$Renderer.class deleted file mode 100644 index 68810c61..00000000 Binary files a/target/classes/org/hibernate/internal/util/StringHelper$Renderer.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/StringHelper.class b/target/classes/org/hibernate/internal/util/StringHelper.class deleted file mode 100644 index aed16677..00000000 Binary files a/target/classes/org/hibernate/internal/util/StringHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/ValueHolder$1.class b/target/classes/org/hibernate/internal/util/ValueHolder$1.class deleted file mode 100644 index 0baffcdd..00000000 Binary files a/target/classes/org/hibernate/internal/util/ValueHolder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/ValueHolder$DeferredInitializer.class b/target/classes/org/hibernate/internal/util/ValueHolder$DeferredInitializer.class deleted file mode 100644 index ac0041ab..00000000 Binary files a/target/classes/org/hibernate/internal/util/ValueHolder$DeferredInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/ValueHolder.class b/target/classes/org/hibernate/internal/util/ValueHolder.class deleted file mode 100644 index dae3bd00..00000000 Binary files a/target/classes/org/hibernate/internal/util/ValueHolder.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/ZonedDateTimeComparator.class b/target/classes/org/hibernate/internal/util/ZonedDateTimeComparator.class deleted file mode 100644 index 66aa7ceb..00000000 Binary files a/target/classes/org/hibernate/internal/util/ZonedDateTimeComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper$BeanInfoDelegate.class b/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper$BeanInfoDelegate.class deleted file mode 100644 index cdaba2ac..00000000 Binary files a/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper$BeanInfoDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper$ReturningBeanInfoDelegate.class b/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper$ReturningBeanInfoDelegate.class deleted file mode 100644 index d069441a..00000000 Binary files a/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper$ReturningBeanInfoDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper.class b/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper.class deleted file mode 100644 index 4aa0c4c6..00000000 Binary files a/target/classes/org/hibernate/internal/util/beans/BeanInfoHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/beans/BeanIntrospectionException.class b/target/classes/org/hibernate/internal/util/beans/BeanIntrospectionException.class deleted file mode 100644 index def4d4af..00000000 Binary files a/target/classes/org/hibernate/internal/util/beans/BeanIntrospectionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ArrayHelper.class b/target/classes/org/hibernate/internal/util/collections/ArrayHelper.class deleted file mode 100644 index 5b288ed8..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ArrayHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$1.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$1.class deleted file mode 100644 index 7b4f1a29..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EntryIterator.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EntryIterator.class deleted file mode 100644 index fcbb8a6f..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EntryIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EntrySet.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EntrySet.class deleted file mode 100644 index 85053627..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EntrySet.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$1.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$1.class deleted file mode 100644 index 8a8a840b..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$2.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$2.class deleted file mode 100644 index 00f742b2..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$3.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$3.class deleted file mode 100644 index 91947093..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction.class deleted file mode 100644 index e693dc91..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Eviction.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener.class deleted file mode 100644 index 76be2328..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionPolicy.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionPolicy.class deleted file mode 100644 index aed29668..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$EvictionPolicy.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry.class deleted file mode 100644 index 7c384b46..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashIterator.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashIterator.class deleted file mode 100644 index 874562a2..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$HashIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$KeyIterator.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$KeyIterator.class deleted file mode 100644 index 048326d4..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$KeyIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$KeySet.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$KeySet.class deleted file mode 100644 index 988b8217..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$KeySet.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LIRS.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LIRS.class deleted file mode 100644 index c2ce428c..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LIRS.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LIRSHashEntry.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LIRSHashEntry.class deleted file mode 100644 index fca6605a..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LIRSHashEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LRU.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LRU.class deleted file mode 100644 index 9efd1d40..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$LRU.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$NullEvictionListener.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$NullEvictionListener.class deleted file mode 100644 index b04c3d5b..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$NullEvictionListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$NullEvictionPolicy.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$NullEvictionPolicy.class deleted file mode 100644 index 0fc43ac0..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$NullEvictionPolicy.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Recency.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Recency.class deleted file mode 100644 index 78c84996..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Recency.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment.class deleted file mode 100644 index 461d009f..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Segment.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$ValueIterator.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$ValueIterator.class deleted file mode 100644 index 28cc65f0..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$ValueIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Values.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Values.class deleted file mode 100644 index 95a79f94..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$Values.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$WriteThroughEntry.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$WriteThroughEntry.class deleted file mode 100644 index 7450730c..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap$WriteThroughEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap.class b/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap.class deleted file mode 100644 index 78eef84c..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/BoundedConcurrentHashMap.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/CollectionHelper.class b/target/classes/org/hibernate/internal/util/collections/CollectionHelper.class deleted file mode 100644 index 26668ca9..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/CollectionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$EntryIterator.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$EntryIterator.class deleted file mode 100644 index 0a1e036f..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$EntryIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$EntrySet.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$EntrySet.class deleted file mode 100644 index 23521f89..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$EntrySet.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$HashEntry.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$HashEntry.class deleted file mode 100644 index b4656671..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$HashEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$HashIterator.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$HashIterator.class deleted file mode 100644 index dec276ff..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$HashIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeyIterator.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeyIterator.class deleted file mode 100644 index b081f4e8..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeyIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeyReference.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeyReference.class deleted file mode 100644 index dbad1f13..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeyReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeySet.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeySet.class deleted file mode 100644 index 65e01298..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$KeySet.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Option.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Option.class deleted file mode 100644 index 8aeea678..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Option.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$ReferenceType.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$ReferenceType.class deleted file mode 100644 index be7b43e4..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$ReferenceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Segment.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Segment.class deleted file mode 100644 index 9bc8764b..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Segment.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SimpleEntry.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SimpleEntry.class deleted file mode 100644 index cf521b15..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SimpleEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SoftKeyReference.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SoftKeyReference.class deleted file mode 100644 index c88e7e4d..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SoftKeyReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SoftValueReference.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SoftValueReference.class deleted file mode 100644 index 1c7943d4..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$SoftValueReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$ValueIterator.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$ValueIterator.class deleted file mode 100644 index 7e6fa586..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$ValueIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Values.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Values.class deleted file mode 100644 index b84138da..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$Values.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WeakKeyReference.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WeakKeyReference.class deleted file mode 100644 index 76dd290f..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WeakKeyReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WeakValueReference.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WeakValueReference.class deleted file mode 100644 index 85f835c5..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WeakValueReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WriteThroughEntry.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WriteThroughEntry.class deleted file mode 100644 index b03b328e..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap$WriteThroughEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap.class b/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap.class deleted file mode 100644 index c9930ed8..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/ConcurrentReferenceHashMap.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/EmptyIterator.class b/target/classes/org/hibernate/internal/util/collections/EmptyIterator.class deleted file mode 100644 index 51038b45..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/EmptyIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/IdentityMap$1.class b/target/classes/org/hibernate/internal/util/collections/IdentityMap$1.class deleted file mode 100644 index 287e7257..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/IdentityMap$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/IdentityMap$IdentityKey.class b/target/classes/org/hibernate/internal/util/collections/IdentityMap$IdentityKey.class deleted file mode 100644 index 0ba357de..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/IdentityMap$IdentityKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/IdentityMap$IdentityMapEntry.class b/target/classes/org/hibernate/internal/util/collections/IdentityMap$IdentityMapEntry.class deleted file mode 100644 index ec77c1c1..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/IdentityMap$IdentityMapEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/IdentityMap$KeyIterator.class b/target/classes/org/hibernate/internal/util/collections/IdentityMap$KeyIterator.class deleted file mode 100644 index 1ef6a688..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/IdentityMap$KeyIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/IdentityMap.class b/target/classes/org/hibernate/internal/util/collections/IdentityMap.class deleted file mode 100644 index 84dd5677..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/IdentityMap.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/IdentitySet.class b/target/classes/org/hibernate/internal/util/collections/IdentitySet.class deleted file mode 100644 index 811c8797..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/IdentitySet.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/JoinedIterable$TypeSafeJoinedIterator.class b/target/classes/org/hibernate/internal/util/collections/JoinedIterable$TypeSafeJoinedIterator.class deleted file mode 100644 index 5f09a3a6..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/JoinedIterable$TypeSafeJoinedIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/JoinedIterable.class b/target/classes/org/hibernate/internal/util/collections/JoinedIterable.class deleted file mode 100644 index e7ef5732..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/JoinedIterable.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/JoinedIterator.class b/target/classes/org/hibernate/internal/util/collections/JoinedIterator.class deleted file mode 100644 index 83441859..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/JoinedIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/LazyIterator.class b/target/classes/org/hibernate/internal/util/collections/LazyIterator.class deleted file mode 100644 index 0088a3d7..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/LazyIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/collections/SingletonIterator.class b/target/classes/org/hibernate/internal/util/collections/SingletonIterator.class deleted file mode 100644 index 27d1a1c7..00000000 Binary files a/target/classes/org/hibernate/internal/util/collections/SingletonIterator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/compare/CalendarComparator.class b/target/classes/org/hibernate/internal/util/compare/CalendarComparator.class deleted file mode 100644 index d5636b60..00000000 Binary files a/target/classes/org/hibernate/internal/util/compare/CalendarComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/compare/ComparableComparator.class b/target/classes/org/hibernate/internal/util/compare/ComparableComparator.class deleted file mode 100644 index 404cbcce..00000000 Binary files a/target/classes/org/hibernate/internal/util/compare/ComparableComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/compare/EqualsHelper.class b/target/classes/org/hibernate/internal/util/compare/EqualsHelper.class deleted file mode 100644 index 896fd203..00000000 Binary files a/target/classes/org/hibernate/internal/util/compare/EqualsHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/config/ConfigurationException.class b/target/classes/org/hibernate/internal/util/config/ConfigurationException.class deleted file mode 100644 index 1c73568a..00000000 Binary files a/target/classes/org/hibernate/internal/util/config/ConfigurationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/config/ConfigurationHelper.class b/target/classes/org/hibernate/internal/util/config/ConfigurationHelper.class deleted file mode 100644 index 021f5c17..00000000 Binary files a/target/classes/org/hibernate/internal/util/config/ConfigurationHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/io/StreamCopier.class b/target/classes/org/hibernate/internal/util/io/StreamCopier.class deleted file mode 100644 index 793c7bde..00000000 Binary files a/target/classes/org/hibernate/internal/util/io/StreamCopier.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/jndi/JndiHelper.class b/target/classes/org/hibernate/internal/util/jndi/JndiHelper.class deleted file mode 100644 index ff7aa6d2..00000000 Binary files a/target/classes/org/hibernate/internal/util/jndi/JndiHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$BooleanDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$BooleanDescriptor.class deleted file mode 100644 index ad6b25bf..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$BooleanDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$ByteDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$ByteDescriptor.class deleted file mode 100644 index f199316e..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$ByteDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$CharacterDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$CharacterDescriptor.class deleted file mode 100644 index e3a60cc9..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$CharacterDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$DoubleDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$DoubleDescriptor.class deleted file mode 100644 index d61601d6..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$DoubleDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$FloatDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$FloatDescriptor.class deleted file mode 100644 index 16bb380b..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$FloatDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$IntegerDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$IntegerDescriptor.class deleted file mode 100644 index 60a866fb..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$IntegerDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$LongDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$LongDescriptor.class deleted file mode 100644 index 72266eb3..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$LongDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$PrimitiveWrapperDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$PrimitiveWrapperDescriptor.class deleted file mode 100644 index 2b244657..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$PrimitiveWrapperDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$ShortDescriptor.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$ShortDescriptor.class deleted file mode 100644 index 53a321bb..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper$ShortDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper.class b/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper.class deleted file mode 100644 index 39699de0..00000000 Binary files a/target/classes/org/hibernate/internal/util/type/PrimitiveWrapperHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/BaseXMLEventReader.class b/target/classes/org/hibernate/internal/util/xml/BaseXMLEventReader.class deleted file mode 100644 index 40f4bf1f..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/BaseXMLEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/BufferedXMLEventReader.class b/target/classes/org/hibernate/internal/util/xml/BufferedXMLEventReader.class deleted file mode 100644 index ff6353e0..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/BufferedXMLEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/DTDEntityResolver.class b/target/classes/org/hibernate/internal/util/xml/DTDEntityResolver.class deleted file mode 100644 index 890139c1..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/DTDEntityResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/ErrorLogger.class b/target/classes/org/hibernate/internal/util/xml/ErrorLogger.class deleted file mode 100644 index a6b81318..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/ErrorLogger.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/FilteringXMLEventReader.class b/target/classes/org/hibernate/internal/util/xml/FilteringXMLEventReader.class deleted file mode 100644 index 740e8e5a..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/FilteringXMLEventReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/Origin.class b/target/classes/org/hibernate/internal/util/xml/Origin.class deleted file mode 100644 index bcd015f6..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/Origin.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/OriginImpl.class b/target/classes/org/hibernate/internal/util/xml/OriginImpl.class deleted file mode 100644 index b2724865..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/OriginImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/UnsupportedOrmXsdVersionException.class b/target/classes/org/hibernate/internal/util/xml/UnsupportedOrmXsdVersionException.class deleted file mode 100644 index 30452934..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/UnsupportedOrmXsdVersionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/XMLHelper$1.class b/target/classes/org/hibernate/internal/util/xml/XMLHelper$1.class deleted file mode 100644 index 395e7817..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/XMLHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/XMLHelper.class b/target/classes/org/hibernate/internal/util/xml/XMLHelper.class deleted file mode 100644 index 723faf09..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/XMLHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/XMLStreamConstantsUtils.class b/target/classes/org/hibernate/internal/util/xml/XMLStreamConstantsUtils.class deleted file mode 100644 index e34a4469..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/XMLStreamConstantsUtils.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/XmlDocument.class b/target/classes/org/hibernate/internal/util/xml/XmlDocument.class deleted file mode 100644 index 91f07a8a..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/XmlDocument.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/XmlDocumentImpl.class b/target/classes/org/hibernate/internal/util/xml/XmlDocumentImpl.class deleted file mode 100644 index dfb0bd58..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/XmlDocumentImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/XmlInfrastructureException.class b/target/classes/org/hibernate/internal/util/xml/XmlInfrastructureException.class deleted file mode 100644 index 9b12573a..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/XmlInfrastructureException.class and /dev/null differ diff --git a/target/classes/org/hibernate/internal/util/xml/XsdException.class b/target/classes/org/hibernate/internal/util/xml/XsdException.class deleted file mode 100644 index 490fc83d..00000000 Binary files a/target/classes/org/hibernate/internal/util/xml/XsdException.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/AbstractReturningWork.class b/target/classes/org/hibernate/jdbc/AbstractReturningWork.class deleted file mode 100644 index a1e41cfb..00000000 Binary files a/target/classes/org/hibernate/jdbc/AbstractReturningWork.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/AbstractWork.class b/target/classes/org/hibernate/jdbc/AbstractWork.class deleted file mode 100644 index f02435fd..00000000 Binary files a/target/classes/org/hibernate/jdbc/AbstractWork.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/BatchFailedException.class b/target/classes/org/hibernate/jdbc/BatchFailedException.class deleted file mode 100644 index 21238640..00000000 Binary files a/target/classes/org/hibernate/jdbc/BatchFailedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/BatchedTooManyRowsAffectedException.class b/target/classes/org/hibernate/jdbc/BatchedTooManyRowsAffectedException.class deleted file mode 100644 index 7a5c25de..00000000 Binary files a/target/classes/org/hibernate/jdbc/BatchedTooManyRowsAffectedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/Expectation.class b/target/classes/org/hibernate/jdbc/Expectation.class deleted file mode 100644 index ad431db3..00000000 Binary files a/target/classes/org/hibernate/jdbc/Expectation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/Expectations$1.class b/target/classes/org/hibernate/jdbc/Expectations$1.class deleted file mode 100644 index 3684d0b0..00000000 Binary files a/target/classes/org/hibernate/jdbc/Expectations$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/Expectations$BasicExpectation.class b/target/classes/org/hibernate/jdbc/Expectations$BasicExpectation.class deleted file mode 100644 index 3b819bdf..00000000 Binary files a/target/classes/org/hibernate/jdbc/Expectations$BasicExpectation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/Expectations$BasicParamExpectation.class b/target/classes/org/hibernate/jdbc/Expectations$BasicParamExpectation.class deleted file mode 100644 index 9117c26c..00000000 Binary files a/target/classes/org/hibernate/jdbc/Expectations$BasicParamExpectation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/Expectations.class b/target/classes/org/hibernate/jdbc/Expectations.class deleted file mode 100644 index a36471a8..00000000 Binary files a/target/classes/org/hibernate/jdbc/Expectations.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/ReturningWork.class b/target/classes/org/hibernate/jdbc/ReturningWork.class deleted file mode 100644 index ec58645d..00000000 Binary files a/target/classes/org/hibernate/jdbc/ReturningWork.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/TooManyRowsAffectedException.class b/target/classes/org/hibernate/jdbc/TooManyRowsAffectedException.class deleted file mode 100644 index 3f827603..00000000 Binary files a/target/classes/org/hibernate/jdbc/TooManyRowsAffectedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/Work.class b/target/classes/org/hibernate/jdbc/Work.class deleted file mode 100644 index 6b73e195..00000000 Binary files a/target/classes/org/hibernate/jdbc/Work.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/WorkExecutor.class b/target/classes/org/hibernate/jdbc/WorkExecutor.class deleted file mode 100644 index f73ac99b..00000000 Binary files a/target/classes/org/hibernate/jdbc/WorkExecutor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jdbc/WorkExecutorVisitable.class b/target/classes/org/hibernate/jdbc/WorkExecutorVisitable.class deleted file mode 100644 index fd5b6f05..00000000 Binary files a/target/classes/org/hibernate/jdbc/WorkExecutorVisitable.class and /dev/null differ diff --git a/target/classes/org/hibernate/jmx/internal/DisabledJmxServiceImpl.class b/target/classes/org/hibernate/jmx/internal/DisabledJmxServiceImpl.class deleted file mode 100644 index 8c2381d2..00000000 Binary files a/target/classes/org/hibernate/jmx/internal/DisabledJmxServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jmx/internal/JmxServiceImpl.class b/target/classes/org/hibernate/jmx/internal/JmxServiceImpl.class deleted file mode 100644 index f92c2d5c..00000000 Binary files a/target/classes/org/hibernate/jmx/internal/JmxServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jmx/internal/JmxServiceInitiator.class b/target/classes/org/hibernate/jmx/internal/JmxServiceInitiator.class deleted file mode 100644 index d88e743b..00000000 Binary files a/target/classes/org/hibernate/jmx/internal/JmxServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/jmx/spi/JmxService.class b/target/classes/org/hibernate/jmx/spi/JmxService.class deleted file mode 100644 index dd2e7564..00000000 Binary files a/target/classes/org/hibernate/jmx/spi/JmxService.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/AvailableSettings.class b/target/classes/org/hibernate/jpa/AvailableSettings.class deleted file mode 100644 index a65c110a..00000000 Binary files a/target/classes/org/hibernate/jpa/AvailableSettings.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/HibernateEntityManager.class b/target/classes/org/hibernate/jpa/HibernateEntityManager.class deleted file mode 100644 index 95d862a4..00000000 Binary files a/target/classes/org/hibernate/jpa/HibernateEntityManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/HibernateEntityManagerFactory.class b/target/classes/org/hibernate/jpa/HibernateEntityManagerFactory.class deleted file mode 100644 index f9c369cf..00000000 Binary files a/target/classes/org/hibernate/jpa/HibernateEntityManagerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/HibernatePersistenceProvider$1.class b/target/classes/org/hibernate/jpa/HibernatePersistenceProvider$1.class deleted file mode 100644 index 5435c44d..00000000 Binary files a/target/classes/org/hibernate/jpa/HibernatePersistenceProvider$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/HibernatePersistenceProvider.class b/target/classes/org/hibernate/jpa/HibernatePersistenceProvider.class deleted file mode 100644 index 0fdcae47..00000000 Binary files a/target/classes/org/hibernate/jpa/HibernatePersistenceProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/HibernateQuery.class b/target/classes/org/hibernate/jpa/HibernateQuery.class deleted file mode 100644 index f972ecc6..00000000 Binary files a/target/classes/org/hibernate/jpa/HibernateQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/QueryHints.class b/target/classes/org/hibernate/jpa/QueryHints.class deleted file mode 100644 index 218ffa66..00000000 Binary files a/target/classes/org/hibernate/jpa/QueryHints.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/SchemaGenAction.class b/target/classes/org/hibernate/jpa/SchemaGenAction.class deleted file mode 100644 index bc803ee4..00000000 Binary files a/target/classes/org/hibernate/jpa/SchemaGenAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/SchemaGenSource.class b/target/classes/org/hibernate/jpa/SchemaGenSource.class deleted file mode 100644 index 4f160d9b..00000000 Binary files a/target/classes/org/hibernate/jpa/SchemaGenSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/TypedParameterValue.class b/target/classes/org/hibernate/jpa/TypedParameterValue.class deleted file mode 100644 index 1f47e52f..00000000 Binary files a/target/classes/org/hibernate/jpa/TypedParameterValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$1.class b/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$1.class deleted file mode 100644 index 68bc36ad..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$JpaEntityNotFoundDelegate.class b/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$JpaEntityNotFoundDelegate.class deleted file mode 100644 index 9a87a19f..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$JpaEntityNotFoundDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$MergedSettings.class b/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$MergedSettings.class deleted file mode 100644 index 112d03bc..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$MergedSettings.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$ServiceRegistryCloser.class b/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$ServiceRegistryCloser.class deleted file mode 100644 index 5d4bc4c2..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl$ServiceRegistryCloser.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl.class b/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl.class deleted file mode 100644 index a88cfe46..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/EntityManagerFactoryBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/Helper.class b/target/classes/org/hibernate/jpa/boot/internal/Helper.class deleted file mode 100644 index 4ef718af..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/ParsedPersistenceXmlDescriptor.class b/target/classes/org/hibernate/jpa/boot/internal/ParsedPersistenceXmlDescriptor.class deleted file mode 100644 index 3c67fd60..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/ParsedPersistenceXmlDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/PersistenceUnitInfoDescriptor.class b/target/classes/org/hibernate/jpa/boot/internal/PersistenceUnitInfoDescriptor.class deleted file mode 100644 index 0f93ec35..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/PersistenceUnitInfoDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/PersistenceXmlParser$ErrorHandlerImpl.class b/target/classes/org/hibernate/jpa/boot/internal/PersistenceXmlParser$ErrorHandlerImpl.class deleted file mode 100644 index b82352f1..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/PersistenceXmlParser$ErrorHandlerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/PersistenceXmlParser.class b/target/classes/org/hibernate/jpa/boot/internal/PersistenceXmlParser.class deleted file mode 100644 index d1d05513..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/PersistenceXmlParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/SettingsImpl.class b/target/classes/org/hibernate/jpa/boot/internal/SettingsImpl.class deleted file mode 100644 index 8c0b90c0..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/SettingsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/internal/StandardJpaScanEnvironmentImpl.class b/target/classes/org/hibernate/jpa/boot/internal/StandardJpaScanEnvironmentImpl.class deleted file mode 100644 index ebe0a804..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/internal/StandardJpaScanEnvironmentImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/Bootstrap.class b/target/classes/org/hibernate/jpa/boot/spi/Bootstrap.class deleted file mode 100644 index 44a6ce86..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/Bootstrap.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/EntityManagerFactoryBuilder.class b/target/classes/org/hibernate/jpa/boot/spi/EntityManagerFactoryBuilder.class deleted file mode 100644 index c8a32cd8..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/EntityManagerFactoryBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/IntegratorProvider.class b/target/classes/org/hibernate/jpa/boot/spi/IntegratorProvider.class deleted file mode 100644 index 796a8df8..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/IntegratorProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/PersistenceUnitDescriptor.class b/target/classes/org/hibernate/jpa/boot/spi/PersistenceUnitDescriptor.class deleted file mode 100644 index 336067d8..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/PersistenceUnitDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/ProviderChecker.class b/target/classes/org/hibernate/jpa/boot/spi/ProviderChecker.class deleted file mode 100644 index c917ce28..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/ProviderChecker.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/Settings.class b/target/classes/org/hibernate/jpa/boot/spi/Settings.class deleted file mode 100644 index 876bce14..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/Settings.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/StrategyRegistrationProviderList.class b/target/classes/org/hibernate/jpa/boot/spi/StrategyRegistrationProviderList.class deleted file mode 100644 index 114728b2..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/StrategyRegistrationProviderList.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/boot/spi/TypeContributorList.class b/target/classes/org/hibernate/jpa/boot/spi/TypeContributorList.class deleted file mode 100644 index 3909da68..00000000 Binary files a/target/classes/org/hibernate/jpa/boot/spi/TypeContributorList.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery$1$1.class b/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery$1$1.class deleted file mode 100644 index f0c8be26..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery$1.class b/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery$1.class deleted file mode 100644 index be9d0c39..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery.class b/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery.class deleted file mode 100644 index 526bd0af..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/AbstractManipulationCriteriaQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/AbstractNode.class b/target/classes/org/hibernate/jpa/criteria/AbstractNode.class deleted file mode 100644 index bd7cea86..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/AbstractNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/BasicPathUsageException.class b/target/classes/org/hibernate/jpa/criteria/BasicPathUsageException.class deleted file mode 100644 index cf4826f2..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/BasicPathUsageException.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CollectionJoinImplementor.class b/target/classes/org/hibernate/jpa/criteria/CollectionJoinImplementor.class deleted file mode 100644 index b774aa0f..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CollectionJoinImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaBuilderImpl.class b/target/classes/org/hibernate/jpa/criteria/CriteriaBuilderImpl.class deleted file mode 100644 index 5506842f..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaDeleteImpl.class b/target/classes/org/hibernate/jpa/criteria/CriteriaDeleteImpl.class deleted file mode 100644 index 29844612..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaDeleteImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1$1$1.class b/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1$1$1.class deleted file mode 100644 index d9645c80..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1$1.class b/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1$1.class deleted file mode 100644 index 3b6a7393..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1.class b/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1.class deleted file mode 100644 index 30e6d7eb..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl.class b/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl.class deleted file mode 100644 index 31729a4a..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaSubqueryImpl$SubquerySelection.class b/target/classes/org/hibernate/jpa/criteria/CriteriaSubqueryImpl$SubquerySelection.class deleted file mode 100644 index 578dcdbc..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaSubqueryImpl$SubquerySelection.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaSubqueryImpl.class b/target/classes/org/hibernate/jpa/criteria/CriteriaSubqueryImpl.class deleted file mode 100644 index 41911bc6..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaSubqueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl$1.class b/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl$1.class deleted file mode 100644 index 1b838262..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl$Assignment.class b/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl$Assignment.class deleted file mode 100644 index fc0f2c72..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl$Assignment.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl.class b/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl.class deleted file mode 100644 index d1695b78..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/CriteriaUpdateImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ExpressionImplementor.class b/target/classes/org/hibernate/jpa/criteria/ExpressionImplementor.class deleted file mode 100644 index 5b640a58..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ExpressionImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/FromImplementor.class b/target/classes/org/hibernate/jpa/criteria/FromImplementor.class deleted file mode 100644 index e82c0822..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/FromImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/IllegalDereferenceException.class b/target/classes/org/hibernate/jpa/criteria/IllegalDereferenceException.class deleted file mode 100644 index d824ec9a..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/IllegalDereferenceException.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/JoinImplementor.class b/target/classes/org/hibernate/jpa/criteria/JoinImplementor.class deleted file mode 100644 index da12fc5b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/JoinImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ListJoinImplementor.class b/target/classes/org/hibernate/jpa/criteria/ListJoinImplementor.class deleted file mode 100644 index f16c6178..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ListJoinImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/MapJoinImplementor.class b/target/classes/org/hibernate/jpa/criteria/MapJoinImplementor.class deleted file mode 100644 index adcd8455..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/MapJoinImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/OrderImpl.class b/target/classes/org/hibernate/jpa/criteria/OrderImpl.class deleted file mode 100644 index 24a0965b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/OrderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ParameterContainer$Helper.class b/target/classes/org/hibernate/jpa/criteria/ParameterContainer$Helper.class deleted file mode 100644 index 0dbd418b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ParameterContainer$Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ParameterContainer.class b/target/classes/org/hibernate/jpa/criteria/ParameterContainer.class deleted file mode 100644 index 326659e5..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ParameterContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ParameterRegistry.class b/target/classes/org/hibernate/jpa/criteria/ParameterRegistry.class deleted file mode 100644 index e2c709d0..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ParameterRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/PathImplementor.class b/target/classes/org/hibernate/jpa/criteria/PathImplementor.class deleted file mode 100644 index 326f7c28..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/PathImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/PathSource.class b/target/classes/org/hibernate/jpa/criteria/PathSource.class deleted file mode 100644 index 0ae69d3a..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/PathSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/QueryStructure$1.class b/target/classes/org/hibernate/jpa/criteria/QueryStructure$1.class deleted file mode 100644 index b6e1b915..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/QueryStructure$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/QueryStructure$2.class b/target/classes/org/hibernate/jpa/criteria/QueryStructure$2.class deleted file mode 100644 index 7a7d31c9..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/QueryStructure$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/QueryStructure.class b/target/classes/org/hibernate/jpa/criteria/QueryStructure.class deleted file mode 100644 index 87a7d0d2..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/QueryStructure.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/Renderable.class b/target/classes/org/hibernate/jpa/criteria/Renderable.class deleted file mode 100644 index cb4a54a8..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/Renderable.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/SelectionImplementor.class b/target/classes/org/hibernate/jpa/criteria/SelectionImplementor.class deleted file mode 100644 index bc3f7f8c..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/SelectionImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/SetJoinImplementor.class b/target/classes/org/hibernate/jpa/criteria/SetJoinImplementor.class deleted file mode 100644 index cf4f7868..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/SetJoinImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/TupleElementImplementor.class b/target/classes/org/hibernate/jpa/criteria/TupleElementImplementor.class deleted file mode 100644 index 771dd149..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/TupleElementImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BaseValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BaseValueHandler.class deleted file mode 100644 index bbe50199..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BaseValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BigDecimalValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BigDecimalValueHandler.class deleted file mode 100644 index f11ab8f9..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BigDecimalValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BigIntegerValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BigIntegerValueHandler.class deleted file mode 100644 index 8cac5fe4..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BigIntegerValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BooleanValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BooleanValueHandler.class deleted file mode 100644 index 18f5f066..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$BooleanValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ByteValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ByteValueHandler.class deleted file mode 100644 index 89fff970..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ByteValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$DoubleValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$DoubleValueHandler.class deleted file mode 100644 index 3a7212b5..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$DoubleValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$FloatValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$FloatValueHandler.class deleted file mode 100644 index 8b52a2fd..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$FloatValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$IntegerValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$IntegerValueHandler.class deleted file mode 100644 index 8f3bf70f..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$IntegerValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$LongValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$LongValueHandler.class deleted file mode 100644 index 27316f13..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$LongValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$NoOpValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$NoOpValueHandler.class deleted file mode 100644 index 696f72c7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$NoOpValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ShortValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ShortValueHandler.class deleted file mode 100644 index 6cd25af2..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ShortValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$StringValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$StringValueHandler.class deleted file mode 100644 index 1efc262b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$StringValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ValueHandler.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ValueHandler.class deleted file mode 100644 index 46a5815a..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory$ValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory.class b/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory.class deleted file mode 100644 index 2ba0f312..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/ValueHandlerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/CompilableCriteria.class b/target/classes/org/hibernate/jpa/criteria/compile/CompilableCriteria.class deleted file mode 100644 index c309c9e7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/CompilableCriteria.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$1$1.class b/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$1$1.class deleted file mode 100644 index fb3fc808..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$1.class b/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$1.class deleted file mode 100644 index eff488ac..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$2.class b/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$2.class deleted file mode 100644 index 79c835be..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler.class b/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler.class deleted file mode 100644 index e68c0a02..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaCompiler.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaInterpretation.class b/target/classes/org/hibernate/jpa/criteria/compile/CriteriaInterpretation.class deleted file mode 100644 index df14be57..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaInterpretation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaQueryTypeQueryAdapter.class b/target/classes/org/hibernate/jpa/criteria/compile/CriteriaQueryTypeQueryAdapter.class deleted file mode 100644 index 798ba1e9..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/CriteriaQueryTypeQueryAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/ExplicitParameterInfo.class b/target/classes/org/hibernate/jpa/criteria/compile/ExplicitParameterInfo.class deleted file mode 100644 index 6d75312f..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/ExplicitParameterInfo.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/ImplicitParameterBinding.class b/target/classes/org/hibernate/jpa/criteria/compile/ImplicitParameterBinding.class deleted file mode 100644 index 91b66aaf..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/ImplicitParameterBinding.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/InterpretedParameterMetadata.class b/target/classes/org/hibernate/jpa/criteria/compile/InterpretedParameterMetadata.class deleted file mode 100644 index ebcf155d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/InterpretedParameterMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/compile/RenderingContext.class b/target/classes/org/hibernate/jpa/criteria/compile/RenderingContext.class deleted file mode 100644 index 27567398..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/compile/RenderingContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/AbstractTupleElement.class b/target/classes/org/hibernate/jpa/criteria/expression/AbstractTupleElement.class deleted file mode 100644 index dfc0e02b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/AbstractTupleElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$1.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$1.class deleted file mode 100644 index 260d5d82..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$1.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$1.class deleted file mode 100644 index d96093b4..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$2.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$2.class deleted file mode 100644 index d9d6b579..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$3.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$3.class deleted file mode 100644 index 156a85a6..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$4.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$4.class deleted file mode 100644 index a32c2bfe..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$5.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$5.class deleted file mode 100644 index c25c4399..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$6.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$6.class deleted file mode 100644 index 1227ad1d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation.class deleted file mode 100644 index 7f08dec1..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation$Operation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation.class deleted file mode 100644 index 93a0a670..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryArithmeticOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/BinaryOperatorExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/BinaryOperatorExpression.class deleted file mode 100644 index 98bf8913..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/BinaryOperatorExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/CaseLiteralExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/CaseLiteralExpression.class deleted file mode 100644 index 56ac7de4..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/CaseLiteralExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/CoalesceExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/CoalesceExpression.class deleted file mode 100644 index 45db5bd7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/CoalesceExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/CompoundSelectionImpl.class b/target/classes/org/hibernate/jpa/criteria/expression/CompoundSelectionImpl.class deleted file mode 100644 index 37bb2c81..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/CompoundSelectionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/ConcatExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/ConcatExpression.class deleted file mode 100644 index 2c0dfb67..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/ConcatExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/DelegatedExpressionImpl.class b/target/classes/org/hibernate/jpa/criteria/expression/DelegatedExpressionImpl.class deleted file mode 100644 index 2d54fbc7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/DelegatedExpressionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/EntityTypeExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/EntityTypeExpression.class deleted file mode 100644 index 6e228286..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/EntityTypeExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/ExpressionImpl.class b/target/classes/org/hibernate/jpa/criteria/expression/ExpressionImpl.class deleted file mode 100644 index 5c502e99..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/ExpressionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/ListIndexExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/ListIndexExpression.class deleted file mode 100644 index 90c95587..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/ListIndexExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/LiteralExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/LiteralExpression.class deleted file mode 100644 index 5a5b3be6..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/LiteralExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/MapEntryExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/MapEntryExpression.class deleted file mode 100644 index 0ff46c8c..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/MapEntryExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/NullLiteralExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/NullLiteralExpression.class deleted file mode 100644 index d297aeb2..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/NullLiteralExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/NullifExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/NullifExpression.class deleted file mode 100644 index 83ac7c9c..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/NullifExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/ParameterExpressionImpl.class b/target/classes/org/hibernate/jpa/criteria/expression/ParameterExpressionImpl.class deleted file mode 100644 index 6454dbfe..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/ParameterExpressionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/PathTypeExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/PathTypeExpression.class deleted file mode 100644 index 2eeb5532..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/PathTypeExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SearchedCaseExpression$WhenClause.class b/target/classes/org/hibernate/jpa/criteria/expression/SearchedCaseExpression$WhenClause.class deleted file mode 100644 index 36bf745b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SearchedCaseExpression$WhenClause.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SearchedCaseExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/SearchedCaseExpression.class deleted file mode 100644 index e1267b2a..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SearchedCaseExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SelectionImpl.class b/target/classes/org/hibernate/jpa/criteria/expression/SelectionImpl.class deleted file mode 100644 index 69aba354..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SelectionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SimpleCaseExpression$WhenClause.class b/target/classes/org/hibernate/jpa/criteria/expression/SimpleCaseExpression$WhenClause.class deleted file mode 100644 index 13525a37..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SimpleCaseExpression$WhenClause.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SimpleCaseExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/SimpleCaseExpression.class deleted file mode 100644 index 11477625..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SimpleCaseExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SizeOfCollectionExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/SizeOfCollectionExpression.class deleted file mode 100644 index b52030d1..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SizeOfCollectionExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$1.class b/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$1.class deleted file mode 100644 index 418850d9..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$1.class b/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$1.class deleted file mode 100644 index 778f573b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$2.class b/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$2.class deleted file mode 100644 index 6c20c41f..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$3.class b/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$3.class deleted file mode 100644 index 81da9d2f..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier.class b/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier.class deleted file mode 100644 index 0df9d6c8..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression$Modifier.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression.class deleted file mode 100644 index 94065dc7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/SubqueryComparisonModifierExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/UnaryArithmeticOperation$Operation.class b/target/classes/org/hibernate/jpa/criteria/expression/UnaryArithmeticOperation$Operation.class deleted file mode 100644 index 4cd1d393..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/UnaryArithmeticOperation$Operation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/UnaryArithmeticOperation.class b/target/classes/org/hibernate/jpa/criteria/expression/UnaryArithmeticOperation.class deleted file mode 100644 index 5977d243..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/UnaryArithmeticOperation.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/UnaryOperatorExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/UnaryOperatorExpression.class deleted file mode 100644 index 94831a9b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/UnaryOperatorExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AbsFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AbsFunction.class deleted file mode 100644 index 7a5e44f5..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AbsFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$AVG.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$AVG.class deleted file mode 100644 index fa7cdd36..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$AVG.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$COUNT.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$COUNT.class deleted file mode 100644 index 70d3f58c..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$COUNT.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$GREATEST.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$GREATEST.class deleted file mode 100644 index 4a136114..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$GREATEST.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$LEAST.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$LEAST.class deleted file mode 100644 index c81344b0..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$LEAST.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$MAX.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$MAX.class deleted file mode 100644 index 43acaacb..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$MAX.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$MIN.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$MIN.class deleted file mode 100644 index 67be875e..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$MIN.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$SUM.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$SUM.class deleted file mode 100644 index 52b97c2a..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction$SUM.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction.class deleted file mode 100644 index d430703d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/AggregationFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/BasicFunctionExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/function/BasicFunctionExpression.class deleted file mode 100644 index b6b24d43..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/BasicFunctionExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/CastFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/CastFunction.class deleted file mode 100644 index 12871e9a..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/CastFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentDateFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentDateFunction.class deleted file mode 100644 index 94dee470..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentDateFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentTimeFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentTimeFunction.class deleted file mode 100644 index c5450f4e..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentTimeFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentTimestampFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentTimestampFunction.class deleted file mode 100644 index 875c54bd..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/CurrentTimestampFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/FunctionExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/function/FunctionExpression.class deleted file mode 100644 index 91067aed..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/FunctionExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/LengthFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/LengthFunction.class deleted file mode 100644 index 34c10fc1..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/LengthFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/LocateFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/LocateFunction.class deleted file mode 100644 index 6d21b14d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/LocateFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/LowerFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/LowerFunction.class deleted file mode 100644 index 36b6faba..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/LowerFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/ParameterizedFunctionExpression.class b/target/classes/org/hibernate/jpa/criteria/expression/function/ParameterizedFunctionExpression.class deleted file mode 100644 index 048ba52b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/ParameterizedFunctionExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/SqrtFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/SqrtFunction.class deleted file mode 100644 index d5a56fec..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/SqrtFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/SubstringFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/SubstringFunction.class deleted file mode 100644 index 9b6261ce..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/SubstringFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/TrimFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/TrimFunction.class deleted file mode 100644 index e25463c7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/TrimFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/expression/function/UpperFunction.class b/target/classes/org/hibernate/jpa/criteria/expression/function/UpperFunction.class deleted file mode 100644 index cef404ae..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/expression/function/UpperFunction.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$BasicJoinScope.class b/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$BasicJoinScope.class deleted file mode 100644 index 8a88b0ef..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$BasicJoinScope.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$CorrelationJoinScope.class b/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$CorrelationJoinScope.class deleted file mode 100644 index a9136e2d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$CorrelationJoinScope.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$JoinScope.class b/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$JoinScope.class deleted file mode 100644 index 4eda86d5..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl$JoinScope.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl.class b/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl.class deleted file mode 100644 index 3a9396fe..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/AbstractFromImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/AbstractJoinImpl.class b/target/classes/org/hibernate/jpa/criteria/path/AbstractJoinImpl.class deleted file mode 100644 index 622c678d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/AbstractJoinImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/AbstractPathImpl.class b/target/classes/org/hibernate/jpa/criteria/path/AbstractPathImpl.class deleted file mode 100644 index a980f0d7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/AbstractPathImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/CollectionAttributeJoin$TreatedCollectionAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/CollectionAttributeJoin$TreatedCollectionAttributeJoin.class deleted file mode 100644 index d78d6659..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/CollectionAttributeJoin$TreatedCollectionAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/CollectionAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/CollectionAttributeJoin.class deleted file mode 100644 index 479a2c35..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/CollectionAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/ListAttributeJoin$TreatedListAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/ListAttributeJoin$TreatedListAttributeJoin.class deleted file mode 100644 index 3c741f6c..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/ListAttributeJoin$TreatedListAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/ListAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/ListAttributeJoin.class deleted file mode 100644 index 63977e76..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/ListAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/MapAttributeJoin$TreatedMapAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/MapAttributeJoin$TreatedMapAttributeJoin.class deleted file mode 100644 index 128b7efe..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/MapAttributeJoin$TreatedMapAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/MapAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/MapAttributeJoin.class deleted file mode 100644 index 4cf4bb50..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/MapAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeyAttribute.class b/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeyAttribute.class deleted file mode 100644 index 6e1b7fda..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeyAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeyPath.class b/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeyPath.class deleted file mode 100644 index 289f9a60..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeyPath.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeySource.class b/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeySource.class deleted file mode 100644 index 400b78b6..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers$MapKeySource.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers.class b/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers.class deleted file mode 100644 index f3be4bed..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/MapKeyHelpers.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/PluralAttributeJoinSupport.class b/target/classes/org/hibernate/jpa/criteria/path/PluralAttributeJoinSupport.class deleted file mode 100644 index e1cc2fb3..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/PluralAttributeJoinSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/PluralAttributePath.class b/target/classes/org/hibernate/jpa/criteria/path/PluralAttributePath.class deleted file mode 100644 index 4b08d69b..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/PluralAttributePath.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/RootImpl$TreatedRoot.class b/target/classes/org/hibernate/jpa/criteria/path/RootImpl$TreatedRoot.class deleted file mode 100644 index 2d6b5c29..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/RootImpl$TreatedRoot.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/RootImpl.class b/target/classes/org/hibernate/jpa/criteria/path/RootImpl.class deleted file mode 100644 index 9822bb31..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/RootImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/SetAttributeJoin$TreatedSetAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/SetAttributeJoin$TreatedSetAttributeJoin.class deleted file mode 100644 index 703b4b2f..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/SetAttributeJoin$TreatedSetAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/SetAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/SetAttributeJoin.class deleted file mode 100644 index 1aed98fd..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/SetAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributeJoin$TreatedSingularAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/SingularAttributeJoin$TreatedSingularAttributeJoin.class deleted file mode 100644 index f5c966b7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributeJoin$TreatedSingularAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributeJoin.class b/target/classes/org/hibernate/jpa/criteria/path/SingularAttributeJoin.class deleted file mode 100644 index bf681a9c..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributeJoin.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributePath$TreatedSingularAttributePath.class b/target/classes/org/hibernate/jpa/criteria/path/SingularAttributePath$TreatedSingularAttributePath.class deleted file mode 100644 index 3120ad1e..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributePath$TreatedSingularAttributePath.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributePath.class b/target/classes/org/hibernate/jpa/criteria/path/SingularAttributePath.class deleted file mode 100644 index 5db34fc8..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/path/SingularAttributePath.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/AbstractPredicateImpl.class b/target/classes/org/hibernate/jpa/criteria/predicate/AbstractPredicateImpl.class deleted file mode 100644 index 26855145..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/AbstractPredicateImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/AbstractSimplePredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/AbstractSimplePredicate.class deleted file mode 100644 index da8e1b83..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/AbstractSimplePredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/BetweenPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/BetweenPredicate.class deleted file mode 100644 index 53754b8e..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/BetweenPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/BooleanAssertionPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/BooleanAssertionPredicate.class deleted file mode 100644 index c397bb4d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/BooleanAssertionPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/BooleanExpressionPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/BooleanExpressionPredicate.class deleted file mode 100644 index 2b4c5ee2..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/BooleanExpressionPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/BooleanStaticAssertionPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/BooleanStaticAssertionPredicate.class deleted file mode 100644 index da76bb30..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/BooleanStaticAssertionPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$1.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$1.class deleted file mode 100644 index cf23a240..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$1.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$1.class deleted file mode 100644 index 18d5462d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$2.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$2.class deleted file mode 100644 index b11f13ac..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$3.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$3.class deleted file mode 100644 index 962ee8ad..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$4.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$4.class deleted file mode 100644 index 6420fb90..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$5.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$5.class deleted file mode 100644 index 35f05b55..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$6.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$6.class deleted file mode 100644 index cbeea844..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator.class deleted file mode 100644 index 226aafc2..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate$ComparisonOperator.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate.class deleted file mode 100644 index 507b64e8..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ComparisonPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/CompoundPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/CompoundPredicate.class deleted file mode 100644 index f64c6894..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/CompoundPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ExistsPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/ExistsPredicate.class deleted file mode 100644 index c319e5a5..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ExistsPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ExplicitTruthValueCheck.class b/target/classes/org/hibernate/jpa/criteria/predicate/ExplicitTruthValueCheck.class deleted file mode 100644 index 59adefe9..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ExplicitTruthValueCheck.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/ImplicitNumericExpressionTypeDeterminer.class b/target/classes/org/hibernate/jpa/criteria/predicate/ImplicitNumericExpressionTypeDeterminer.class deleted file mode 100644 index 8e72d7c8..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/ImplicitNumericExpressionTypeDeterminer.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/InPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/InPredicate.class deleted file mode 100644 index 1169e2d2..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/InPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/IsEmptyPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/IsEmptyPredicate.class deleted file mode 100644 index 3d941737..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/IsEmptyPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/LikePredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/LikePredicate.class deleted file mode 100644 index 3dd51dee..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/LikePredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/MemberOfPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/MemberOfPredicate.class deleted file mode 100644 index 9299e31d..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/MemberOfPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/NegatedPredicateWrapper.class b/target/classes/org/hibernate/jpa/criteria/predicate/NegatedPredicateWrapper.class deleted file mode 100644 index 47351001..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/NegatedPredicateWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/NullnessPredicate.class b/target/classes/org/hibernate/jpa/criteria/predicate/NullnessPredicate.class deleted file mode 100644 index db1ae97c..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/NullnessPredicate.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/PredicateImplementor.class b/target/classes/org/hibernate/jpa/criteria/predicate/PredicateImplementor.class deleted file mode 100644 index 8c7f5987..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/PredicateImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/criteria/predicate/TruthValue.class b/target/classes/org/hibernate/jpa/criteria/predicate/TruthValue.class deleted file mode 100644 index bf5a17c7..00000000 Binary files a/target/classes/org/hibernate/jpa/criteria/predicate/TruthValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/HibernateEntityManagerEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/HibernateEntityManagerEventListener.class deleted file mode 100644 index 1eba9081..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/HibernateEntityManagerEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaAutoFlushEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaAutoFlushEventListener.class deleted file mode 100644 index 9461125e..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaAutoFlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaDeleteEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaDeleteEventListener.class deleted file mode 100644 index 4bf26bca..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaDeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaFlushEntityEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaFlushEntityEventListener.class deleted file mode 100644 index 24824865..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaFlushEntityEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaFlushEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaFlushEventListener.class deleted file mode 100644 index 5c87af0b..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaFlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaMergeEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaMergeEventListener.class deleted file mode 100644 index 09021cde..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaMergeEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistEventListener$1.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistEventListener$1.class deleted file mode 100644 index 98439328..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistEventListener$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistEventListener.class deleted file mode 100644 index 91eb0e8f..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistOnFlushEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistOnFlushEventListener.class deleted file mode 100644 index 42eba2e2..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaPersistOnFlushEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostDeleteEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaPostDeleteEventListener.class deleted file mode 100644 index 4c9714f3..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostDeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostInsertEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaPostInsertEventListener.class deleted file mode 100644 index 0a18b496..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostInsertEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostLoadEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaPostLoadEventListener.class deleted file mode 100644 index afd5b936..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostLoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostUpdateEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaPostUpdateEventListener.class deleted file mode 100644 index ad044e5e..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaPostUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaSaveEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaSaveEventListener.class deleted file mode 100644 index c3955296..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaSaveEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/core/JpaSaveOrUpdateEventListener.class b/target/classes/org/hibernate/jpa/event/internal/core/JpaSaveOrUpdateEventListener.class deleted file mode 100644 index 6d62e1f9..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/core/JpaSaveOrUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/AbstractCallback.class b/target/classes/org/hibernate/jpa/event/internal/jpa/AbstractCallback.class deleted file mode 100644 index d5637e10..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/AbstractCallback.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/CallbackBuilderLegacyImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/CallbackBuilderLegacyImpl.class deleted file mode 100644 index 2d728325..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/CallbackBuilderLegacyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/CallbackRegistryImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/CallbackRegistryImpl.class deleted file mode 100644 index 0ce2828a..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/CallbackRegistryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/EntityCallback.class b/target/classes/org/hibernate/jpa/event/internal/jpa/EntityCallback.class deleted file mode 100644 index d5a4f9de..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/EntityCallback.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerCallback.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerCallback.class deleted file mode 100644 index 966bea74..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerCallback.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl$1.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl$1.class deleted file mode 100644 index b549a178..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl$ListenerImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl$ListenerImpl.class deleted file mode 100644 index 0839a965..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl$ListenerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl.class deleted file mode 100644 index eb18aace..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerDelayedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl$1.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl$1.class deleted file mode 100644 index 957fb2bc..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl$ListenerImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl$ListenerImpl.class deleted file mode 100644 index 0a2b0298..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl$ListenerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl.class deleted file mode 100644 index 96e00384..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerExtendedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl$1.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl$1.class deleted file mode 100644 index 7dbd8020..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl$ListenerImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl$ListenerImpl.class deleted file mode 100644 index a2d0102c..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl$ListenerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl.class deleted file mode 100644 index b2f56162..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryBeanManagerStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryStandardImpl$ListenerImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryStandardImpl$ListenerImpl.class deleted file mode 100644 index e42ddefc..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryStandardImpl$ListenerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryStandardImpl.class b/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryStandardImpl.class deleted file mode 100644 index c2129826..00000000 Binary files a/target/classes/org/hibernate/jpa/event/internal/jpa/ListenerFactoryStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$1.class b/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$1.class deleted file mode 100644 index 5248e2e1..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$JPADuplicationStrategy.class b/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$JPADuplicationStrategy.class deleted file mode 100644 index a9758997..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$JPADuplicationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$PersistCascadeStyle.class b/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$PersistCascadeStyle.class deleted file mode 100644 index e46acbd8..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator$PersistCascadeStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator.class b/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator.class deleted file mode 100644 index f2f1df23..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/JpaIntegrator.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/Callback.class b/target/classes/org/hibernate/jpa/event/spi/jpa/Callback.class deleted file mode 100644 index 14b975b1..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/Callback.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackBuilder$CallbackRegistrar.class b/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackBuilder$CallbackRegistrar.class deleted file mode 100644 index 2a6adae8..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackBuilder$CallbackRegistrar.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackBuilder.class b/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackBuilder.class deleted file mode 100644 index 136f1458..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackRegistry.class b/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackRegistry.class deleted file mode 100644 index e3adf134..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackRegistryConsumer.class b/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackRegistryConsumer.class deleted file mode 100644 index 5d8f6cf4..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackRegistryConsumer.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackType.class b/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackType.class deleted file mode 100644 index a44e6ed1..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/CallbackType.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/ExtendedBeanManager$LifecycleListener.class b/target/classes/org/hibernate/jpa/event/spi/jpa/ExtendedBeanManager$LifecycleListener.class deleted file mode 100644 index d16b762d..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/ExtendedBeanManager$LifecycleListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/ExtendedBeanManager.class b/target/classes/org/hibernate/jpa/event/spi/jpa/ExtendedBeanManager.class deleted file mode 100644 index 04eaaf35..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/ExtendedBeanManager.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/Listener.class b/target/classes/org/hibernate/jpa/event/spi/jpa/Listener.class deleted file mode 100644 index 4fb43255..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/Listener.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/ListenerFactory.class b/target/classes/org/hibernate/jpa/event/spi/jpa/ListenerFactory.class deleted file mode 100644 index b40b2b23..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/ListenerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/event/spi/jpa/ListenerFactoryBuilder.class b/target/classes/org/hibernate/jpa/event/spi/jpa/ListenerFactoryBuilder.class deleted file mode 100644 index ad0465c4..00000000 Binary files a/target/classes/org/hibernate/jpa/event/spi/jpa/ListenerFactoryBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/graph/internal/AbstractGraphNode.class b/target/classes/org/hibernate/jpa/graph/internal/AbstractGraphNode.class deleted file mode 100644 index 50a5f52b..00000000 Binary files a/target/classes/org/hibernate/jpa/graph/internal/AbstractGraphNode.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/graph/internal/AttributeNodeImpl.class b/target/classes/org/hibernate/jpa/graph/internal/AttributeNodeImpl.class deleted file mode 100644 index 31bb180e..00000000 Binary files a/target/classes/org/hibernate/jpa/graph/internal/AttributeNodeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/graph/internal/EntityGraphImpl.class b/target/classes/org/hibernate/jpa/graph/internal/EntityGraphImpl.class deleted file mode 100644 index 771104ed..00000000 Binary files a/target/classes/org/hibernate/jpa/graph/internal/EntityGraphImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/graph/internal/SubgraphImpl.class b/target/classes/org/hibernate/jpa/graph/internal/SubgraphImpl.class deleted file mode 100644 index fd77ad15..00000000 Binary files a/target/classes/org/hibernate/jpa/graph/internal/SubgraphImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$1.class b/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$1.class deleted file mode 100644 index 1e66f3ba..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$HibernatePersistenceUnitUtil.class b/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$HibernatePersistenceUnitUtil.class deleted file mode 100644 index 050900ac..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$HibernatePersistenceUnitUtil.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$JPACache.class b/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$JPACache.class deleted file mode 100644 index 3c383b31..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$JPACache.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$JpaMetaModelPopulationSetting.class b/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$JpaMetaModelPopulationSetting.class deleted file mode 100644 index 462d15f4..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl$JpaMetaModelPopulationSetting.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl.class b/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl.class deleted file mode 100644 index 33a15de1..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryRegistry.class b/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryRegistry.class deleted file mode 100644 index c2b043ec..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerFactoryRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$1.class b/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$1.class deleted file mode 100644 index 89cb55b7..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$AfterCompletionActionImpl.class b/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$AfterCompletionActionImpl.class deleted file mode 100644 index b2cd86ad..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$AfterCompletionActionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$CallbackExceptionMapperImpl.class b/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$CallbackExceptionMapperImpl.class deleted file mode 100644 index 59807545..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$CallbackExceptionMapperImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$ManagedFlushCheckerImpl.class b/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$ManagedFlushCheckerImpl.class deleted file mode 100644 index e25063ea..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl$ManagedFlushCheckerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl.class b/target/classes/org/hibernate/jpa/internal/EntityManagerImpl.class deleted file mode 100644 index 6d0ba948..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger.class b/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger.class deleted file mode 100644 index 50d46870..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger.i18n.properties b/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger.i18n.properties deleted file mode 100644 index 0683fbcd..00000000 --- a/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger.i18n.properties +++ /dev/null @@ -1,95 +0,0 @@ -##################################################################################################### -# -# This file is for reference only, changes have no effect on the generated interface implementations. -# -##################################################################################################### - -# Id: 15001 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Bound Ejb3Configuration to JNDI name: %s -# @param 1: name - -boundEjb3ConfigurationToJndiName=Bound Ejb3Configuration to JNDI name: %s -# Id: 15002 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Ejb3Configuration name: %s -# @param 1: name - -ejb3ConfigurationName=Ejb3Configuration name: %s -# Id: 15003 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: An Ejb3Configuration was renamed from name: %s -# @param 1: name - -ejb3ConfigurationRenamedFromName=An Ejb3Configuration was renamed from name: %s -# Id: 15004 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: An Ejb3Configuration was unbound from name: %s -# @param 1: name - -ejb3ConfigurationUnboundFromName=An Ejb3Configuration was unbound from name: %s -# Id: 15005 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Exploded jar file does not exist (ignored): %s -# @param 1: jarUrl - -explodedJarDoesNotExist=Exploded jar file does not exist (ignored): %s -# Id: 15006 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Exploded jar file not a directory (ignored): %s -# @param 1: jarUrl - -explodedJarNotDirectory=Exploded jar file not a directory (ignored): %s -# Id: 15007 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Illegal argument on static metamodel field injection : %s#%s; expected type : %s; encountered type : %s -# @param 1: name - -# @param 2: name2 - -# @param 3: name3 - -# @param 4: name4 - -illegalArgumentOnStaticMetamodelFieldInjection=Illegal argument on static metamodel field injection : %s#%s; expected type : %s; encountered type : %s -# Id: 15008 -# Level: org.jboss.logging.Logger.Level.ERROR -# Message: Malformed URL: %s -# @param 1: jarUrl - -malformedUrl=Malformed URL: %s -# Id: 15009 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Malformed URL: %s -# @param 1: jarUrl - -malformedUrlWarning=Malformed URL: %s -# Id: 15010 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to find file (ignored): %s -# @param 1: jarUrl - -unableToFindFile=Unable to find file (ignored): %s -# Id: 15011 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Unable to locate static metamodel field : %s#%s; this may or may not indicate a problem with the static metamodel -# @param 1: name - -# @param 2: name2 - -unableToLocateStaticMetamodelField=Unable to locate static metamodel field : %s#%s; this may or may not indicate a problem with the static metamodel -# Id: 15012 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Using provided datasource -usingProvidedDataSource=Using provided datasource -# Id: 15013 -# Level: org.jboss.logging.Logger.Level.DEBUG -# Message: Returning null (as required by JPA spec) rather than throwing EntityNotFoundException, as the entity (type=%s, id=%s) does not exist -# @param 1: entityName - -# @param 2: identifier - -ignoringEntityNotFound=Returning null (as required by JPA spec) rather than throwing EntityNotFoundException, as the entity (type=%s, id=%s) does not exist -# Id: 15014 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: DEPRECATION - attempt to refer to JPA positional parameter [?%1$s] using String name ["%1$s"] rather than int position [%1$s] (generally in Query#setParameter, Query#getParameter or Query#getParameterValue calls). Hibernate previously allowed such usage, but it is considered deprecated. -# @param 1: jpaPositionalParameter - -deprecatedJpaPositionalParameterAccess=DEPRECATION - attempt to refer to JPA positional parameter [?%1$s] using String name ["%1$s"] rather than int position [%1$s] (generally in Query#setParameter, Query#getParameter or Query#getParameterValue calls). Hibernate previously allowed such usage, but it is considered deprecated. -# Id: 15015 -# Level: org.jboss.logging.Logger.Level.INFO -# Message: Encountered a MappedSuperclass [%s] not used in any entity hierarchy -# @param 1: name - -unusedMappedSuperclass=Encountered a MappedSuperclass [%s] not used in any entity hierarchy -# Id: 15016 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: Encountered a deprecated javax.persistence.spi.PersistenceProvider [%s]; use [%s] instead. -# @param 1: deprecated - -# @param 2: replacement - -deprecatedPersistenceProvider=Encountered a deprecated javax.persistence.spi.PersistenceProvider [%s]; use [%s] instead. -# Id: 15017 -# Level: org.jboss.logging.Logger.Level.WARN -# Message: 'hibernate.ejb.use_class_enhancer' property is deprecated. Use 'hibernate.enhance.enable[...]' properties instead to enable each individual feature. -deprecatedInstrumentationProperty='hibernate.ejb.use_class_enhancer' property is deprecated. Use 'hibernate.enhance.enable[...]' properties instead to enable each individual feature. diff --git a/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger_$logger.class b/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger_$logger.class deleted file mode 100644 index b3731820..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/EntityManagerMessageLogger_$logger.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/HEMLogging.class b/target/classes/org/hibernate/jpa/internal/HEMLogging.class deleted file mode 100644 index 53b3041c..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/HEMLogging.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/QueryImpl$JpaPositionalParameterRegistrationImpl.class b/target/classes/org/hibernate/jpa/internal/QueryImpl$JpaPositionalParameterRegistrationImpl.class deleted file mode 100644 index 57f6c871..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/QueryImpl$JpaPositionalParameterRegistrationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/QueryImpl$ParameterRegistrationImpl.class b/target/classes/org/hibernate/jpa/internal/QueryImpl$ParameterRegistrationImpl.class deleted file mode 100644 index a7ddc361..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/QueryImpl$ParameterRegistrationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/QueryImpl.class b/target/classes/org/hibernate/jpa/internal/QueryImpl.class deleted file mode 100644 index 7adcc706..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/QueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl$ParameterRegistrationImpl$1.class b/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl$ParameterRegistrationImpl$1.class deleted file mode 100644 index 6f3eb029..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl$ParameterRegistrationImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl$ParameterRegistrationImpl.class b/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl$ParameterRegistrationImpl.class deleted file mode 100644 index fa405e57..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl$ParameterRegistrationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl.class b/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl.class deleted file mode 100644 index 5c9435b2..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/StoredProcedureQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/TransactionImpl.class b/target/classes/org/hibernate/jpa/internal/TransactionImpl.class deleted file mode 100644 index dd6996e2..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/TransactionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$1.class b/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$1.class deleted file mode 100644 index 9b245b8b..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$EnhancementContextWrapper.class b/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$EnhancementContextWrapper.class deleted file mode 100644 index 0e9644d3..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl$EnhancementContextWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl.class b/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl.class deleted file mode 100644 index 92461da2..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/enhance/EnhancingClassTransformerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractAttribute.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractAttribute.class deleted file mode 100644 index a2469983..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType$1.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType$1.class deleted file mode 100644 index 3a893c30..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType$Builder.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType$Builder.class deleted file mode 100644 index 76d7a0c7..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType.class deleted file mode 100644 index a4a8f9f7..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractIdentifiableType.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$1.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$1.class deleted file mode 100644 index 2e9795aa..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$2.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$2.class deleted file mode 100644 index 1aae2d36..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$Builder.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$Builder.class deleted file mode 100644 index 5a958c05..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType.class deleted file mode 100644 index bef91df3..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractManagedType.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractType.class b/target/classes/org/hibernate/jpa/internal/metamodel/AbstractType.class deleted file mode 100644 index 8615b21f..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AbstractType.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$1.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$1.class deleted file mode 100644 index c8890027..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$2.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$2.class deleted file mode 100644 index 19f5abf7..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$3.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$3.class deleted file mode 100644 index 389a67cc..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$4.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$4.class deleted file mode 100644 index d074439d..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$5.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$5.class deleted file mode 100644 index eb946eb3..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$6.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$6.class deleted file mode 100644 index 377a5231..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$6.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$7.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$7.class deleted file mode 100644 index df935184..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$7.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$AttributeContext.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$AttributeContext.class deleted file mode 100644 index 0a86873a..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$AttributeContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$AttributeMetadata.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$AttributeMetadata.class deleted file mode 100644 index ea9ce543..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$AttributeMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$BaseAttributeMetadata.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$BaseAttributeMetadata.class deleted file mode 100644 index f3c2d6ed..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$BaseAttributeMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$MemberResolver.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$MemberResolver.class deleted file mode 100644 index 19b48913..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$MemberResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadata.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadata.class deleted file mode 100644 index c6a0ce9c..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl$1.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl$1.class deleted file mode 100644 index 89d32a69..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl$2.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl$2.class deleted file mode 100644 index 01133212..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl.class deleted file mode 100644 index ed3db3e0..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$PluralAttributeMetadataImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadata.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadata.class deleted file mode 100644 index e5e95a19..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadataImpl$1.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadataImpl$1.class deleted file mode 100644 index 441b61ce..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadataImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadataImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadataImpl.class deleted file mode 100644 index bc9dab70..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$SingularAttributeMetadataImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$ValueContext$ValueClassification.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$ValueContext$ValueClassification.class deleted file mode 100644 index 82a470a7..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$ValueContext$ValueClassification.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$ValueContext.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$ValueContext.class deleted file mode 100644 index 3b85a8c4..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory$ValueContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory.class deleted file mode 100644 index 98c182bb..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeImplementor.class b/target/classes/org/hibernate/jpa/internal/metamodel/AttributeImplementor.class deleted file mode 100644 index 91fe9b0b..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/AttributeImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/BasicTypeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/BasicTypeImpl.class deleted file mode 100644 index 957a81cd..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/BasicTypeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/EmbeddableTypeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/EmbeddableTypeImpl.class deleted file mode 100644 index 2a8c1739..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/EmbeddableTypeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/EntityTypeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/EntityTypeImpl.class deleted file mode 100644 index 40c9ad57..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/EntityTypeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/Helper$AttributeSource.class b/target/classes/org/hibernate/jpa/internal/metamodel/Helper$AttributeSource.class deleted file mode 100644 index 645dcd7e..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/Helper$AttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/Helper$ComponentAttributeSource.class b/target/classes/org/hibernate/jpa/internal/metamodel/Helper$ComponentAttributeSource.class deleted file mode 100644 index 760a2e69..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/Helper$ComponentAttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/Helper$EntityPersisterAttributeSource.class b/target/classes/org/hibernate/jpa/internal/metamodel/Helper$EntityPersisterAttributeSource.class deleted file mode 100644 index 588b5cd3..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/Helper$EntityPersisterAttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/Helper.class b/target/classes/org/hibernate/jpa/internal/metamodel/Helper.class deleted file mode 100644 index b216baa0..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/MapMember.class b/target/classes/org/hibernate/jpa/internal/metamodel/MapMember.class deleted file mode 100644 index cd4bcf45..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/MapMember.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/MappedSuperclassTypeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/MappedSuperclassTypeImpl.class deleted file mode 100644 index 2cd680be..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/MappedSuperclassTypeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/MetadataContext.class b/target/classes/org/hibernate/jpa/internal/metamodel/MetadataContext.class deleted file mode 100644 index 7f23d0f8..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/MetadataContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/MetamodelImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/MetamodelImpl.class deleted file mode 100644 index ac032cfd..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/MetamodelImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$1.class b/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$1.class deleted file mode 100644 index 64af03ab..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$Builder.class b/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$Builder.class deleted file mode 100644 index 2b4b8f1b..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$CollectionAttributeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$CollectionAttributeImpl.class deleted file mode 100644 index 13a2dd3e..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$CollectionAttributeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$ListAttributeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$ListAttributeImpl.class deleted file mode 100644 index ac44c95a..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$ListAttributeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$MapAttributeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$MapAttributeImpl.class deleted file mode 100644 index 07dd45a8..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$MapAttributeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$SetAttributeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$SetAttributeImpl.class deleted file mode 100644 index 86495380..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl$SetAttributeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl.class deleted file mode 100644 index 208b7eca..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/PluralAttributeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl$Identifier.class b/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl$Identifier.class deleted file mode 100644 index 4a5eeeb7..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl$Identifier.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl$Version.class b/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl$Version.class deleted file mode 100644 index 32d77369..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl$Version.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl.class b/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl.class deleted file mode 100644 index e23fc547..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/metamodel/SingularAttributeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/CacheModeHelper$1.class b/target/classes/org/hibernate/jpa/internal/util/CacheModeHelper$1.class deleted file mode 100644 index a69e73d1..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/CacheModeHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/CacheModeHelper.class b/target/classes/org/hibernate/jpa/internal/util/CacheModeHelper.class deleted file mode 100644 index 73e3d45d..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/CacheModeHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/ConfigurationHelper$1.class b/target/classes/org/hibernate/jpa/internal/util/ConfigurationHelper$1.class deleted file mode 100644 index 728f4152..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/ConfigurationHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/ConfigurationHelper.class b/target/classes/org/hibernate/jpa/internal/util/ConfigurationHelper.class deleted file mode 100644 index 91c4e654..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/ConfigurationHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/LockModeTypeHelper.class b/target/classes/org/hibernate/jpa/internal/util/LockModeTypeHelper.class deleted file mode 100644 index b2a9802d..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/LockModeTypeHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/LogHelper.class b/target/classes/org/hibernate/jpa/internal/util/LogHelper.class deleted file mode 100644 index e32cf340..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/LogHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUnitTransactionTypeHelper.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUnitTransactionTypeHelper.class deleted file mode 100644 index 97fd1310..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUnitTransactionTypeHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$AttributeAccess.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$AttributeAccess.class deleted file mode 100644 index b6c42a2a..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$AttributeAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$AttributeExtractionException.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$AttributeExtractionException.class deleted file mode 100644 index 45cbf1cc..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$AttributeExtractionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$ClassMetadataCache$1.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$ClassMetadataCache$1.class deleted file mode 100644 index da879c7e..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$ClassMetadataCache$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$ClassMetadataCache.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$ClassMetadataCache.class deleted file mode 100644 index e0f5f6e2..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$ClassMetadataCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$FieldAttributeAccess.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$FieldAttributeAccess.class deleted file mode 100644 index 63efc883..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$FieldAttributeAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$MetadataCache.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$MetadataCache.class deleted file mode 100644 index 3d3b9edb..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$MetadataCache.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$MethodAttributeAccess.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$MethodAttributeAccess.class deleted file mode 100644 index 630ec808..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$MethodAttributeAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$NoSuchAttributeAccess.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$NoSuchAttributeAccess.class deleted file mode 100644 index 381be771..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper$NoSuchAttributeAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper.class b/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper.class deleted file mode 100644 index bad3a009..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PersistenceUtilHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/PessimisticNumberParser.class b/target/classes/org/hibernate/jpa/internal/util/PessimisticNumberParser.class deleted file mode 100644 index fa5deb86..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/PessimisticNumberParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/internal/util/XmlHelper.class b/target/classes/org/hibernate/jpa/internal/util/XmlHelper.class deleted file mode 100644 index f0e07d08..00000000 Binary files a/target/classes/org/hibernate/jpa/internal/util/XmlHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/orm_1_0.xsd b/target/classes/org/hibernate/jpa/orm_1_0.xsd deleted file mode 100644 index fbde2656..00000000 --- a/target/classes/org/hibernate/jpa/orm_1_0.xsd +++ /dev/null @@ -1,1523 +0,0 @@ - - - - - - - - - @(#)orm_1_0.xsd 1.0 Feb 14 2006 - - - - - - - - - - - - - - - - - - - - - - The entity-mappings element is the root element of an mapping - file. It contains the following four types of elements: - - 1. The persistence-unit-metadata element contains metadata - for the entire persistence unit. It is undefined if this element - occurs in multiple mapping files within the same persistence unit. - - 2. The package, schema, catalog and access elements apply to all of - the entity, mapped-superclass and embeddable elements defined in - the same file in which they occur. - - 3. The sequence-generator, table-generator, named-query, - named-native-query and sql-result-set-mapping elements are global - to the persistence unit. It is undefined to have more than one - sequence-generator or table-generator of the same name in the same - or different mapping files in a persistence unit. It is also - undefined to have more than one named-query or named-native-query - of the same name in the same or different mapping files in a - persistence unit. - - 4. The entity, mapped-superclass and embeddable elements each define - the mapping information for a managed persistent class. The mapping - information contained in these elements may be complete or it may - be partial. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Metadata that applies to the persistence unit and not just to - the mapping file in which it is contained. - - If the xml-mapping-metadata-complete element is specified then - the complete set of mapping metadata for the persistence unit - is contained in the XML mapping files for the persistence unit. - - - - - - - - - - - - - - - - These defaults are applied to the persistence unit as a whole - unless they are overridden by local annotation or XML - element settings. - - schema - Used as the schema for all tables or secondary tables - that apply to the persistence unit - catalog - Used as the catalog for all tables or secondary tables - that apply to the persistence unit - access - Used as the access type for all managed classes in - the persistence unit - cascade-persist - Adds cascade-persist to the set of cascade options - in entity relationships of the persistence unit - entity-listeners - List of default entity listeners to be invoked - on each entity in the persistence unit. - - - - - - - - - - - - - - - - - - - Defines the settings and mappings for an entity. Is allowed to be - sparsely populated and used in conjunction with the annotations. - Alternatively, the metadata-complete attribute can be used to - indicate that no annotations on the entity class (and its fields - or properties) are to be processed. If this is the case then - the defaulting rules for the entity and its subelements will - be recursively applied. - - @Target(TYPE) @Retention(RUNTIME) - public @interface Entity { - String name() default ""; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This element contains the entity field or property mappings. - It may be sparsely populated to include only a subset of the - fields or properties. If metadata-complete for the entity is true - then the remainder of the attributes will be defaulted according - to the default rules. - - - - - - - - - - - - - - - - - - - - - - - - - - This element determines how the persistence provider accesses the - state of an entity or embedded object. - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface EntityListeners { - Class[] value(); - } - - - - - - - - - - - - - - - Defines an entity listener to be invoked at lifecycle events - for the entities that list this listener. - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PrePersist {} - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostPersist {} - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PreRemove {} - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostRemove {} - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PreUpdate {} - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostUpdate {} - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostLoad {} - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface QueryHint { - String name(); - String value(); - } - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface NamedQuery { - String name(); - String query(); - QueryHint[] hints() default {}; - } - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface NamedNativeQuery { - String name(); - String query(); - QueryHint[] hints() default {}; - Class resultClass() default void.class; - String resultSetMapping() default ""; //named SqlResultSetMapping - } - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface SqlResultSetMapping { - String name(); - EntityResult[] entities() default {}; - ColumnResult[] columns() default {}; - } - - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface EntityResult { - Class entityClass(); - FieldResult[] fields() default {}; - String discriminatorColumn() default ""; - } - - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface FieldResult { - String name(); - String column(); - } - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface ColumnResult { - String name(); - } - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface Table { - String name() default ""; - String catalog() default ""; - String schema() default ""; - UniqueConstraint[] uniqueConstraints() default {}; - } - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface SecondaryTable { - String name(); - String catalog() default ""; - String schema() default ""; - PrimaryKeyJoinColumn[] pkJoinColumns() default {}; - UniqueConstraint[] uniqueConstraints() default {}; - } - - - - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface UniqueConstraint { - String[] columnNames(); - } - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Column { - String name() default ""; - boolean unique() default false; - boolean nullable() default true; - boolean insertable() default true; - boolean updatable() default true; - String columnDefinition() default ""; - String table() default ""; - int length() default 255; - int precision() default 0; // decimal precision - int scale() default 0; // decimal scale - } - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface JoinColumn { - String name() default ""; - String referencedColumnName() default ""; - boolean unique() default false; - boolean nullable() default true; - boolean insertable() default true; - boolean updatable() default true; - String columnDefinition() default ""; - String table() default ""; - } - - - - - - - - - - - - - - - - - - - - public enum GenerationType { TABLE, SEQUENCE, IDENTITY, AUTO }; - - - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface AttributeOverride { - String name(); - Column column(); - } - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface AssociationOverride { - String name(); - JoinColumn[] joinColumns(); - } - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface IdClass { - Class value(); - } - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Id {} - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface EmbeddedId {} - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Transient {} - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Version {} - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Basic { - FetchType fetch() default EAGER; - boolean optional() default true; - } - - - - - - - - - - - - - - - - - - - - - - - public enum FetchType { LAZY, EAGER }; - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Lob {} - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Temporal { - TemporalType value(); - } - - - - - - - - - - - - - public enum TemporalType { - DATE, // java.sql.Date - TIME, // java.sql.Time - TIMESTAMP // java.sql.Timestamp - } - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Enumerated { - EnumType value() default ORDINAL; - } - - - - - - - - - - - - - public enum EnumType { - ORDINAL, - STRING - } - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface ManyToOne { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default EAGER; - boolean optional() default true; - } - - - - - - - - - - - - - - - - - - - - - - - public enum CascadeType { ALL, PERSIST, MERGE, REMOVE, REFRESH}; - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface OneToOne { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default EAGER; - boolean optional() default true; - String mappedBy() default ""; - } - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface OneToMany { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default LAZY; - String mappedBy() default ""; - } - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface JoinTable { - String name() default ""; - String catalog() default ""; - String schema() default ""; - JoinColumn[] joinColumns() default {}; - JoinColumn[] inverseJoinColumns() default {}; - UniqueConstraint[] uniqueConstraints() default {}; - } - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface ManyToMany { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default LAZY; - String mappedBy() default ""; - } - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface GeneratedValue { - GenerationType strategy() default AUTO; - String generator() default ""; - } - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface MapKey { - String name() default ""; - } - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface OrderBy { - String value() default ""; - } - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface Inheritance { - InheritanceType strategy() default SINGLE_TABLE; - } - - - - - - - - - - - - - public enum InheritanceType - { SINGLE_TABLE, JOINED, TABLE_PER_CLASS}; - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface DiscriminatorValue { - String value(); - } - - - - - - - - - - - - - public enum DiscriminatorType { STRING, CHAR, INTEGER }; - - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface PrimaryKeyJoinColumn { - String name() default ""; - String referencedColumnName() default ""; - String columnDefinition() default ""; - } - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface DiscriminatorColumn { - String name() default "DTYPE"; - DiscriminatorType discriminatorType() default STRING; - String columnDefinition() default ""; - int length() default 31; - } - - - - - - - - - - - - - - - - Defines the settings and mappings for embeddable objects. Is - allowed to be sparsely populated and used in conjunction with - the annotations. Alternatively, the metadata-complete attribute - can be used to indicate that no annotations are to be processed - in the class. If this is the case then the defaulting rules will - be recursively applied. - - @Target({TYPE}) @Retention(RUNTIME) - public @interface Embeddable {} - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Embedded {} - - - - - - - - - - - - - - - - Defines the settings and mappings for a mapped superclass. Is - allowed to be sparsely populated and used in conjunction with - the annotations. Alternatively, the metadata-complete attribute - can be used to indicate that no annotations are to be processed - If this is the case then the defaulting rules will be recursively - applied. - - @Target(TYPE) @Retention(RUNTIME) - public @interface MappedSuperclass{} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface SequenceGenerator { - String name(); - String sequenceName() default ""; - int initialValue() default 1; - int allocationSize() default 50; - } - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface TableGenerator { - String name(); - String table() default ""; - String catalog() default ""; - String schema() default ""; - String pkColumnName() default ""; - String valueColumnName() default ""; - String pkColumnValue() default ""; - int initialValue() default 0; - int allocationSize() default 50; - UniqueConstraint[] uniqueConstraints() default {}; - } - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/org/hibernate/jpa/orm_2_0.xsd b/target/classes/org/hibernate/jpa/orm_2_0.xsd deleted file mode 100644 index 11d1a5e0..00000000 --- a/target/classes/org/hibernate/jpa/orm_2_0.xsd +++ /dev/null @@ -1,1439 +0,0 @@ - - - - - @(#)orm_2_0.xsd 2.0 October 1 2009 - - - - -... -]]> - - - - - - - - - - - - - The entity-mappings element is the root element of a mapping - file. It contains the following four types of elements: - 1. The persistence-unit-metadata element contains metadata for the entire persistence unit. It is - undefined if this element occurs in multiple mapping files within the same persistence unit. - 2. The package, schema, catalog and access elements apply to all of the entity, mapped-superclass - and embeddable elements defined in the same file in which they occur. - 3. The sequence-generator, table-generator, named-query, named-native-query and - sql-result-set-mapping elements are global to the persistence unit. It is undefined to have more - than one sequence-generator or table-generator of the same name in the same or different mapping - files in a persistence unit. It is also undefined to have more than one named-query, - named-native-query, or result-set-mapping of the same name in the same or different mapping files in - a persistence unit. - 4. The entity, mapped-superclass and embeddable elements each define the mapping information for a - managed persistent class. The mapping information contained in these elements may be complete or it - may be partial. - - - - - - - - - - - - - - - - - - - - - - - - - - Metadata that applies to the persistence unit and not just to the mapping file in which it is contained. - If the xml-mapping-metadata-complete element is specified, the complete set of mapping metadata for the - persistence unit is contained in the XML mapping files for the persistence unit. - - - - - - - - - - - - - These defaults are applied to the persistence unit as a whole unless they are overridden by local - annotation or XML element settings. - schema - Used as the schema for all tables, secondary tables, join tables, collection tables, sequence - generators, and table generators that apply to the persistence unit - catalog - Used as the catalog for all tables, secondary tables, join tables, collection tables, sequence - generators, and table generators that apply to the persistence unit - delimited-identifiers - Used to treat database identifiers as delimited identifiers. - access - Used as the access type for all managed classes in the persistence unit - cascade-persist - Adds cascade-persist to the set of cascade options in all entity relationships of the - persistence unit - entity-listeners - List of default entity listeners to be invoked on each entity in the persistence - unit. - - - - - - - - - - - - - - - - - Defines the settings and mappings for an entity. Is allowed to be sparsely populated and used in - conjunction - with the annotations. Alternatively, the metadata-complete attribute can be used to indicate that no - annotations - on the entity class (and its fields or properties) are to be processed. If this is the case then - the defaulting rules for the entity and its subelements will be recursively applied. - @Target(TYPE) @Retention(RUNTIME) public @interface Entity { String name() default ""; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This element determines how the persistence provider accesses the state of an entity or embedded object. - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface AssociationOverride { - } - String name(); JoinColumn[] joinColumns() default{}; JoinTable joinTable() default @JoinTable; - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface AttributeOverride { - String name(); Column column(); - } - - - - - - - - - - - - - This element contains the entity field or property mappings. It may be sparsely populated to include - only a - subset of the fields or properties. If metadata-complete for the entity is true then the remainder of - the - attributes will be defaulted according to the default rules. - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Basic { - FetchType fetch() default EAGER; boolean optional() default true; - } - - - - - - - - - - - - - - - - - - - - public enum CascadeType { ALL, PERSIST, MERGE, REMOVE, REFRESH, DETACH}; - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface CollectionTable { - } - String name() default ""; String catalog() default ""; String schema() default ""; JoinColumn[] - joinColumns() - default {}; UniqueConstraint[] uniqueConstraints() default {}; - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Column { - } - String name() default ""; boolean unique() default false; boolean nullable() default true; boolean - insertable() - default true; boolean updatable() default true; String columnDefinition() default ""; String table() - default ""; - int length() default 255; int precision() default 0; // decimal precision int scale() default 0; // - decimal - scale - - - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) public @interface ColumnResult { - } - String name(); - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface DiscriminatorColumn { - String name() default "DTYPE"; DiscriminatorType discriminatorType() default STRING; String - columnDefinition() - default ""; int length() default 31; - } - - - - - - - - - - - public enum DiscriminatorType { STRING, CHAR, INTEGER }; - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface DiscriminatorValue { - } - String value(); - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface ElementCollection { - } - Class targetClass() default void.class; FetchType fetch() default LAZY; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Defines the settings and mappings for embeddable objects. Is allowed to be sparsely populated and used - in - conjunction with - the annotations. Alternatively, the metadata-complete attribute can be used to indicate that no - annotations are - to be processed in the class. If this is the case then the defaulting rules will be recursively applied. - @Target({TYPE}) @Retention(RUNTIME) public @interface Embeddable {} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Embedded {} - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface EmbeddedId {} - - - - - - - - - - - - - Defines an entity listener to be invoked at lifecycle events for the entities that list this listener. - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface EntityListeners { - } - Class[] value(); - - - - - - - - - - - @Target({}) @Retention(RUNTIME) public @interface EntityResult { - } - Class entityClass(); FieldResult[] fields() default {}; String discriminatorColumn() default ""; - - - - - - - - - - - - - public enum EnumType { ORDINAL, - } - STRING - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Enumerated { - } - EnumType value() default ORDINAL; - - - - - - - - public enum FetchType { LAZY, EAGER }; - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) public @interface FieldResult { - } - String name(); String column(); - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface GeneratedValue { - } - GenerationType strategy() default AUTO; String generator() default ""; - - - - - - - - - public enum GenerationType { TABLE, SEQUENCE, IDENTITY, AUTO }; - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Id {} - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface IdClass { - } - Class value(); - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface Inheritance { - } - InheritanceType strategy() default SINGLE_TABLE; - - - - - - - - - public enum InheritanceType { SINGLE_TABLE, JOINED, TABLE_PER_CLASS}; - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface JoinColumn { - } - String name() default ""; String referencedColumnName() default ""; boolean unique() default false; - boolean - nullable() default true; boolean insertable() default true; boolean updatable() default true; String - columnDefinition() default ""; String table() default ""; - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface JoinTable { - } - String name() default ""; String catalog() default ""; String schema() default ""; JoinColumn[] - joinColumns() - default {}; JoinColumn[] inverseJoinColumns() default {}; UniqueConstraint[] uniqueConstraints() default - {}; - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Lob {} - - - - - - - - public enum LockModeType { READ, WRITE, OPTIMISTIC, OPTIMISTIC_FORCE_INCREMENT, PESSIMISTIC_READ, - PESSIMISTIC_WRITE, PESSIMISTIC_FORCE_INCREMENT, NONE}; - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface ManyToMany { - } - Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default - LAZY; - String mappedBy() default ""; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface ManyToOne { - - name="map-key-column" type="orm:map-key-column" - } - Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default - EAGER; - boolean optional() default true; - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface MapKey { - } - String name() default ""; - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface MapKeyClass { - } - Class value(); - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface MapKeyColumn { - } - String name() default ""; boolean unique() default false; boolean nullable() default false; boolean - insertable() - default true; boolean updatable() default true; String columnDefinition() default ""; String table() - default ""; - int length() default 255; int precision() default 0; // decimal precision int scale() default 0; // - decimal - scale - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface MapKeyJoinColumn { - } - String name() default ""; String referencedColumnName() default ""; boolean unique() default false; - boolean - nullable() default false; boolean insertable() default true; boolean updatable() default true; String - columnDefinition() default ""; String table() default ""; - - - - - - - - - - - - - - - - Defines the settings and mappings for a mapped superclass. Is allowed to be sparsely populated and used - in - conjunction with the annotations. Alternatively, the metadata-complete attribute can be used to indicate - that no - annotations are to be processed If this is the case then the defaulting rules will be recursively - applied. - @Target(TYPE) @Retention(RUNTIME) public @interface MappedSuperclass{} - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface NamedNativeQuery { - } - String name(); String query(); QueryHint[] hints() default {}; Class resultClass() default void.class; - String - resultSetMapping() default ""; //named SqlResultSetMapping - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface NamedQuery { - } - String name(); String query(); LockModeType lockMode() default NONE; QueryHint[] hints() default {}; - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface OneToMany { - } - Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default - LAZY; - String mappedBy() default ""; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface OneToOne { - } - Class targetEntity() default void.class; CascadeType[] cascade() default {}; FetchType fetch() default - EAGER; - boolean optional() default true; - String mappedBy() default ""; boolean orphanRemoval() default false; - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface OrderBy { - } - String value() default ""; - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface OrderColumn { - String name() default ""; boolean nullable() default true; boolean insertable() default true; boolean - updatable() default true; String columnDefinition() default ""; - } - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) public @interface PostLoad {} - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) public @interface PostPersist {} - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) public @interface PostRemove {} - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) public @interface PostUpdate {} - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) public @interface PrePersist {} - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) public @interface PreRemove {} - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) public @interface PreUpdate {} - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface PrimaryKeyJoinColumn { - } - String name() default ""; String referencedColumnName() default ""; String columnDefinition() default - ""; - - - - - - - - - - - @Target({}) @Retention(RUNTIME) public @interface QueryHint { - } - String name(); String value(); - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface SecondaryTable { - String name(); String catalog() default ""; String schema() default ""; PrimaryKeyJoinColumn[] - pkJoinColumns() - default {}; UniqueConstraint[] uniqueConstraints() default {}; - } - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface SequenceGenerator { - } - String name(); String sequenceName() default ""; String catalog() default ""; String schema() default - ""; int - initialValue() default 1; int allocationSize() default 50; - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface SqlResultSetMapping { - } - String name(); EntityResult[] entities() default {}; ColumnResult[] columns() default {}; - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) public @interface Table { - String name() default ""; - String catalog() default ""; String schema() default ""; UniqueConstraint[] uniqueConstraints() default - {}; - } - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface TableGenerator { - } - String name(); String table() default ""; String catalog() default ""; String schema() default ""; - String - pkColumnName() default ""; String valueColumnName() default ""; String pkColumnValue() default ""; int - initialValue() default 0; int allocationSize() default 50; UniqueConstraint[] uniqueConstraints() - default {}; - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Temporal { - TemporalType value(); } - - - - - - - - - public enum TemporalType { DATE, // java.sql.Date TIME, // java.sql.Time TIMESTAMP // java.sql.Timestamp - } - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Transient {} - - - - - - - - - @Target({}) @Retention(RUNTIME) public @interface UniqueConstraint { - } - String name() default ""; String[] columnNames(); - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Version {} - - - - - - - - - - \ No newline at end of file diff --git a/target/classes/org/hibernate/jpa/orm_2_1.xsd b/target/classes/org/hibernate/jpa/orm_2_1.xsd deleted file mode 100644 index bfe68f8c..00000000 --- a/target/classes/org/hibernate/jpa/orm_2_1.xsd +++ /dev/null @@ -1,2301 +0,0 @@ - - - - - - - - @(#)orm_2_1.xsd 2.1 February 4 2013 - - - - - - ... - - - - ]]> - - - - - - - - - - - - - - - - - - The entity-mappings element is the root element of a mapping - file. It contains the following four types of elements: - - 1. The persistence-unit-metadata element contains metadata - for the entire persistence unit. It is undefined if this element - occurs in multiple mapping files within the same persistence unit. - - 2. The package, schema, catalog and access elements apply to all of - the entity, mapped-superclass and embeddable elements defined in - the same file in which they occur. - - 3. The sequence-generator, table-generator, converter, named-query, - named-native-query, named-stored-procedure-query, and - sql-result-set-mapping elements are global to the persistence - unit. It is undefined to have more than one sequence-generator - or table-generator of the same name in the same or different - mapping files in a persistence unit. It is undefined to have - more than one named-query, named-native-query, sql-result-set-mapping, - or named-stored-procedure-query of the same name in the same - or different mapping files in a persistence unit. It is also - undefined to have more than one converter for the same target - type in the same or different mapping files in a persistence unit. - - 4. The entity, mapped-superclass and embeddable elements each define - the mapping information for a managed persistent class. The mapping - information contained in these elements may be complete or it may - be partial. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Metadata that applies to the persistence unit and not just to - the mapping file in which it is contained. - - If the xml-mapping-metadata-complete element is specified, - the complete set of mapping metadata for the persistence unit - is contained in the XML mapping files for the persistence unit. - - - - - - - - - - - - - - - - - These defaults are applied to the persistence unit as a whole - unless they are overridden by local annotation or XML - element settings. - - schema - Used as the schema for all tables, secondary tables, join - tables, collection tables, sequence generators, and table - generators that apply to the persistence unit - catalog - Used as the catalog for all tables, secondary tables, join - tables, collection tables, sequence generators, and table - generators that apply to the persistence unit - delimited-identifiers - Used to treat database identifiers as - delimited identifiers. - access - Used as the access type for all managed classes in - the persistence unit - cascade-persist - Adds cascade-persist to the set of cascade options - in all entity relationships of the persistence unit - entity-listeners - List of default entity listeners to be invoked - on each entity in the persistence unit. - - - - - - - - - - - - - - - - - - - - Defines the settings and mappings for an entity. Is allowed to be - sparsely populated and used in conjunction with the annotations. - Alternatively, the metadata-complete attribute can be used to - indicate that no annotations on the entity class (and its fields - or properties) are to be processed. If this is the case then - the defaulting rules for the entity and its subelements will - be recursively applied. - - @Target(TYPE) @Retention(RUNTIME) - public @interface Entity { - String name() default ""; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This element determines how the persistence provider accesses the - state of an entity or embedded object. - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface AssociationOverride { - String name(); - JoinColumn[] joinColumns() default{}; - JoinTable joinTable() default @JoinTable; - } - - - - - - - - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface AttributeOverride { - String name(); - Column column(); - } - - - - - - - - - - - - - - - - - This element contains the entity field or property mappings. - It may be sparsely populated to include only a subset of the - fields or properties. If metadata-complete for the entity is true - then the remainder of the attributes will be defaulted according - to the default rules. - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Basic { - FetchType fetch() default EAGER; - boolean optional() default true; - } - - - - - - - - - - - - - - - - - - - - - - - - - public enum CascadeType { ALL, PERSIST, MERGE, REMOVE, REFRESH, DETACH}; - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface CollectionTable { - String name() default ""; - String catalog() default ""; - String schema() default ""; - JoinColumn[] joinColumns() default {}; - UniqueConstraint[] uniqueConstraints() default {}; - Index[] indexes() default {}; - } - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Column { - String name() default ""; - boolean unique() default false; - boolean nullable() default true; - boolean insertable() default true; - boolean updatable() default true; - String columnDefinition() default ""; - String table() default ""; - int length() default 255; - int precision() default 0; // decimal precision - int scale() default 0; // decimal scale - } - - - - - - - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface ColumnResult { - String name(); - Class type() default void.class; - } - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface ConstructorResult { - Class targetClass(); - ColumnResult[] columns(); - } - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface Convert { - Class converter() default void.class; - String attributeName() default ""; - boolean disableConversion() default false; - } - - - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface Converter { - boolean autoApply() default false; - } - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface DiscriminatorColumn { - String name() default "DTYPE"; - DiscriminatorType discriminatorType() default STRING; - String columnDefinition() default ""; - int length() default 31; - } - - - - - - - - - - - - - - - - public enum DiscriminatorType { STRING, CHAR, INTEGER }; - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface DiscriminatorValue { - String value(); - } - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface ElementCollection { - Class targetClass() default void.class; - FetchType fetch() default LAZY; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Defines the settings and mappings for embeddable objects. Is - allowed to be sparsely populated and used in conjunction with - the annotations. Alternatively, the metadata-complete attribute - can be used to indicate that no annotations are to be processed - in the class. If this is the case then the defaulting rules will - be recursively applied. - - @Target({TYPE}) @Retention(RUNTIME) - public @interface Embeddable {} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Embedded {} - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface EmbeddedId {} - - - - - - - - - - - - - - - - - Defines an entity listener to be invoked at lifecycle events - for the entities that list this listener. - - - - - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface EntityListeners { - Class[] value(); - } - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface EntityResult { - Class entityClass(); - FieldResult[] fields() default {}; - String discriminatorColumn() default ""; - } - - - - - - - - - - - - - - - - - public enum EnumType { - ORDINAL, - STRING - } - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Enumerated { - EnumType value() default ORDINAL; - } - - - - - - - - - - - - - public enum FetchType { LAZY, EAGER }; - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface FieldResult { - String name(); - String column(); - } - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface ForeignKey { - String name() default ""; - String foreign-key-definition() default ""; - boolean disable-foreign-key() default false; - } - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface GeneratedValue { - GenerationType strategy() default AUTO; - String generator() default ""; - } - - - - - - - - - - - - - - public enum GenerationType { TABLE, SEQUENCE, IDENTITY, AUTO }; - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Id {} - - - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface IdClass { - Class value(); - } - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface Index { - String name() default ""; - String columnList(); - boolean unique() default false; - } - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface Inheritance { - InheritanceType strategy() default SINGLE_TABLE; - } - - - - - - - - - - - - - public enum InheritanceType - { SINGLE_TABLE, JOINED, TABLE_PER_CLASS}; - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface JoinColumn { - String name() default ""; - String referencedColumnName() default ""; - boolean unique() default false; - boolean nullable() default true; - boolean insertable() default true; - boolean updatable() default true; - String columnDefinition() default ""; - String table() default ""; - ForeignKey foreignKey() default @ForeignKey(); - } - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface JoinTable { - String name() default ""; - String catalog() default ""; - String schema() default ""; - JoinColumn[] joinColumns() default {}; - JoinColumn[] inverseJoinColumns() default {}; - UniqueConstraint[] uniqueConstraints() default {}; - Index[] indexes() default {}; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Lob {} - - - - - - - - - - - - public enum LockModeType { READ, WRITE, OPTIMISTIC, OPTIMISTIC_FORCE_INCREMENT, PESSIMISTIC_READ, PESSIMISTIC_WRITE, PESSIMISTIC_FORCE_INCREMENT, NONE}; - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface ManyToMany { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default LAZY; - String mappedBy() default ""; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface ManyToOne { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default EAGER; - boolean optional() default true; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface MapKey { - String name() default ""; - } - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface MapKeyClass { - Class value(); - } - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface MapKeyColumn { - String name() default ""; - boolean unique() default false; - boolean nullable() default false; - boolean insertable() default true; - boolean updatable() default true; - String columnDefinition() default ""; - String table() default ""; - int length() default 255; - int precision() default 0; // decimal precision - int scale() default 0; // decimal scale - } - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface MapKeyJoinColumn { - String name() default ""; - String referencedColumnName() default ""; - boolean unique() default false; - boolean nullable() default false; - boolean insertable() default true; - boolean updatable() default true; - String columnDefinition() default ""; - String table() default ""; - } - - - - - - - - - - - - - - - - - - - - - Defines the settings and mappings for a mapped superclass. Is - allowed to be sparsely populated and used in conjunction with - the annotations. Alternatively, the metadata-complete attribute - can be used to indicate that no annotations are to be processed - If this is the case then the defaulting rules will be recursively - applied. - - @Target(TYPE) @Retention(RUNTIME) - public @interface MappedSuperclass{} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface NamedAttributeNode { - String value(); - String subgraph() default ""; - String keySubgraph() default ""; - } - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface NamedEntityGraph { - String name() default ""; - NamedAttributeNode[] attributeNodes() default {}; - boolean includeAllAttributes() default false; - NamedSubgraph[] subgraphs() default {}; - NamedSubGraph[] subclassSubgraphs() default {}; - } - - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface NamedNativeQuery { - String name(); - String query(); - QueryHint[] hints() default {}; - Class resultClass() default void.class; - String resultSetMapping() default ""; //named SqlResultSetMapping - } - - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface NamedQuery { - String name(); - String query(); - LockModeType lockMode() default NONE; - QueryHint[] hints() default {}; - } - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface NamedStoredProcedureQuery { - String name(); - String procedureName(); - StoredProcedureParameter[] parameters() default {}; - Class[] resultClasses() default {}; - String[] resultSetMappings() default{}; - QueryHint[] hints() default {}; - } - - - - - - - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface NamedSubgraph { - String name(); - Class type() default void.class; - NamedAttributeNode[] attributeNodes(); - } - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface OneToMany { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default LAZY; - String mappedBy() default ""; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface OneToOne { - Class targetEntity() default void.class; - CascadeType[] cascade() default {}; - FetchType fetch() default EAGER; - boolean optional() default true; - String mappedBy() default ""; - boolean orphanRemoval() default false; - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface OrderBy { - String value() default ""; - } - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface OrderColumn { - String name() default ""; - boolean nullable() default true; - boolean insertable() default true; - boolean updatable() default true; - String columnDefinition() default ""; - } - - - - - - - - - - - - - - - - - public enum ParameterMode { IN, INOUT, OUT, REF_CURSOR}; - - - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostLoad {} - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostPersist {} - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostRemove {} - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PostUpdate {} - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PrePersist {} - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PreRemove {} - - - - - - - - - - - - - - - - @Target({METHOD}) @Retention(RUNTIME) - public @interface PreUpdate {} - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface PrimaryKeyJoinColumn { - String name() default ""; - String referencedColumnName() default ""; - String columnDefinition() default ""; - } - - - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface QueryHint { - String name(); - String value(); - } - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface SecondaryTable { - String name(); - String catalog() default ""; - String schema() default ""; - PrimaryKeyJoinColumn[] pkJoinColumns() default {}; - UniqueConstraint[] uniqueConstraints() default {}; - Index[] indexes() default {}; - } - - - - - - - - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface SequenceGenerator { - String name(); - String sequenceName() default ""; - String catalog() default ""; - String schema() default ""; - int initialValue() default 1; - int allocationSize() default 50; - } - - - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface SqlResultSetMapping { - String name(); - EntityResult[] entities() default {}; - ConstructorResult[] classes() default{}; - ColumnResult[] columns() default {}; - } - - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface StoredProcedureParameter { - String name() default ""; - ParameterMode mode() default ParameterMode.IN; - Class type(); - } - - - - - - - - - - - - - - - - - - @Target({TYPE}) @Retention(RUNTIME) - public @interface Table { - String name() default ""; - String catalog() default ""; - String schema() default ""; - UniqueConstraint[] uniqueConstraints() default {}; - Index[] indexes() default {}; - } - - - - - - - - - - - - - - - - - - - @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) - public @interface TableGenerator { - String name(); - String table() default ""; - String catalog() default ""; - String schema() default ""; - String pkColumnName() default ""; - String valueColumnName() default ""; - String pkColumnValue() default ""; - int initialValue() default 0; - int allocationSize() default 50; - UniqueConstraint[] uniqueConstraints() default {}; - Indexes[] indexes() default {}; - } - - - - - - - - - - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Temporal { - TemporalType value(); - } - - - - - - - - - - - - - public enum TemporalType { - DATE, // java.sql.Date - TIME, // java.sql.Time - TIMESTAMP // java.sql.Timestamp - } - - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Transient {} - - - - - - - - - - - - - @Target({}) @Retention(RUNTIME) - public @interface UniqueConstraint { - String name() default ""; - String[] columnNames(); - } - - - - - - - - - - - - - - - - @Target({METHOD, FIELD}) @Retention(RUNTIME) - public @interface Version {} - - - - - - - - - - - - diff --git a/target/classes/org/hibernate/jpa/persistence_1_0.xsd b/target/classes/org/hibernate/jpa/persistence_1_0.xsd deleted file mode 100644 index db3152d8..00000000 --- a/target/classes/org/hibernate/jpa/persistence_1_0.xsd +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - - @(#)persistence_1_0.xsd 1.0 Feb 9 2006 - - - - - ... - - - ]]> - - - - - - - - - - - - - - - - - - - - - - Configuration of a persistence unit. - - - - - - - - - - - - Textual description of this persistence unit. - - - - - - - - - - - - Provider class that supplies EntityManagers for this - persistence unit. - - - - - - - - - - - - The container-specific name of the JTA datasource to use. - - - - - - - - - - - - The container-specific name of a non-JTA datasource to use. - - - - - - - - - - - - File containing mapping information. Loaded as a resource - by the persistence provider. - - - - - - - - - - - - Jar file that should be scanned for entities. - Not applicable to Java SE persistence units. - - - - - - - - - - - - Class to scan for annotations. It should be annotated - with either @Entity, @Embeddable or @MappedSuperclass. - - - - - - - - - - - - When set to true then only listed classes and jars will - be scanned for persistent classes, otherwise the enclosing - jar or directory will also be scanned. Not applicable to - Java SE persistence units. - - - - - - - - - - - - A list of vendor-specific properties. - - - - - - - - - A name-value pair. - - - - - - - - - - - - - - - - - - - - Name used in code to reference this persistence unit. - - - - - - - - - - - - Type of transactions used by EntityManagers from this - persistence unit. - - - - - - - - - - - - - - - - - - - public enum TransactionType { JTA, RESOURCE_LOCAL }; - - - - - - - - - - - diff --git a/target/classes/org/hibernate/jpa/persistence_2_0.xsd b/target/classes/org/hibernate/jpa/persistence_2_0.xsd deleted file mode 100644 index 23b09486..00000000 --- a/target/classes/org/hibernate/jpa/persistence_2_0.xsd +++ /dev/null @@ -1,232 +0,0 @@ - - - - - @(#)persistence_2_0.xsd 1.0 October 1 2009 - - - - -... -]]> - - - - - - - - - - - - - - - - Configuration of a persistence unit. - - - - - - - - Description of this persistence unit. - - - - - - - - Provider class that supplies EntityManagers for this persistence unit. - - - - - - - - The container-specific name of the JTA datasource to use. - - - - - - - - The container-specific name of a non-JTA datasource to use. - - - - - - - - File containing mapping information. Loaded as a resource by the persistence - provider. - - - - - - - - Jar file that is to be scanned for managed classes. - - - - - - - - Managed class to be included in the persistence unit and to scan for - annotations. It should be annotated with either @Entity, @Embeddable or - @MappedSuperclass. - - - - - - - - When set to true then only listed classes and jars will be scanned for - persistent classes, otherwise the enclosing jar or directory will also be - scanned. Not applicable to Java SE persistence units. - - - - - - - - Defines whether caching is enabled for the persistence unit if caching is - supported by the persistence provider. When set to ALL, all entities will be - cached. When set to NONE, no entities will be cached. When set to - ENABLE_SELECTIVE, only entities specified as cacheable will be cached. When set - to - JSR-317 Final Release - 323 11/10/09 - Sun Microsystems, Inc. - Entity Packaging - Java Persistence 2.0, Final Release persistence.xml Schema - DISABLE_SELECTIVE, entities specified as not cacheable will not be cached. When - not specified or when set to UNSPECIFIED, provider defaults may apply. - - - - - - - The validation mode to be used for the persistence unit. - - - - - - - - A list of standard and vendor-specific properties and hints. - - - - - - - A name-value pair. - - - - - - - - - - - - - - Name used in code to reference this persistence unit. - - - - - - - - - Type of transactions used by EntityManagers from this persistence unit. - - - - - - - - - - - - - public enum PersistenceUnitTransactionType {JTA, RESOURCE_LOCAL}; - - - - - - - - - - - - public enum SharedCacheMode { ALL, NONE, ENABLE_SELECTIVE, DISABLE_SELECTIVE, UNSPECIFIED}; - - - - - - - - - - - - - - - public enum ValidationMode { AUTO, CALLBACK, NONE}; - - - - - - - - - \ No newline at end of file diff --git a/target/classes/org/hibernate/jpa/persistence_2_1.xsd b/target/classes/org/hibernate/jpa/persistence_2_1.xsd deleted file mode 100644 index ee26921d..00000000 --- a/target/classes/org/hibernate/jpa/persistence_2_1.xsd +++ /dev/null @@ -1,341 +0,0 @@ - - - - - - - - @(#)persistence_2_1.xsd 2.1 February 8, 2013 - - - - - - ... - - - ]]> - - - - - - - - - - - - - - - - - - - - - - Configuration of a persistence unit. - - - - - - - - - - - - Description of this persistence unit. - - - - - - - - - - - - Provider class that supplies EntityManagers for this - persistence unit. - - - - - - - - - - - - The container-specific name of the JTA datasource to use. - - - - - - - - - - - - The container-specific name of a non-JTA datasource to use. - - - - - - - - - - - - File containing mapping information. Loaded as a resource - by the persistence provider. - - - - - - - - - - - - Jar file that is to be scanned for managed classes. - - - - - - - - - - - - Managed class to be included in the persistence unit and - to scan for annotations. It should be annotated - with either @Entity, @Embeddable or @MappedSuperclass. - - - - - - - - - - - - When set to true then only listed classes and jars will - be scanned for persistent classes, otherwise the - enclosing jar or directory will also be scanned. - Not applicable to Java SE persistence units. - - - - - - - - - - - - Defines whether caching is enabled for the - persistence unit if caching is supported by the - persistence provider. When set to ALL, all entities - will be cached. When set to NONE, no entities will - be cached. When set to ENABLE_SELECTIVE, only entities - specified as cacheable will be cached. When set to - DISABLE_SELECTIVE, entities specified as not cacheable - will not be cached. When not specified or when set to - UNSPECIFIED, provider defaults may apply. - - - - - - - - - - - - The validation mode to be used for the persistence unit. - - - - - - - - - - - - - A list of standard and vendor-specific properties - and hints. - - - - - - - - - A name-value pair. - - - - - - - - - - - - - - - - - - - - Name used in code to reference this persistence unit. - - - - - - - - - - - - Type of transactions used by EntityManagers from this - persistence unit. - - - - - - - - - - - - - - - - - - - public enum PersistenceUnitTransactionType {JTA, RESOURCE_LOCAL}; - - - - - - - - - - - - - - - - public enum SharedCacheMode { ALL, NONE, ENABLE_SELECTIVE, DISABLE_SELECTIVE, UNSPECIFIED}; - - - - - - - - - - - - - - - - - - - public enum ValidationMode { AUTO, CALLBACK, NONE}; - - - - - - - - - - - diff --git a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$1.class b/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$1.class deleted file mode 100644 index c672101f..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$CriteriaQueryTransformer$TupleImpl.class b/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$CriteriaQueryTransformer$TupleImpl.class deleted file mode 100644 index 08fac717..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$CriteriaQueryTransformer$TupleImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$CriteriaQueryTransformer.class b/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$CriteriaQueryTransformer.class deleted file mode 100644 index a4a28531..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$CriteriaQueryTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer$HqlTupleElementImpl.class b/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer$HqlTupleElementImpl.class deleted file mode 100644 index 020b3243..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer$HqlTupleElementImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer$HqlTupleImpl.class b/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer$HqlTupleImpl.class deleted file mode 100644 index 199c7354..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer$HqlTupleImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer.class b/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer.class deleted file mode 100644 index bb147d69..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl$TupleBuilderTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl.class b/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl.class deleted file mode 100644 index 377d9606..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractEntityManagerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/AbstractQueryImpl.class b/target/classes/org/hibernate/jpa/spi/AbstractQueryImpl.class deleted file mode 100644 index 585ea4e8..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/AbstractQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/BaseQueryImpl$ParameterBindImpl.class b/target/classes/org/hibernate/jpa/spi/BaseQueryImpl$ParameterBindImpl.class deleted file mode 100644 index 64ddcd90..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/BaseQueryImpl$ParameterBindImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/BaseQueryImpl.class b/target/classes/org/hibernate/jpa/spi/BaseQueryImpl.class deleted file mode 100644 index 0fd0c643..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/BaseQueryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerFactoryAware.class b/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerFactoryAware.class deleted file mode 100644 index b7a2c6b5..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerFactoryAware.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor$QueryOptions$ResultMetadataValidator.class b/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor$QueryOptions$ResultMetadataValidator.class deleted file mode 100644 index 7c4b9dd3..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor$QueryOptions$ResultMetadataValidator.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor$QueryOptions.class b/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor$QueryOptions.class deleted file mode 100644 index 2178aeae..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor$QueryOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor.class b/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor.class deleted file mode 100644 index 7bd8abbf..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/HibernateEntityManagerImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/IdentifierGeneratorStrategyProvider.class b/target/classes/org/hibernate/jpa/spi/IdentifierGeneratorStrategyProvider.class deleted file mode 100644 index c4350e58..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/IdentifierGeneratorStrategyProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/NullTypeBindableParameterRegistration.class b/target/classes/org/hibernate/jpa/spi/NullTypeBindableParameterRegistration.class deleted file mode 100644 index b4a30a92..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/NullTypeBindableParameterRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/ParameterBind.class b/target/classes/org/hibernate/jpa/spi/ParameterBind.class deleted file mode 100644 index 9969b3fd..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/ParameterBind.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/ParameterRegistration.class b/target/classes/org/hibernate/jpa/spi/ParameterRegistration.class deleted file mode 100644 index df0385ec..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/ParameterRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/jpa/spi/StoredProcedureQueryParameterRegistration.class b/target/classes/org/hibernate/jpa/spi/StoredProcedureQueryParameterRegistration.class deleted file mode 100644 index 2bd50484..00000000 Binary files a/target/classes/org/hibernate/jpa/spi/StoredProcedureQueryParameterRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/AbstractEntityJoinWalker.class b/target/classes/org/hibernate/loader/AbstractEntityJoinWalker.class deleted file mode 100644 index e048fe34..00000000 Binary files a/target/classes/org/hibernate/loader/AbstractEntityJoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/BasicLoader.class b/target/classes/org/hibernate/loader/BasicLoader.class deleted file mode 100644 index 3bb3b424..00000000 Binary files a/target/classes/org/hibernate/loader/BasicLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/BatchFetchStyle.class b/target/classes/org/hibernate/loader/BatchFetchStyle.class deleted file mode 100644 index 3eb4e8e9..00000000 Binary files a/target/classes/org/hibernate/loader/BatchFetchStyle.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/BatchLoadSizingStrategy.class b/target/classes/org/hibernate/loader/BatchLoadSizingStrategy.class deleted file mode 100644 index 12259d4d..00000000 Binary files a/target/classes/org/hibernate/loader/BatchLoadSizingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/CollectionAliases.class b/target/classes/org/hibernate/loader/CollectionAliases.class deleted file mode 100644 index 0f9ec0db..00000000 Binary files a/target/classes/org/hibernate/loader/CollectionAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/ColumnEntityAliases.class b/target/classes/org/hibernate/loader/ColumnEntityAliases.class deleted file mode 100644 index 9c2c7f74..00000000 Binary files a/target/classes/org/hibernate/loader/ColumnEntityAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/DefaultEntityAliases.class b/target/classes/org/hibernate/loader/DefaultEntityAliases.class deleted file mode 100644 index 5864c648..00000000 Binary files a/target/classes/org/hibernate/loader/DefaultEntityAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/EntityAliases.class b/target/classes/org/hibernate/loader/EntityAliases.class deleted file mode 100644 index 706797fc..00000000 Binary files a/target/classes/org/hibernate/loader/EntityAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/GeneratedCollectionAliases.class b/target/classes/org/hibernate/loader/GeneratedCollectionAliases.class deleted file mode 100644 index 5afb006d..00000000 Binary files a/target/classes/org/hibernate/loader/GeneratedCollectionAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/JoinWalker$1.class b/target/classes/org/hibernate/loader/JoinWalker$1.class deleted file mode 100644 index c9ba119e..00000000 Binary files a/target/classes/org/hibernate/loader/JoinWalker$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/JoinWalker$AssociationInitCallback$1.class b/target/classes/org/hibernate/loader/JoinWalker$AssociationInitCallback$1.class deleted file mode 100644 index 4dc655e0..00000000 Binary files a/target/classes/org/hibernate/loader/JoinWalker$AssociationInitCallback$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/JoinWalker$AssociationInitCallback.class b/target/classes/org/hibernate/loader/JoinWalker$AssociationInitCallback.class deleted file mode 100644 index 1264c723..00000000 Binary files a/target/classes/org/hibernate/loader/JoinWalker$AssociationInitCallback.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/JoinWalker$AssociationKey.class b/target/classes/org/hibernate/loader/JoinWalker$AssociationKey.class deleted file mode 100644 index ce22ad79..00000000 Binary files a/target/classes/org/hibernate/loader/JoinWalker$AssociationKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/JoinWalker.class b/target/classes/org/hibernate/loader/JoinWalker.class deleted file mode 100644 index eca49abb..00000000 Binary files a/target/classes/org/hibernate/loader/JoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/Loader$1.class b/target/classes/org/hibernate/loader/Loader$1.class deleted file mode 100644 index 3845711c..00000000 Binary files a/target/classes/org/hibernate/loader/Loader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/Loader$SqlStatementWrapper.class b/target/classes/org/hibernate/loader/Loader$SqlStatementWrapper.class deleted file mode 100644 index 1504947e..00000000 Binary files a/target/classes/org/hibernate/loader/Loader$SqlStatementWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/Loader.class b/target/classes/org/hibernate/loader/Loader.class deleted file mode 100644 index 2e6bf7ec..00000000 Binary files a/target/classes/org/hibernate/loader/Loader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/MultipleBagFetchException.class b/target/classes/org/hibernate/loader/MultipleBagFetchException.class deleted file mode 100644 index 9a1d29a2..00000000 Binary files a/target/classes/org/hibernate/loader/MultipleBagFetchException.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/OuterJoinLoader.class b/target/classes/org/hibernate/loader/OuterJoinLoader.class deleted file mode 100644 index a8c2952f..00000000 Binary files a/target/classes/org/hibernate/loader/OuterJoinLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/OuterJoinableAssociation.class b/target/classes/org/hibernate/loader/OuterJoinableAssociation.class deleted file mode 100644 index 480c18bb..00000000 Binary files a/target/classes/org/hibernate/loader/OuterJoinableAssociation.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/PropertyPath.class b/target/classes/org/hibernate/loader/PropertyPath.class deleted file mode 100644 index a1931736..00000000 Binary files a/target/classes/org/hibernate/loader/PropertyPath.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/BasicCollectionJoinWalker.class b/target/classes/org/hibernate/loader/collection/BasicCollectionJoinWalker.class deleted file mode 100644 index c706ea17..00000000 Binary files a/target/classes/org/hibernate/loader/collection/BasicCollectionJoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/BasicCollectionLoader.class b/target/classes/org/hibernate/loader/collection/BasicCollectionLoader.class deleted file mode 100644 index dffcc890..00000000 Binary files a/target/classes/org/hibernate/loader/collection/BasicCollectionLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializer.class b/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializer.class deleted file mode 100644 index 014fdabd..00000000 Binary files a/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializerBuilder$1.class b/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializerBuilder$1.class deleted file mode 100644 index 1f5d3b89..00000000 Binary files a/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializerBuilder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializerBuilder.class b/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializerBuilder.class deleted file mode 100644 index 13a04a06..00000000 Binary files a/target/classes/org/hibernate/loader/collection/BatchingCollectionInitializerBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/CollectionInitializer.class b/target/classes/org/hibernate/loader/collection/CollectionInitializer.class deleted file mode 100644 index 08ab2609..00000000 Binary files a/target/classes/org/hibernate/loader/collection/CollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/CollectionJoinWalker.class b/target/classes/org/hibernate/loader/collection/CollectionJoinWalker.class deleted file mode 100644 index 48ed028b..00000000 Binary files a/target/classes/org/hibernate/loader/collection/CollectionJoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/CollectionLoader.class b/target/classes/org/hibernate/loader/collection/CollectionLoader.class deleted file mode 100644 index d2c4c40f..00000000 Binary files a/target/classes/org/hibernate/loader/collection/CollectionLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionInitializer.class b/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionInitializer.class deleted file mode 100644 index 14f427c5..00000000 Binary files a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader$1.class b/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader$1.class deleted file mode 100644 index 802df4cd..00000000 Binary files a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader$2.class b/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader$2.class deleted file mode 100644 index 4bc3cdfb..00000000 Binary files a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader.class b/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader.class deleted file mode 100644 index 4bc8fb27..00000000 Binary files a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder$DynamicBatchingCollectionLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder.class b/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder.class deleted file mode 100644 index 6ce114df..00000000 Binary files a/target/classes/org/hibernate/loader/collection/DynamicBatchingCollectionInitializerBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.class b/target/classes/org/hibernate/loader/collection/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.class deleted file mode 100644 index 35e5f4ab..00000000 Binary files a/target/classes/org/hibernate/loader/collection/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/LegacyBatchingCollectionInitializerBuilder.class b/target/classes/org/hibernate/loader/collection/LegacyBatchingCollectionInitializerBuilder.class deleted file mode 100644 index 9eb4ab7c..00000000 Binary files a/target/classes/org/hibernate/loader/collection/LegacyBatchingCollectionInitializerBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/OneToManyJoinWalker.class b/target/classes/org/hibernate/loader/collection/OneToManyJoinWalker.class deleted file mode 100644 index 79e5b794..00000000 Binary files a/target/classes/org/hibernate/loader/collection/OneToManyJoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/OneToManyLoader.class b/target/classes/org/hibernate/loader/collection/OneToManyLoader.class deleted file mode 100644 index 8046d930..00000000 Binary files a/target/classes/org/hibernate/loader/collection/OneToManyLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/PaddedBatchingCollectionInitializerBuilder$PaddedBatchingCollectionInitializer.class b/target/classes/org/hibernate/loader/collection/PaddedBatchingCollectionInitializerBuilder$PaddedBatchingCollectionInitializer.class deleted file mode 100644 index dfce5e1a..00000000 Binary files a/target/classes/org/hibernate/loader/collection/PaddedBatchingCollectionInitializerBuilder$PaddedBatchingCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/PaddedBatchingCollectionInitializerBuilder.class b/target/classes/org/hibernate/loader/collection/PaddedBatchingCollectionInitializerBuilder.class deleted file mode 100644 index 84fdd9e9..00000000 Binary files a/target/classes/org/hibernate/loader/collection/PaddedBatchingCollectionInitializerBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/SubselectCollectionLoader.class b/target/classes/org/hibernate/loader/collection/SubselectCollectionLoader.class deleted file mode 100644 index 35ed7a37..00000000 Binary files a/target/classes/org/hibernate/loader/collection/SubselectCollectionLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/SubselectOneToManyLoader.class b/target/classes/org/hibernate/loader/collection/SubselectOneToManyLoader.class deleted file mode 100644 index e4a3d9d4..00000000 Binary files a/target/classes/org/hibernate/loader/collection/SubselectOneToManyLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/AbstractBatchingCollectionInitializerBuilder.class b/target/classes/org/hibernate/loader/collection/plan/AbstractBatchingCollectionInitializerBuilder.class deleted file mode 100644 index eff60423..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/AbstractBatchingCollectionInitializerBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/AbstractLoadPlanBasedCollectionInitializer.class b/target/classes/org/hibernate/loader/collection/plan/AbstractLoadPlanBasedCollectionInitializer.class deleted file mode 100644 index 12eabf66..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/AbstractLoadPlanBasedCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/BatchingCollectionInitializer.class b/target/classes/org/hibernate/loader/collection/plan/BatchingCollectionInitializer.class deleted file mode 100644 index aef44b59..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/BatchingCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$1.class b/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$1.class deleted file mode 100644 index a54f94c1..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$Builder$1.class b/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$Builder$1.class deleted file mode 100644 index 8a303369..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$Builder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$Builder.class b/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$Builder.class deleted file mode 100644 index d92858e5..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader.class b/target/classes/org/hibernate/loader/collection/plan/CollectionLoader.class deleted file mode 100644 index a3ba18fe..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/CollectionLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.class b/target/classes/org/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.class deleted file mode 100644 index 8a2457a6..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder$LegacyBatchingCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder.class b/target/classes/org/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder.class deleted file mode 100644 index de522b99..00000000 Binary files a/target/classes/org/hibernate/loader/collection/plan/LegacyBatchingCollectionInitializerBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/ComponentCollectionCriteriaInfoProvider.class b/target/classes/org/hibernate/loader/criteria/ComponentCollectionCriteriaInfoProvider.class deleted file mode 100644 index fda18926..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/ComponentCollectionCriteriaInfoProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/CriteriaInfoProvider.class b/target/classes/org/hibernate/loader/criteria/CriteriaInfoProvider.class deleted file mode 100644 index 606442d0..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/CriteriaInfoProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/CriteriaJoinWalker.class b/target/classes/org/hibernate/loader/criteria/CriteriaJoinWalker.class deleted file mode 100644 index 9454f1bf..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/CriteriaJoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/CriteriaLoader$1.class b/target/classes/org/hibernate/loader/criteria/CriteriaLoader$1.class deleted file mode 100644 index 8921c6cb..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/CriteriaLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/CriteriaLoader.class b/target/classes/org/hibernate/loader/criteria/CriteriaLoader.class deleted file mode 100644 index 2bb97fbf..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/CriteriaLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/CriteriaQueryTranslator.class b/target/classes/org/hibernate/loader/criteria/CriteriaQueryTranslator.class deleted file mode 100644 index d3e2a4e4..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/CriteriaQueryTranslator.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/EntityCriteriaInfoProvider.class b/target/classes/org/hibernate/loader/criteria/EntityCriteriaInfoProvider.class deleted file mode 100644 index 3377ca49..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/EntityCriteriaInfoProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/criteria/ScalarCollectionCriteriaInfoProvider.class b/target/classes/org/hibernate/loader/criteria/ScalarCollectionCriteriaInfoProvider.class deleted file mode 100644 index 31b5e56f..00000000 Binary files a/target/classes/org/hibernate/loader/criteria/ScalarCollectionCriteriaInfoProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/CollectionFetchReturn.class b/target/classes/org/hibernate/loader/custom/CollectionFetchReturn.class deleted file mode 100644 index 85df3fa1..00000000 Binary files a/target/classes/org/hibernate/loader/custom/CollectionFetchReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/CollectionReturn.class b/target/classes/org/hibernate/loader/custom/CollectionReturn.class deleted file mode 100644 index 5da5a2e3..00000000 Binary files a/target/classes/org/hibernate/loader/custom/CollectionReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/ColumnCollectionAliases.class b/target/classes/org/hibernate/loader/custom/ColumnCollectionAliases.class deleted file mode 100644 index 40b37099..00000000 Binary files a/target/classes/org/hibernate/loader/custom/ColumnCollectionAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/ConstructorResultColumnProcessor.class b/target/classes/org/hibernate/loader/custom/ConstructorResultColumnProcessor.class deleted file mode 100644 index ff4ea046..00000000 Binary files a/target/classes/org/hibernate/loader/custom/ConstructorResultColumnProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/ConstructorReturn.class b/target/classes/org/hibernate/loader/custom/ConstructorReturn.class deleted file mode 100644 index 22b0244c..00000000 Binary files a/target/classes/org/hibernate/loader/custom/ConstructorReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/CustomLoader$1.class b/target/classes/org/hibernate/loader/custom/CustomLoader$1.class deleted file mode 100644 index 3a291171..00000000 Binary files a/target/classes/org/hibernate/loader/custom/CustomLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/CustomLoader.class b/target/classes/org/hibernate/loader/custom/CustomLoader.class deleted file mode 100644 index 1c21e89e..00000000 Binary files a/target/classes/org/hibernate/loader/custom/CustomLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/CustomQuery.class b/target/classes/org/hibernate/loader/custom/CustomQuery.class deleted file mode 100644 index 377925aa..00000000 Binary files a/target/classes/org/hibernate/loader/custom/CustomQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/EntityFetchReturn.class b/target/classes/org/hibernate/loader/custom/EntityFetchReturn.class deleted file mode 100644 index 7511eb72..00000000 Binary files a/target/classes/org/hibernate/loader/custom/EntityFetchReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/FetchReturn.class b/target/classes/org/hibernate/loader/custom/FetchReturn.class deleted file mode 100644 index 06b2e196..00000000 Binary files a/target/classes/org/hibernate/loader/custom/FetchReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/JdbcResultMetadata.class b/target/classes/org/hibernate/loader/custom/JdbcResultMetadata.class deleted file mode 100644 index 6d700207..00000000 Binary files a/target/classes/org/hibernate/loader/custom/JdbcResultMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/NonScalarResultColumnProcessor.class b/target/classes/org/hibernate/loader/custom/NonScalarResultColumnProcessor.class deleted file mode 100644 index 75dd3f3a..00000000 Binary files a/target/classes/org/hibernate/loader/custom/NonScalarResultColumnProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/NonScalarReturn.class b/target/classes/org/hibernate/loader/custom/NonScalarReturn.class deleted file mode 100644 index ced1de1d..00000000 Binary files a/target/classes/org/hibernate/loader/custom/NonScalarReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/NonUniqueDiscoveredSqlAliasException.class b/target/classes/org/hibernate/loader/custom/NonUniqueDiscoveredSqlAliasException.class deleted file mode 100644 index 5ed5c2b6..00000000 Binary files a/target/classes/org/hibernate/loader/custom/NonUniqueDiscoveredSqlAliasException.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/ResultColumnProcessor.class b/target/classes/org/hibernate/loader/custom/ResultColumnProcessor.class deleted file mode 100644 index 43adf87c..00000000 Binary files a/target/classes/org/hibernate/loader/custom/ResultColumnProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/ResultRowProcessor.class b/target/classes/org/hibernate/loader/custom/ResultRowProcessor.class deleted file mode 100644 index 47fc24de..00000000 Binary files a/target/classes/org/hibernate/loader/custom/ResultRowProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/Return.class b/target/classes/org/hibernate/loader/custom/Return.class deleted file mode 100644 index 06d16440..00000000 Binary files a/target/classes/org/hibernate/loader/custom/Return.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/RootReturn.class b/target/classes/org/hibernate/loader/custom/RootReturn.class deleted file mode 100644 index 8ed89147..00000000 Binary files a/target/classes/org/hibernate/loader/custom/RootReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/ScalarResultColumnProcessor.class b/target/classes/org/hibernate/loader/custom/ScalarResultColumnProcessor.class deleted file mode 100644 index 8bee7a8b..00000000 Binary files a/target/classes/org/hibernate/loader/custom/ScalarResultColumnProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/ScalarReturn.class b/target/classes/org/hibernate/loader/custom/ScalarReturn.class deleted file mode 100644 index 11475afd..00000000 Binary files a/target/classes/org/hibernate/loader/custom/ScalarReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/sql/SQLCustomQuery$ParserContext.class b/target/classes/org/hibernate/loader/custom/sql/SQLCustomQuery$ParserContext.class deleted file mode 100644 index c16cfcf9..00000000 Binary files a/target/classes/org/hibernate/loader/custom/sql/SQLCustomQuery$ParserContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/sql/SQLCustomQuery.class b/target/classes/org/hibernate/loader/custom/sql/SQLCustomQuery.class deleted file mode 100644 index aeb3a02c..00000000 Binary files a/target/classes/org/hibernate/loader/custom/sql/SQLCustomQuery.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser$ParameterSubstitutionRecognizer.class b/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser$ParameterSubstitutionRecognizer.class deleted file mode 100644 index 71ada7ba..00000000 Binary files a/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser$ParameterSubstitutionRecognizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser$ParserContext.class b/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser$ParserContext.class deleted file mode 100644 index 3a867ea7..00000000 Binary files a/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser$ParserContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser.class b/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser.class deleted file mode 100644 index 878d7171..00000000 Binary files a/target/classes/org/hibernate/loader/custom/sql/SQLQueryParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/sql/SQLQueryReturnProcessor$ResultAliasContext.class b/target/classes/org/hibernate/loader/custom/sql/SQLQueryReturnProcessor$ResultAliasContext.class deleted file mode 100644 index 2227c524..00000000 Binary files a/target/classes/org/hibernate/loader/custom/sql/SQLQueryReturnProcessor$ResultAliasContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/custom/sql/SQLQueryReturnProcessor.class b/target/classes/org/hibernate/loader/custom/sql/SQLQueryReturnProcessor.class deleted file mode 100644 index 2149bae3..00000000 Binary files a/target/classes/org/hibernate/loader/custom/sql/SQLQueryReturnProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/AbstractEntityLoader.class b/target/classes/org/hibernate/loader/entity/AbstractEntityLoader.class deleted file mode 100644 index d807421a..00000000 Binary files a/target/classes/org/hibernate/loader/entity/AbstractEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/BatchingEntityLoader.class b/target/classes/org/hibernate/loader/entity/BatchingEntityLoader.class deleted file mode 100644 index 74c1c52b..00000000 Binary files a/target/classes/org/hibernate/loader/entity/BatchingEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/BatchingEntityLoaderBuilder$1.class b/target/classes/org/hibernate/loader/entity/BatchingEntityLoaderBuilder$1.class deleted file mode 100644 index fad34f49..00000000 Binary files a/target/classes/org/hibernate/loader/entity/BatchingEntityLoaderBuilder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/BatchingEntityLoaderBuilder.class b/target/classes/org/hibernate/loader/entity/BatchingEntityLoaderBuilder.class deleted file mode 100644 index 0ecd1431..00000000 Binary files a/target/classes/org/hibernate/loader/entity/BatchingEntityLoaderBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/CascadeEntityJoinWalker.class b/target/classes/org/hibernate/loader/entity/CascadeEntityJoinWalker.class deleted file mode 100644 index 3ef6c335..00000000 Binary files a/target/classes/org/hibernate/loader/entity/CascadeEntityJoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/CascadeEntityLoader.class b/target/classes/org/hibernate/loader/entity/CascadeEntityLoader.class deleted file mode 100644 index 107300fc..00000000 Binary files a/target/classes/org/hibernate/loader/entity/CascadeEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/CollectionElementLoader.class b/target/classes/org/hibernate/loader/entity/CollectionElementLoader.class deleted file mode 100644 index 3382dace..00000000 Binary files a/target/classes/org/hibernate/loader/entity/CollectionElementLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicBatchingEntityLoader.class b/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicBatchingEntityLoader.class deleted file mode 100644 index dfd8127a..00000000 Binary files a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicBatchingEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicEntityLoader$1.class b/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicEntityLoader$1.class deleted file mode 100644 index ed547271..00000000 Binary files a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicEntityLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicEntityLoader.class b/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicEntityLoader.class deleted file mode 100644 index c21c9bda..00000000 Binary files a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder$DynamicEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder.class b/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder.class deleted file mode 100644 index 3e4ed256..00000000 Binary files a/target/classes/org/hibernate/loader/entity/DynamicBatchingEntityLoaderBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/EntityJoinWalker$AssociationInitCallbackImpl.class b/target/classes/org/hibernate/loader/entity/EntityJoinWalker$AssociationInitCallbackImpl.class deleted file mode 100644 index f64503e1..00000000 Binary files a/target/classes/org/hibernate/loader/entity/EntityJoinWalker$AssociationInitCallbackImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/EntityJoinWalker.class b/target/classes/org/hibernate/loader/entity/EntityJoinWalker.class deleted file mode 100644 index 595e113a..00000000 Binary files a/target/classes/org/hibernate/loader/entity/EntityJoinWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/EntityLoader.class b/target/classes/org/hibernate/loader/entity/EntityLoader.class deleted file mode 100644 index 8836006a..00000000 Binary files a/target/classes/org/hibernate/loader/entity/EntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/LegacyBatchingEntityLoaderBuilder$LegacyBatchingEntityLoader.class b/target/classes/org/hibernate/loader/entity/LegacyBatchingEntityLoaderBuilder$LegacyBatchingEntityLoader.class deleted file mode 100644 index c161ed5c..00000000 Binary files a/target/classes/org/hibernate/loader/entity/LegacyBatchingEntityLoaderBuilder$LegacyBatchingEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/LegacyBatchingEntityLoaderBuilder.class b/target/classes/org/hibernate/loader/entity/LegacyBatchingEntityLoaderBuilder.class deleted file mode 100644 index e08d89dc..00000000 Binary files a/target/classes/org/hibernate/loader/entity/LegacyBatchingEntityLoaderBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/PaddedBatchingEntityLoaderBuilder$PaddedBatchingEntityLoader.class b/target/classes/org/hibernate/loader/entity/PaddedBatchingEntityLoaderBuilder$PaddedBatchingEntityLoader.class deleted file mode 100644 index 679c972a..00000000 Binary files a/target/classes/org/hibernate/loader/entity/PaddedBatchingEntityLoaderBuilder$PaddedBatchingEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/PaddedBatchingEntityLoaderBuilder.class b/target/classes/org/hibernate/loader/entity/PaddedBatchingEntityLoaderBuilder.class deleted file mode 100644 index c8b5a58f..00000000 Binary files a/target/classes/org/hibernate/loader/entity/PaddedBatchingEntityLoaderBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/UniqueEntityLoader.class b/target/classes/org/hibernate/loader/entity/UniqueEntityLoader.class deleted file mode 100644 index 6a37a392..00000000 Binary files a/target/classes/org/hibernate/loader/entity/UniqueEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/AbstractBatchingEntityLoaderBuilder.class b/target/classes/org/hibernate/loader/entity/plan/AbstractBatchingEntityLoaderBuilder.class deleted file mode 100644 index 401394de..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/AbstractBatchingEntityLoaderBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/AbstractLoadPlanBasedEntityLoader.class b/target/classes/org/hibernate/loader/entity/plan/AbstractLoadPlanBasedEntityLoader.class deleted file mode 100644 index 14b2e652..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/AbstractLoadPlanBasedEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/BatchingEntityLoader.class b/target/classes/org/hibernate/loader/entity/plan/BatchingEntityLoader.class deleted file mode 100644 index 73402011..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/BatchingEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/EntityLoader$1.class b/target/classes/org/hibernate/loader/entity/plan/EntityLoader$1.class deleted file mode 100644 index 8bfde346..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/EntityLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/EntityLoader$Builder$1.class b/target/classes/org/hibernate/loader/entity/plan/EntityLoader$Builder$1.class deleted file mode 100644 index 836eb359..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/EntityLoader$Builder$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/EntityLoader$Builder.class b/target/classes/org/hibernate/loader/entity/plan/EntityLoader$Builder.class deleted file mode 100644 index 51231e6c..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/EntityLoader$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/EntityLoader.class b/target/classes/org/hibernate/loader/entity/plan/EntityLoader.class deleted file mode 100644 index 82724f28..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/EntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/LegacyBatchingEntityLoaderBuilder$LegacyBatchingEntityLoader.class b/target/classes/org/hibernate/loader/entity/plan/LegacyBatchingEntityLoaderBuilder$LegacyBatchingEntityLoader.class deleted file mode 100644 index c60b9a28..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/LegacyBatchingEntityLoaderBuilder$LegacyBatchingEntityLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/entity/plan/LegacyBatchingEntityLoaderBuilder.class b/target/classes/org/hibernate/loader/entity/plan/LegacyBatchingEntityLoaderBuilder.class deleted file mode 100644 index c549c78d..00000000 Binary files a/target/classes/org/hibernate/loader/entity/plan/LegacyBatchingEntityLoaderBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/hql/QueryLoader.class b/target/classes/org/hibernate/loader/hql/QueryLoader.class deleted file mode 100644 index a6d0c300..00000000 Binary files a/target/classes/org/hibernate/loader/hql/QueryLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy$1.class b/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy$1.class deleted file mode 100644 index 82166821..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy$2.class b/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy$2.class deleted file mode 100644 index ca27252f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy.class b/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy.class deleted file mode 100644 index 69dfe4ee..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/AbstractEntityGraphVisitationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/AbstractLoadPlanBuildingAssociationVisitationStrategy$PropertyPathStack.class b/target/classes/org/hibernate/loader/plan/build/internal/AbstractLoadPlanBuildingAssociationVisitationStrategy$PropertyPathStack.class deleted file mode 100644 index 2049cf02..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/AbstractLoadPlanBuildingAssociationVisitationStrategy$PropertyPathStack.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/AbstractLoadPlanBuildingAssociationVisitationStrategy.class b/target/classes/org/hibernate/loader/plan/build/internal/AbstractLoadPlanBuildingAssociationVisitationStrategy.class deleted file mode 100644 index f272ecc5..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/AbstractLoadPlanBuildingAssociationVisitationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/CascadeStyleLoadPlanBuildingAssociationVisitationStrategy.class b/target/classes/org/hibernate/loader/plan/build/internal/CascadeStyleLoadPlanBuildingAssociationVisitationStrategy.class deleted file mode 100644 index c1f399a4..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/CascadeStyleLoadPlanBuildingAssociationVisitationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/FetchGraphLoadPlanBuildingStrategy.class b/target/classes/org/hibernate/loader/plan/build/internal/FetchGraphLoadPlanBuildingStrategy.class deleted file mode 100644 index e3e990c8..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/FetchGraphLoadPlanBuildingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/FetchStyleLoadPlanBuildingAssociationVisitationStrategy.class b/target/classes/org/hibernate/loader/plan/build/internal/FetchStyleLoadPlanBuildingAssociationVisitationStrategy.class deleted file mode 100644 index 6b86605f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/FetchStyleLoadPlanBuildingAssociationVisitationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/LoadGraphLoadPlanBuildingStrategy.class b/target/classes/org/hibernate/loader/plan/build/internal/LoadGraphLoadPlanBuildingStrategy.class deleted file mode 100644 index 170b30e7..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/LoadGraphLoadPlanBuildingStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/LoadPlanImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/LoadPlanImpl.class deleted file mode 100644 index e7913bfa..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/LoadPlanImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractAnyReference.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractAnyReference.class deleted file mode 100644 index d1b1f1be..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractAnyReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCollectionReference.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCollectionReference.class deleted file mode 100644 index 674b87dd..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCollectionReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeEntityIdentifierDescription.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeEntityIdentifierDescription.class deleted file mode 100644 index b0b478f8..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeEntityIdentifierDescription.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeFetch.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeFetch.class deleted file mode 100644 index 2cc6b37a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeReference.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeReference.class deleted file mode 100644 index f9081fb5..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractCompositeReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractEntityReference.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractEntityReference.class deleted file mode 100644 index 72f9f0b0..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractEntityReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractExpandingFetchSource.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractExpandingFetchSource.class deleted file mode 100644 index f9608985..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AbstractExpandingFetchSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/AnyAttributeFetchImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/AnyAttributeFetchImpl.class deleted file mode 100644 index 92213ae9..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/AnyAttributeFetchImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/BidirectionalEntityReferenceImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/BidirectionalEntityReferenceImpl.class deleted file mode 100644 index 9a7f8144..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/BidirectionalEntityReferenceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionAttributeFetchImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionAttributeFetchImpl.class deleted file mode 100644 index 26adf1b9..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionAttributeFetchImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementAnyGraph.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementAnyGraph.class deleted file mode 100644 index 5a5f1d24..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementAnyGraph.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementCompositeGraph.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementCompositeGraph.class deleted file mode 100644 index 6123b79a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementCompositeGraph.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementEntityGraph.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementEntityGraph.class deleted file mode 100644 index f3fc7db2..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableElementEntityGraph.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexAnyGraph.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexAnyGraph.class deleted file mode 100644 index b1a77b19..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexAnyGraph.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexCompositeGraph.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexCompositeGraph.class deleted file mode 100644 index a95a9a6a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexCompositeGraph.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexEntityGraph.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexEntityGraph.class deleted file mode 100644 index 38892a40..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionFetchableIndexEntityGraph.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionReturnImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionReturnImpl.class deleted file mode 100644 index 9c5cbf40..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CollectionReturnImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/CompositeAttributeFetchImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/CompositeAttributeFetchImpl.class deleted file mode 100644 index 63a2ad1c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/CompositeAttributeFetchImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/EncapsulatedEntityIdentifierDescription.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/EncapsulatedEntityIdentifierDescription.class deleted file mode 100644 index 624fafc3..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/EncapsulatedEntityIdentifierDescription.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/EntityAttributeFetchImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/EntityAttributeFetchImpl.class deleted file mode 100644 index 66a32bc8..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/EntityAttributeFetchImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/EntityReturnImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/EntityReturnImpl.class deleted file mode 100644 index 8ac3740c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/EntityReturnImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/NestedCompositeAttributeFetchImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/NestedCompositeAttributeFetchImpl.class deleted file mode 100644 index 9eec4e96..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/NestedCompositeAttributeFetchImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/NonEncapsulatedEntityIdentifierDescription.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/NonEncapsulatedEntityIdentifierDescription.class deleted file mode 100644 index 479df3cd..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/NonEncapsulatedEntityIdentifierDescription.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/ScalarReturnImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/ScalarReturnImpl.class deleted file mode 100644 index 0033a173..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/ScalarReturnImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/returns/SimpleEntityIdentifierDescriptionImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/returns/SimpleEntityIdentifierDescriptionImpl.class deleted file mode 100644 index 59bd041d..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/returns/SimpleEntityIdentifierDescriptionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/AbstractExpandingSourceQuerySpace.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/AbstractExpandingSourceQuerySpace.class deleted file mode 100644 index 47b1507d..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/AbstractExpandingSourceQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/AbstractQuerySpace.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/AbstractQuerySpace.class deleted file mode 100644 index b51ea269..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/AbstractQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/CollectionQuerySpaceImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/CollectionQuerySpaceImpl.class deleted file mode 100644 index 65f20a7a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/CollectionQuerySpaceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/CompositePropertyMapping.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/CompositePropertyMapping.class deleted file mode 100644 index ff628900..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/CompositePropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/CompositeQuerySpaceImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/CompositeQuerySpaceImpl.class deleted file mode 100644 index 2a6be9dd..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/CompositeQuerySpaceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/EntityQuerySpaceImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/EntityQuerySpaceImpl.class deleted file mode 100644 index c85768eb..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/EntityQuerySpaceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/JoinHelper.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/JoinHelper.class deleted file mode 100644 index 1b3baf66..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/JoinHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/JoinImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/JoinImpl.class deleted file mode 100644 index bab3e089..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/JoinImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/QuerySpaceHelper.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/QuerySpaceHelper.class deleted file mode 100644 index 4a50b7cd..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/QuerySpaceHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/internal/spaces/QuerySpacesImpl.class b/target/classes/org/hibernate/loader/plan/build/internal/spaces/QuerySpacesImpl.class deleted file mode 100644 index febdaaf3..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/internal/spaces/QuerySpacesImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingCollectionQuerySpace.class b/target/classes/org/hibernate/loader/plan/build/spi/ExpandingCollectionQuerySpace.class deleted file mode 100644 index ce918275..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingCollectionQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingCompositeQuerySpace.class b/target/classes/org/hibernate/loader/plan/build/spi/ExpandingCompositeQuerySpace.class deleted file mode 100644 index 1471b98c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingCompositeQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingEntityIdentifierDescription.class b/target/classes/org/hibernate/loader/plan/build/spi/ExpandingEntityIdentifierDescription.class deleted file mode 100644 index d265545d..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingEntityIdentifierDescription.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingEntityQuerySpace.class b/target/classes/org/hibernate/loader/plan/build/spi/ExpandingEntityQuerySpace.class deleted file mode 100644 index 82472e96..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingEntityQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingFetchSource.class b/target/classes/org/hibernate/loader/plan/build/spi/ExpandingFetchSource.class deleted file mode 100644 index c6e4285a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingFetchSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingQuerySpace.class b/target/classes/org/hibernate/loader/plan/build/spi/ExpandingQuerySpace.class deleted file mode 100644 index f4a37700..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingQuerySpaces.class b/target/classes/org/hibernate/loader/plan/build/spi/ExpandingQuerySpaces.class deleted file mode 100644 index 35312d40..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ExpandingQuerySpaces.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanBuildingAssociationVisitationStrategy.class b/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanBuildingAssociationVisitationStrategy.class deleted file mode 100644 index bd4c9c37..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanBuildingAssociationVisitationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanBuildingContext.class b/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanBuildingContext.class deleted file mode 100644 index 5e7f5a71..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanBuildingContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanTreePrinter$1.class b/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanTreePrinter$1.class deleted file mode 100644 index 63976a3e..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanTreePrinter$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanTreePrinter.class b/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanTreePrinter.class deleted file mode 100644 index 72827c7e..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/LoadPlanTreePrinter.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/MetamodelDrivenLoadPlanBuilder.class b/target/classes/org/hibernate/loader/plan/build/spi/MetamodelDrivenLoadPlanBuilder.class deleted file mode 100644 index 1c10b454..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/MetamodelDrivenLoadPlanBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/QuerySpaceTreePrinter.class b/target/classes/org/hibernate/loader/plan/build/spi/QuerySpaceTreePrinter.class deleted file mode 100644 index 8017d507..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/QuerySpaceTreePrinter.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/ReturnGraphTreePrinter.class b/target/classes/org/hibernate/loader/plan/build/spi/ReturnGraphTreePrinter.class deleted file mode 100644 index 226416c4..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/ReturnGraphTreePrinter.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/build/spi/TreePrinterHelper.class b/target/classes/org/hibernate/loader/plan/build/spi/TreePrinterHelper.class deleted file mode 100644 index fd5bc7cf..00000000 Binary files a/target/classes/org/hibernate/loader/plan/build/spi/TreePrinterHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails$CollectionLoaderReaderCollectorImpl.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails$CollectionLoaderReaderCollectorImpl.class deleted file mode 100644 index 7b93851f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails$CollectionLoaderReaderCollectorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails$CollectionLoaderRowReader.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails$CollectionLoaderRowReader.class deleted file mode 100644 index 6c55ffc8..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails$CollectionLoaderRowReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails.class deleted file mode 100644 index 0462ab82..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractCollectionLoadQueryDetails.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader$1.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader$1.class deleted file mode 100644 index d79fef86..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader$SqlStatementWrapper.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader$SqlStatementWrapper.class deleted file mode 100644 index 2abc0d3e..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader$SqlStatementWrapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader.class deleted file mode 100644 index 293b3737..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadPlanBasedLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadQueryDetails$ReaderCollectorImpl.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadQueryDetails$ReaderCollectorImpl.class deleted file mode 100644 index 4883e7d8..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadQueryDetails$ReaderCollectorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadQueryDetails.class b/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadQueryDetails.class deleted file mode 100644 index 7c01da9a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AbstractLoadQueryDetails.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/AliasResolutionContextImpl.class b/target/classes/org/hibernate/loader/plan/exec/internal/AliasResolutionContextImpl.class deleted file mode 100644 index 013d9f3f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/AliasResolutionContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/BasicCollectionLoadQueryDetails.class b/target/classes/org/hibernate/loader/plan/exec/internal/BasicCollectionLoadQueryDetails.class deleted file mode 100644 index 3af3997b..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/BasicCollectionLoadQueryDetails.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/BatchingLoadQueryDetailsFactory.class b/target/classes/org/hibernate/loader/plan/exec/internal/BatchingLoadQueryDetailsFactory.class deleted file mode 100644 index 38e3615c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/BatchingLoadQueryDetailsFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/CollectionReferenceAliasesImpl.class b/target/classes/org/hibernate/loader/plan/exec/internal/CollectionReferenceAliasesImpl.class deleted file mode 100644 index e4d72ecb..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/CollectionReferenceAliasesImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails$EntityLoaderReaderCollectorImpl.class b/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails$EntityLoaderReaderCollectorImpl.class deleted file mode 100644 index d93c0ec5..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails$EntityLoaderReaderCollectorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails$EntityLoaderRowReader.class b/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails$EntityLoaderRowReader.class deleted file mode 100644 index f82bcbc0..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails$EntityLoaderRowReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails.class b/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails.class deleted file mode 100644 index 40729ce1..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/EntityLoadQueryDetails.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/EntityReferenceAliasesImpl.class b/target/classes/org/hibernate/loader/plan/exec/internal/EntityReferenceAliasesImpl.class deleted file mode 100644 index f1fcdfe0..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/EntityReferenceAliasesImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/FetchStats.class b/target/classes/org/hibernate/loader/plan/exec/internal/FetchStats.class deleted file mode 100644 index 6b668ec9..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/FetchStats.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor$1.class b/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor$1.class deleted file mode 100644 index f89c74ae..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor$FetchStatsImpl.class b/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor$FetchStatsImpl.class deleted file mode 100644 index 952abaeb..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor$FetchStatsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor.class b/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor.class deleted file mode 100644 index cb30a1ba..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/LoadQueryJoinAndFetchProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/OneToManyLoadQueryDetails.class b/target/classes/org/hibernate/loader/plan/exec/internal/OneToManyLoadQueryDetails.class deleted file mode 100644 index 2914563b..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/OneToManyLoadQueryDetails.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/internal/RootHelper.class b/target/classes/org/hibernate/loader/plan/exec/internal/RootHelper.class deleted file mode 100644 index ee7da530..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/internal/RootHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/AbstractRowReader.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/AbstractRowReader.class deleted file mode 100644 index cdbbf430..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/AbstractRowReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/CollectionReferenceInitializerImpl.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/CollectionReferenceInitializerImpl.class deleted file mode 100644 index 6b85ced7..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/CollectionReferenceInitializerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/CollectionReturnReader.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/CollectionReturnReader.class deleted file mode 100644 index a3ab91d7..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/CollectionReturnReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/EntityReferenceInitializerImpl.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/EntityReferenceInitializerImpl.class deleted file mode 100644 index 67ab520c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/EntityReferenceInitializerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/EntityReturnReader.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/EntityReturnReader.class deleted file mode 100644 index 288a3bb4..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/EntityReturnReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/HydratedEntityRegistration.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/HydratedEntityRegistration.class deleted file mode 100644 index d713c821..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/HydratedEntityRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessingContextImpl$1.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessingContextImpl$1.class deleted file mode 100644 index 2861c74e..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessingContextImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessingContextImpl.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessingContextImpl.class deleted file mode 100644 index ba573937..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessingContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessorHelper.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessorHelper.class deleted file mode 100644 index 9bf3b36e..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessorHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessorImpl.class b/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessorImpl.class deleted file mode 100644 index a4f3d6c3..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/internal/ResultSetProcessorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/CollectionReferenceInitializer.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/CollectionReferenceInitializer.class deleted file mode 100644 index 736c935c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/CollectionReferenceInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/EntityReferenceInitializer.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/EntityReferenceInitializer.class deleted file mode 100644 index 7391ff07..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/EntityReferenceInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/ReaderCollector.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/ReaderCollector.class deleted file mode 100644 index c661e468..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/ReaderCollector.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext$EntityKeyResolutionContext.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext$EntityKeyResolutionContext.class deleted file mode 100644 index 764a93dc..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext$EntityKeyResolutionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext$EntityReferenceProcessingState.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext$EntityReferenceProcessingState.class deleted file mode 100644 index def1081f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext$EntityReferenceProcessingState.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext.class deleted file mode 100644 index bfc0f44e..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessingContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessor.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessor.class deleted file mode 100644 index 6bf5bbfb..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/ResultSetProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/ReturnReader.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/ReturnReader.class deleted file mode 100644 index f787d3d4..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/ReturnReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/RowReader.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/RowReader.class deleted file mode 100644 index 13521aaf..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/RowReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/process/spi/ScrollableResultSetProcessor.class b/target/classes/org/hibernate/loader/plan/exec/process/spi/ScrollableResultSetProcessor.class deleted file mode 100644 index f5827931..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/process/spi/ScrollableResultSetProcessor.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/query/internal/SelectStatementBuilder.class b/target/classes/org/hibernate/loader/plan/exec/query/internal/SelectStatementBuilder.class deleted file mode 100644 index 1010362c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/query/internal/SelectStatementBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/query/spi/NamedParameterContext.class b/target/classes/org/hibernate/loader/plan/exec/query/spi/NamedParameterContext.class deleted file mode 100644 index 9279689b..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/query/spi/NamedParameterContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/query/spi/QueryBuildingParameters.class b/target/classes/org/hibernate/loader/plan/exec/query/spi/QueryBuildingParameters.class deleted file mode 100644 index e90d7dc2..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/query/spi/QueryBuildingParameters.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/spi/AliasResolutionContext.class b/target/classes/org/hibernate/loader/plan/exec/spi/AliasResolutionContext.class deleted file mode 100644 index c78fdb4c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/spi/AliasResolutionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/spi/CollectionReferenceAliases.class b/target/classes/org/hibernate/loader/plan/exec/spi/CollectionReferenceAliases.class deleted file mode 100644 index fa865672..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/spi/CollectionReferenceAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/spi/EntityReferenceAliases.class b/target/classes/org/hibernate/loader/plan/exec/spi/EntityReferenceAliases.class deleted file mode 100644 index 4b046454..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/spi/EntityReferenceAliases.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/spi/LoadQueryDetails.class b/target/classes/org/hibernate/loader/plan/exec/spi/LoadQueryDetails.class deleted file mode 100644 index 467678ae..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/spi/LoadQueryDetails.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/exec/spi/LockModeResolver.class b/target/classes/org/hibernate/loader/plan/exec/spi/LockModeResolver.class deleted file mode 100644 index 27050146..00000000 Binary files a/target/classes/org/hibernate/loader/plan/exec/spi/LockModeResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/AnyAttributeFetch.class b/target/classes/org/hibernate/loader/plan/spi/AnyAttributeFetch.class deleted file mode 100644 index 8920418a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/AnyAttributeFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/AttributeFetch.class b/target/classes/org/hibernate/loader/plan/spi/AttributeFetch.class deleted file mode 100644 index 509f4184..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/AttributeFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/BidirectionalEntityReference.class b/target/classes/org/hibernate/loader/plan/spi/BidirectionalEntityReference.class deleted file mode 100644 index e63eaffd..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/BidirectionalEntityReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CollectionAttributeFetch.class b/target/classes/org/hibernate/loader/plan/spi/CollectionAttributeFetch.class deleted file mode 100644 index 27d9323e..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CollectionAttributeFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CollectionFetchableElement.class b/target/classes/org/hibernate/loader/plan/spi/CollectionFetchableElement.class deleted file mode 100644 index b1aed1b1..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CollectionFetchableElement.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CollectionFetchableIndex.class b/target/classes/org/hibernate/loader/plan/spi/CollectionFetchableIndex.class deleted file mode 100644 index ad20b8ec..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CollectionFetchableIndex.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CollectionQuerySpace.class b/target/classes/org/hibernate/loader/plan/spi/CollectionQuerySpace.class deleted file mode 100644 index 0b91086f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CollectionQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CollectionReference.class b/target/classes/org/hibernate/loader/plan/spi/CollectionReference.class deleted file mode 100644 index 74effdea..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CollectionReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CollectionReturn.class b/target/classes/org/hibernate/loader/plan/spi/CollectionReturn.class deleted file mode 100644 index cc1fe7ed..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CollectionReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CompositeAttributeFetch.class b/target/classes/org/hibernate/loader/plan/spi/CompositeAttributeFetch.class deleted file mode 100644 index 8b4ac7c4..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CompositeAttributeFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CompositeFetch.class b/target/classes/org/hibernate/loader/plan/spi/CompositeFetch.class deleted file mode 100644 index 5fb6bcac..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CompositeFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/CompositeQuerySpace.class b/target/classes/org/hibernate/loader/plan/spi/CompositeQuerySpace.class deleted file mode 100644 index 61361f98..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/CompositeQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/EntityFetch.class b/target/classes/org/hibernate/loader/plan/spi/EntityFetch.class deleted file mode 100644 index cccfa375..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/EntityFetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/EntityIdentifierDescription.class b/target/classes/org/hibernate/loader/plan/spi/EntityIdentifierDescription.class deleted file mode 100644 index 3505961f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/EntityIdentifierDescription.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/EntityQuerySpace.class b/target/classes/org/hibernate/loader/plan/spi/EntityQuerySpace.class deleted file mode 100644 index ef50e3a7..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/EntityQuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/EntityReference.class b/target/classes/org/hibernate/loader/plan/spi/EntityReference.class deleted file mode 100644 index 47effa2a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/EntityReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/EntityReturn.class b/target/classes/org/hibernate/loader/plan/spi/EntityReturn.class deleted file mode 100644 index c39e01a6..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/EntityReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/Fetch.class b/target/classes/org/hibernate/loader/plan/spi/Fetch.class deleted file mode 100644 index 4edd0353..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/Fetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/FetchSource.class b/target/classes/org/hibernate/loader/plan/spi/FetchSource.class deleted file mode 100644 index f9b4c7ed..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/FetchSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/Join.class b/target/classes/org/hibernate/loader/plan/spi/Join.class deleted file mode 100644 index 742c9254..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/Join.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/JoinDefinedByMetadata.class b/target/classes/org/hibernate/loader/plan/spi/JoinDefinedByMetadata.class deleted file mode 100644 index 53222442..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/JoinDefinedByMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/LoadPlan$Disposition.class b/target/classes/org/hibernate/loader/plan/spi/LoadPlan$Disposition.class deleted file mode 100644 index f189330a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/LoadPlan$Disposition.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/LoadPlan.class b/target/classes/org/hibernate/loader/plan/spi/LoadPlan.class deleted file mode 100644 index 033a4249..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/LoadPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/QuerySpace$Disposition.class b/target/classes/org/hibernate/loader/plan/spi/QuerySpace$Disposition.class deleted file mode 100644 index 5b1d0f6f..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/QuerySpace$Disposition.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/QuerySpace.class b/target/classes/org/hibernate/loader/plan/spi/QuerySpace.class deleted file mode 100644 index 7dec531a..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/QuerySpace.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/QuerySpaceUidNotRegisteredException.class b/target/classes/org/hibernate/loader/plan/spi/QuerySpaceUidNotRegisteredException.class deleted file mode 100644 index c9ee823d..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/QuerySpaceUidNotRegisteredException.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/QuerySpaces.class b/target/classes/org/hibernate/loader/plan/spi/QuerySpaces.class deleted file mode 100644 index c24c71d8..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/QuerySpaces.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/Return.class b/target/classes/org/hibernate/loader/plan/spi/Return.class deleted file mode 100644 index 3354f04c..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/Return.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/plan/spi/ScalarReturn.class b/target/classes/org/hibernate/loader/plan/spi/ScalarReturn.class deleted file mode 100644 index b54463f1..00000000 Binary files a/target/classes/org/hibernate/loader/plan/spi/ScalarReturn.class and /dev/null differ diff --git a/target/classes/org/hibernate/loader/spi/AfterLoadAction.class b/target/classes/org/hibernate/loader/spi/AfterLoadAction.class deleted file mode 100644 index 89e3a3ca..00000000 Binary files a/target/classes/org/hibernate/loader/spi/AfterLoadAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/lob/ReaderInputStream.class b/target/classes/org/hibernate/lob/ReaderInputStream.class deleted file mode 100644 index 9d5245bd..00000000 Binary files a/target/classes/org/hibernate/lob/ReaderInputStream.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Any.class b/target/classes/org/hibernate/mapping/Any.class deleted file mode 100644 index 7026c3dc..00000000 Binary files a/target/classes/org/hibernate/mapping/Any.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Array.class b/target/classes/org/hibernate/mapping/Array.class deleted file mode 100644 index 4cce1f81..00000000 Binary files a/target/classes/org/hibernate/mapping/Array.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/AttributeContainer.class b/target/classes/org/hibernate/mapping/AttributeContainer.class deleted file mode 100644 index b504be8b..00000000 Binary files a/target/classes/org/hibernate/mapping/AttributeContainer.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/AuxiliaryDatabaseObject.class b/target/classes/org/hibernate/mapping/AuxiliaryDatabaseObject.class deleted file mode 100644 index 5b388f36..00000000 Binary files a/target/classes/org/hibernate/mapping/AuxiliaryDatabaseObject.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Backref.class b/target/classes/org/hibernate/mapping/Backref.class deleted file mode 100644 index dbf2346f..00000000 Binary files a/target/classes/org/hibernate/mapping/Backref.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Bag.class b/target/classes/org/hibernate/mapping/Bag.class deleted file mode 100644 index 13a04ebd..00000000 Binary files a/target/classes/org/hibernate/mapping/Bag.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Collection.class b/target/classes/org/hibernate/mapping/Collection.class deleted file mode 100644 index 27a51e1d..00000000 Binary files a/target/classes/org/hibernate/mapping/Collection.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Column.class b/target/classes/org/hibernate/mapping/Column.class deleted file mode 100644 index 8b85fe54..00000000 Binary files a/target/classes/org/hibernate/mapping/Column.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Component$StandardGenerationContextLocator.class b/target/classes/org/hibernate/mapping/Component$StandardGenerationContextLocator.class deleted file mode 100644 index 6304bd9d..00000000 Binary files a/target/classes/org/hibernate/mapping/Component$StandardGenerationContextLocator.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Component$ValueGenerationPlan.class b/target/classes/org/hibernate/mapping/Component$ValueGenerationPlan.class deleted file mode 100644 index 3adfd998..00000000 Binary files a/target/classes/org/hibernate/mapping/Component$ValueGenerationPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Component.class b/target/classes/org/hibernate/mapping/Component.class deleted file mode 100644 index 9a9c7524..00000000 Binary files a/target/classes/org/hibernate/mapping/Component.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Constraint$ColumnComparator.class b/target/classes/org/hibernate/mapping/Constraint$ColumnComparator.class deleted file mode 100644 index 70dcc6f3..00000000 Binary files a/target/classes/org/hibernate/mapping/Constraint$ColumnComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Constraint.class b/target/classes/org/hibernate/mapping/Constraint.class deleted file mode 100644 index b9a7ddc4..00000000 Binary files a/target/classes/org/hibernate/mapping/Constraint.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/DenormalizedTable.class b/target/classes/org/hibernate/mapping/DenormalizedTable.class deleted file mode 100644 index c4597f25..00000000 Binary files a/target/classes/org/hibernate/mapping/DenormalizedTable.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/DependantValue.class b/target/classes/org/hibernate/mapping/DependantValue.class deleted file mode 100644 index cd40549e..00000000 Binary files a/target/classes/org/hibernate/mapping/DependantValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/FetchProfile$Fetch.class b/target/classes/org/hibernate/mapping/FetchProfile$Fetch.class deleted file mode 100644 index 6908f315..00000000 Binary files a/target/classes/org/hibernate/mapping/FetchProfile$Fetch.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/FetchProfile.class b/target/classes/org/hibernate/mapping/FetchProfile.class deleted file mode 100644 index 865978db..00000000 Binary files a/target/classes/org/hibernate/mapping/FetchProfile.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Fetchable.class b/target/classes/org/hibernate/mapping/Fetchable.class deleted file mode 100644 index 9c056130..00000000 Binary files a/target/classes/org/hibernate/mapping/Fetchable.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Filterable.class b/target/classes/org/hibernate/mapping/Filterable.class deleted file mode 100644 index fbd896fb..00000000 Binary files a/target/classes/org/hibernate/mapping/Filterable.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/ForeignKey.class b/target/classes/org/hibernate/mapping/ForeignKey.class deleted file mode 100644 index ea743909..00000000 Binary files a/target/classes/org/hibernate/mapping/ForeignKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Formula.class b/target/classes/org/hibernate/mapping/Formula.class deleted file mode 100644 index 7b7d6006..00000000 Binary files a/target/classes/org/hibernate/mapping/Formula.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/IdGenerator.class b/target/classes/org/hibernate/mapping/IdGenerator.class deleted file mode 100644 index c828e7f9..00000000 Binary files a/target/classes/org/hibernate/mapping/IdGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/IdentifierBag.class b/target/classes/org/hibernate/mapping/IdentifierBag.class deleted file mode 100644 index b31b44b9..00000000 Binary files a/target/classes/org/hibernate/mapping/IdentifierBag.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/IdentifierCollection.class b/target/classes/org/hibernate/mapping/IdentifierCollection.class deleted file mode 100644 index 340c2d14..00000000 Binary files a/target/classes/org/hibernate/mapping/IdentifierCollection.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Index.class b/target/classes/org/hibernate/mapping/Index.class deleted file mode 100644 index 28577692..00000000 Binary files a/target/classes/org/hibernate/mapping/Index.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/IndexBackref.class b/target/classes/org/hibernate/mapping/IndexBackref.class deleted file mode 100644 index 203eedec..00000000 Binary files a/target/classes/org/hibernate/mapping/IndexBackref.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/IndexedCollection.class b/target/classes/org/hibernate/mapping/IndexedCollection.class deleted file mode 100644 index 38f17f2b..00000000 Binary files a/target/classes/org/hibernate/mapping/IndexedCollection.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Join.class b/target/classes/org/hibernate/mapping/Join.class deleted file mode 100644 index fca4334f..00000000 Binary files a/target/classes/org/hibernate/mapping/Join.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/JoinedSubclass.class b/target/classes/org/hibernate/mapping/JoinedSubclass.class deleted file mode 100644 index 88126c2f..00000000 Binary files a/target/classes/org/hibernate/mapping/JoinedSubclass.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/KeyValue.class b/target/classes/org/hibernate/mapping/KeyValue.class deleted file mode 100644 index 3f5e782e..00000000 Binary files a/target/classes/org/hibernate/mapping/KeyValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/List.class b/target/classes/org/hibernate/mapping/List.class deleted file mode 100644 index 3ded9fac..00000000 Binary files a/target/classes/org/hibernate/mapping/List.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/ManyToOne.class b/target/classes/org/hibernate/mapping/ManyToOne.class deleted file mode 100644 index 9b679417..00000000 Binary files a/target/classes/org/hibernate/mapping/ManyToOne.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Map.class b/target/classes/org/hibernate/mapping/Map.class deleted file mode 100644 index 77e62a3b..00000000 Binary files a/target/classes/org/hibernate/mapping/Map.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/MappedSuperclass.class b/target/classes/org/hibernate/mapping/MappedSuperclass.class deleted file mode 100644 index 2980ddc0..00000000 Binary files a/target/classes/org/hibernate/mapping/MappedSuperclass.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/MetaAttributable.class b/target/classes/org/hibernate/mapping/MetaAttributable.class deleted file mode 100644 index 62d68731..00000000 Binary files a/target/classes/org/hibernate/mapping/MetaAttributable.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/MetaAttribute.class b/target/classes/org/hibernate/mapping/MetaAttribute.class deleted file mode 100644 index c7be8a3b..00000000 Binary files a/target/classes/org/hibernate/mapping/MetaAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/MetadataSource.class b/target/classes/org/hibernate/mapping/MetadataSource.class deleted file mode 100644 index 16f7bd96..00000000 Binary files a/target/classes/org/hibernate/mapping/MetadataSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/OneToMany.class b/target/classes/org/hibernate/mapping/OneToMany.class deleted file mode 100644 index d6815b9d..00000000 Binary files a/target/classes/org/hibernate/mapping/OneToMany.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/OneToOne.class b/target/classes/org/hibernate/mapping/OneToOne.class deleted file mode 100644 index e27ed80a..00000000 Binary files a/target/classes/org/hibernate/mapping/OneToOne.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/PersistentClass.class b/target/classes/org/hibernate/mapping/PersistentClass.class deleted file mode 100644 index d79bc50f..00000000 Binary files a/target/classes/org/hibernate/mapping/PersistentClass.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/PersistentClassVisitor.class b/target/classes/org/hibernate/mapping/PersistentClassVisitor.class deleted file mode 100644 index b549d4b3..00000000 Binary files a/target/classes/org/hibernate/mapping/PersistentClassVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/PrimaryKey.class b/target/classes/org/hibernate/mapping/PrimaryKey.class deleted file mode 100644 index 7feb166f..00000000 Binary files a/target/classes/org/hibernate/mapping/PrimaryKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/PrimitiveArray.class b/target/classes/org/hibernate/mapping/PrimitiveArray.class deleted file mode 100644 index 380941ee..00000000 Binary files a/target/classes/org/hibernate/mapping/PrimitiveArray.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Property.class b/target/classes/org/hibernate/mapping/Property.class deleted file mode 100644 index 4aab6345..00000000 Binary files a/target/classes/org/hibernate/mapping/Property.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/PropertyGeneration.class b/target/classes/org/hibernate/mapping/PropertyGeneration.class deleted file mode 100644 index bb6845fb..00000000 Binary files a/target/classes/org/hibernate/mapping/PropertyGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/RelationalModel.class b/target/classes/org/hibernate/mapping/RelationalModel.class deleted file mode 100644 index bab8e8d4..00000000 Binary files a/target/classes/org/hibernate/mapping/RelationalModel.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/RootClass.class b/target/classes/org/hibernate/mapping/RootClass.class deleted file mode 100644 index 2c827907..00000000 Binary files a/target/classes/org/hibernate/mapping/RootClass.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Selectable.class b/target/classes/org/hibernate/mapping/Selectable.class deleted file mode 100644 index 3de8f7c6..00000000 Binary files a/target/classes/org/hibernate/mapping/Selectable.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Set.class b/target/classes/org/hibernate/mapping/Set.class deleted file mode 100644 index 016d23f4..00000000 Binary files a/target/classes/org/hibernate/mapping/Set.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/SimpleValue$1.class b/target/classes/org/hibernate/mapping/SimpleValue$1.class deleted file mode 100644 index 81819ac2..00000000 Binary files a/target/classes/org/hibernate/mapping/SimpleValue$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/SimpleValue$ParameterTypeImpl.class b/target/classes/org/hibernate/mapping/SimpleValue$ParameterTypeImpl.class deleted file mode 100644 index 5885b16d..00000000 Binary files a/target/classes/org/hibernate/mapping/SimpleValue$ParameterTypeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/SimpleValue.class b/target/classes/org/hibernate/mapping/SimpleValue.class deleted file mode 100644 index dc91b52b..00000000 Binary files a/target/classes/org/hibernate/mapping/SimpleValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/SingleTableSubclass.class b/target/classes/org/hibernate/mapping/SingleTableSubclass.class deleted file mode 100644 index 02e7c7e9..00000000 Binary files a/target/classes/org/hibernate/mapping/SingleTableSubclass.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Subclass.class b/target/classes/org/hibernate/mapping/Subclass.class deleted file mode 100644 index 21f8699a..00000000 Binary files a/target/classes/org/hibernate/mapping/Subclass.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/SyntheticProperty.class b/target/classes/org/hibernate/mapping/SyntheticProperty.class deleted file mode 100644 index 9b411a1a..00000000 Binary files a/target/classes/org/hibernate/mapping/SyntheticProperty.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Table$ForeignKeyKey.class b/target/classes/org/hibernate/mapping/Table$ForeignKeyKey.class deleted file mode 100644 index f5ec64e4..00000000 Binary files a/target/classes/org/hibernate/mapping/Table$ForeignKeyKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Table.class b/target/classes/org/hibernate/mapping/Table.class deleted file mode 100644 index 1f3fa032..00000000 Binary files a/target/classes/org/hibernate/mapping/Table.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/TableOwner.class b/target/classes/org/hibernate/mapping/TableOwner.class deleted file mode 100644 index d2c3153e..00000000 Binary files a/target/classes/org/hibernate/mapping/TableOwner.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/ToOne.class b/target/classes/org/hibernate/mapping/ToOne.class deleted file mode 100644 index 72ac2df2..00000000 Binary files a/target/classes/org/hibernate/mapping/ToOne.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/TypeDef.class b/target/classes/org/hibernate/mapping/TypeDef.class deleted file mode 100644 index 9d472ad9..00000000 Binary files a/target/classes/org/hibernate/mapping/TypeDef.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/UnionSubclass.class b/target/classes/org/hibernate/mapping/UnionSubclass.class deleted file mode 100644 index a84639ca..00000000 Binary files a/target/classes/org/hibernate/mapping/UnionSubclass.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/UniqueKey.class b/target/classes/org/hibernate/mapping/UniqueKey.class deleted file mode 100644 index 3beb9b2c..00000000 Binary files a/target/classes/org/hibernate/mapping/UniqueKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/Value.class b/target/classes/org/hibernate/mapping/Value.class deleted file mode 100644 index 56833d37..00000000 Binary files a/target/classes/org/hibernate/mapping/Value.class and /dev/null differ diff --git a/target/classes/org/hibernate/mapping/ValueVisitor.class b/target/classes/org/hibernate/mapping/ValueVisitor.class deleted file mode 100644 index afe8876e..00000000 Binary files a/target/classes/org/hibernate/mapping/ValueVisitor.class and /dev/null differ diff --git a/target/classes/org/hibernate/metadata/ClassMetadata.class b/target/classes/org/hibernate/metadata/ClassMetadata.class deleted file mode 100644 index e1ce340c..00000000 Binary files a/target/classes/org/hibernate/metadata/ClassMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/metadata/CollectionMetadata.class b/target/classes/org/hibernate/metadata/CollectionMetadata.class deleted file mode 100644 index e2db989b..00000000 Binary files a/target/classes/org/hibernate/metadata/CollectionMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/AbstractExplicitParameterSpecification.class b/target/classes/org/hibernate/param/AbstractExplicitParameterSpecification.class deleted file mode 100644 index 610a1ffc..00000000 Binary files a/target/classes/org/hibernate/param/AbstractExplicitParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/CollectionFilterKeyParameterSpecification.class b/target/classes/org/hibernate/param/CollectionFilterKeyParameterSpecification.class deleted file mode 100644 index d1bfdf90..00000000 Binary files a/target/classes/org/hibernate/param/CollectionFilterKeyParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/DynamicFilterParameterSpecification.class b/target/classes/org/hibernate/param/DynamicFilterParameterSpecification.class deleted file mode 100644 index 74ce0c56..00000000 Binary files a/target/classes/org/hibernate/param/DynamicFilterParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/ExplicitParameterSpecification.class b/target/classes/org/hibernate/param/ExplicitParameterSpecification.class deleted file mode 100644 index 34f41989..00000000 Binary files a/target/classes/org/hibernate/param/ExplicitParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/NamedParameterSpecification.class b/target/classes/org/hibernate/param/NamedParameterSpecification.class deleted file mode 100644 index 741998cc..00000000 Binary files a/target/classes/org/hibernate/param/NamedParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/ParameterSpecification.class b/target/classes/org/hibernate/param/ParameterSpecification.class deleted file mode 100644 index 43492588..00000000 Binary files a/target/classes/org/hibernate/param/ParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/PositionalParameterSpecification.class b/target/classes/org/hibernate/param/PositionalParameterSpecification.class deleted file mode 100644 index 81927da4..00000000 Binary files a/target/classes/org/hibernate/param/PositionalParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/param/VersionTypeSeedParameterSpecification.class b/target/classes/org/hibernate/param/VersionTypeSeedParameterSpecification.class deleted file mode 100644 index f2b80939..00000000 Binary files a/target/classes/org/hibernate/param/VersionTypeSeedParameterSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$1$1.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$1$1.class deleted file mode 100644 index d6b6d45b..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$1.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$1.class deleted file mode 100644 index fe767c5a..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$2$1.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$2$1.class deleted file mode 100644 index 76372dd9..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$2.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$2.class deleted file mode 100644 index 7f6588d0..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl$1.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl$1.class deleted file mode 100644 index 5c81c4b7..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl$2.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl$2.class deleted file mode 100644 index a4764f76..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl.class deleted file mode 100644 index c0e5bc70..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$ColumnMapperImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$StandardOrderByAliasResolver.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$StandardOrderByAliasResolver.class deleted file mode 100644 index edf5c9fb..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister$StandardOrderByAliasResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister.class b/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister.class deleted file mode 100644 index 45ec1a66..00000000 Binary files a/target/classes/org/hibernate/persister/collection/AbstractCollectionPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/BasicCollectionPersister.class b/target/classes/org/hibernate/persister/collection/BasicCollectionPersister.class deleted file mode 100644 index 8335f52f..00000000 Binary files a/target/classes/org/hibernate/persister/collection/BasicCollectionPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/CollectionPersister.class b/target/classes/org/hibernate/persister/collection/CollectionPersister.class deleted file mode 100644 index 020b736a..00000000 Binary files a/target/classes/org/hibernate/persister/collection/CollectionPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/CollectionPropertyMapping.class b/target/classes/org/hibernate/persister/collection/CollectionPropertyMapping.class deleted file mode 100644 index f4f1153c..00000000 Binary files a/target/classes/org/hibernate/persister/collection/CollectionPropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/CollectionPropertyNames.class b/target/classes/org/hibernate/persister/collection/CollectionPropertyNames.class deleted file mode 100644 index c440ba58..00000000 Binary files a/target/classes/org/hibernate/persister/collection/CollectionPropertyNames.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/CompositeElementPropertyMapping.class b/target/classes/org/hibernate/persister/collection/CompositeElementPropertyMapping.class deleted file mode 100644 index 2a859b78..00000000 Binary files a/target/classes/org/hibernate/persister/collection/CompositeElementPropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/ElementPropertyMapping.class b/target/classes/org/hibernate/persister/collection/ElementPropertyMapping.class deleted file mode 100644 index 06eb9f44..00000000 Binary files a/target/classes/org/hibernate/persister/collection/ElementPropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/NamedQueryCollectionInitializer.class b/target/classes/org/hibernate/persister/collection/NamedQueryCollectionInitializer.class deleted file mode 100644 index 5cae9351..00000000 Binary files a/target/classes/org/hibernate/persister/collection/NamedQueryCollectionInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/OneToManyPersister.class b/target/classes/org/hibernate/persister/collection/OneToManyPersister.class deleted file mode 100644 index b8a6ac91..00000000 Binary files a/target/classes/org/hibernate/persister/collection/OneToManyPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/QueryableCollection.class b/target/classes/org/hibernate/persister/collection/QueryableCollection.class deleted file mode 100644 index d7665d28..00000000 Binary files a/target/classes/org/hibernate/persister/collection/QueryableCollection.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/collection/SQLLoadableCollection.class b/target/classes/org/hibernate/persister/collection/SQLLoadableCollection.class deleted file mode 100644 index 5d0b1bc7..00000000 Binary files a/target/classes/org/hibernate/persister/collection/SQLLoadableCollection.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$1.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$1.class deleted file mode 100644 index d3ac9424..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$2.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$2.class deleted file mode 100644 index f37c50ca..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$3.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$3.class deleted file mode 100644 index 68b477ea..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$4.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$4.class deleted file mode 100644 index 34a3e57e..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$CacheEntryHelper.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$CacheEntryHelper.class deleted file mode 100644 index 00506869..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$CacheEntryHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$InclusionChecker.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$InclusionChecker.class deleted file mode 100644 index 6c8d5093..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$InclusionChecker.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$NoopCacheEntryHelper.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$NoopCacheEntryHelper.class deleted file mode 100644 index d7568d98..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$NoopCacheEntryHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$ReferenceCacheEntryHelper.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$ReferenceCacheEntryHelper.class deleted file mode 100644 index b67461bb..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$ReferenceCacheEntryHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$StandardCacheEntryHelper.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$StandardCacheEntryHelper.class deleted file mode 100644 index 720d5edf..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$StandardCacheEntryHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$StructuredCacheEntryHelper.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$StructuredCacheEntryHelper.class deleted file mode 100644 index 6bafb6e5..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister$StructuredCacheEntryHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister.class b/target/classes/org/hibernate/persister/entity/AbstractEntityPersister.class deleted file mode 100644 index 67504536..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractEntityPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/AbstractPropertyMapping.class b/target/classes/org/hibernate/persister/entity/AbstractPropertyMapping.class deleted file mode 100644 index fda048a9..00000000 Binary files a/target/classes/org/hibernate/persister/entity/AbstractPropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/BasicEntityPropertyMapping.class b/target/classes/org/hibernate/persister/entity/BasicEntityPropertyMapping.class deleted file mode 100644 index 61f87275..00000000 Binary files a/target/classes/org/hibernate/persister/entity/BasicEntityPropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/DiscriminatorMetadata.class b/target/classes/org/hibernate/persister/entity/DiscriminatorMetadata.class deleted file mode 100644 index 5cf70697..00000000 Binary files a/target/classes/org/hibernate/persister/entity/DiscriminatorMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/DiscriminatorType.class b/target/classes/org/hibernate/persister/entity/DiscriminatorType.class deleted file mode 100644 index 3df4c0cb..00000000 Binary files a/target/classes/org/hibernate/persister/entity/DiscriminatorType.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/EntityPersister.class b/target/classes/org/hibernate/persister/entity/EntityPersister.class deleted file mode 100644 index bc7c5ee3..00000000 Binary files a/target/classes/org/hibernate/persister/entity/EntityPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/Joinable.class b/target/classes/org/hibernate/persister/entity/Joinable.class deleted file mode 100644 index aeac1835..00000000 Binary files a/target/classes/org/hibernate/persister/entity/Joinable.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/JoinedSubclassEntityPersister.class b/target/classes/org/hibernate/persister/entity/JoinedSubclassEntityPersister.class deleted file mode 100644 index 830f3eea..00000000 Binary files a/target/classes/org/hibernate/persister/entity/JoinedSubclassEntityPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/Loadable.class b/target/classes/org/hibernate/persister/entity/Loadable.class deleted file mode 100644 index 427ab5b4..00000000 Binary files a/target/classes/org/hibernate/persister/entity/Loadable.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/Lockable.class b/target/classes/org/hibernate/persister/entity/Lockable.class deleted file mode 100644 index a3e27562..00000000 Binary files a/target/classes/org/hibernate/persister/entity/Lockable.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/MultiLoadOptions.class b/target/classes/org/hibernate/persister/entity/MultiLoadOptions.class deleted file mode 100644 index 548d8009..00000000 Binary files a/target/classes/org/hibernate/persister/entity/MultiLoadOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/NamedQueryLoader.class b/target/classes/org/hibernate/persister/entity/NamedQueryLoader.class deleted file mode 100644 index ecf2a186..00000000 Binary files a/target/classes/org/hibernate/persister/entity/NamedQueryLoader.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/OuterJoinLoadable.class b/target/classes/org/hibernate/persister/entity/OuterJoinLoadable.class deleted file mode 100644 index 55cea6e2..00000000 Binary files a/target/classes/org/hibernate/persister/entity/OuterJoinLoadable.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/PropertyMapping.class b/target/classes/org/hibernate/persister/entity/PropertyMapping.class deleted file mode 100644 index 401dd221..00000000 Binary files a/target/classes/org/hibernate/persister/entity/PropertyMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/Queryable$Declarer.class b/target/classes/org/hibernate/persister/entity/Queryable$Declarer.class deleted file mode 100644 index 51a40b49..00000000 Binary files a/target/classes/org/hibernate/persister/entity/Queryable$Declarer.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/Queryable.class b/target/classes/org/hibernate/persister/entity/Queryable.class deleted file mode 100644 index 6f986d55..00000000 Binary files a/target/classes/org/hibernate/persister/entity/Queryable.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/SQLLoadable.class b/target/classes/org/hibernate/persister/entity/SQLLoadable.class deleted file mode 100644 index 3ef9c988..00000000 Binary files a/target/classes/org/hibernate/persister/entity/SQLLoadable.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/SingleTableEntityPersister.class b/target/classes/org/hibernate/persister/entity/SingleTableEntityPersister.class deleted file mode 100644 index 788a4861..00000000 Binary files a/target/classes/org/hibernate/persister/entity/SingleTableEntityPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/UnionSubclassEntityPersister.class b/target/classes/org/hibernate/persister/entity/UnionSubclassEntityPersister.class deleted file mode 100644 index ae7488fd..00000000 Binary files a/target/classes/org/hibernate/persister/entity/UnionSubclassEntityPersister.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/entity/UniqueKeyLoadable.class b/target/classes/org/hibernate/persister/entity/UniqueKeyLoadable.class deleted file mode 100644 index 4f2569d3..00000000 Binary files a/target/classes/org/hibernate/persister/entity/UniqueKeyLoadable.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/internal/PersisterClassResolverInitiator.class b/target/classes/org/hibernate/persister/internal/PersisterClassResolverInitiator.class deleted file mode 100644 index 366abe34..00000000 Binary files a/target/classes/org/hibernate/persister/internal/PersisterClassResolverInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/internal/PersisterFactoryImpl.class b/target/classes/org/hibernate/persister/internal/PersisterFactoryImpl.class deleted file mode 100644 index 2a11c6c3..00000000 Binary files a/target/classes/org/hibernate/persister/internal/PersisterFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/internal/PersisterFactoryInitiator.class b/target/classes/org/hibernate/persister/internal/PersisterFactoryInitiator.class deleted file mode 100644 index 48cdb312..00000000 Binary files a/target/classes/org/hibernate/persister/internal/PersisterFactoryInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/internal/StandardPersisterClassResolver.class b/target/classes/org/hibernate/persister/internal/StandardPersisterClassResolver.class deleted file mode 100644 index 62df6e66..00000000 Binary files a/target/classes/org/hibernate/persister/internal/StandardPersisterClassResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/spi/HydratedCompoundValueHandler.class b/target/classes/org/hibernate/persister/spi/HydratedCompoundValueHandler.class deleted file mode 100644 index 4b0960f5..00000000 Binary files a/target/classes/org/hibernate/persister/spi/HydratedCompoundValueHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/spi/PersisterClassResolver.class b/target/classes/org/hibernate/persister/spi/PersisterClassResolver.class deleted file mode 100644 index d76b32b8..00000000 Binary files a/target/classes/org/hibernate/persister/spi/PersisterClassResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/spi/PersisterCreationContext.class b/target/classes/org/hibernate/persister/spi/PersisterCreationContext.class deleted file mode 100644 index d8b997ab..00000000 Binary files a/target/classes/org/hibernate/persister/spi/PersisterCreationContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/spi/PersisterFactory.class b/target/classes/org/hibernate/persister/spi/PersisterFactory.class deleted file mode 100644 index 06b6c22f..00000000 Binary files a/target/classes/org/hibernate/persister/spi/PersisterFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/spi/UnknownPersisterException.class b/target/classes/org/hibernate/persister/spi/UnknownPersisterException.class deleted file mode 100644 index f15537ac..00000000 Binary files a/target/classes/org/hibernate/persister/spi/UnknownPersisterException.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$1.class b/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$1.class deleted file mode 100644 index cb7f4c7c..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$2.class b/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$2.class deleted file mode 100644 index 634b7460..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$3.class b/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$3.class deleted file mode 100644 index 6ad31cc3..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1.class b/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1.class deleted file mode 100644 index eaa99f6e..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1.class b/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1.class deleted file mode 100644 index 592299dd..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper.class b/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper.class deleted file mode 100644 index f4972257..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/CompositionSingularSubAttributesHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$1.class b/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$1.class deleted file mode 100644 index 5f53998a..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$2.class b/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$2.class deleted file mode 100644 index 572b0af5..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$3.class b/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$3.class deleted file mode 100644 index 96e82d1b..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$AttributeDefinitionAdapter.class b/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$AttributeDefinitionAdapter.class deleted file mode 100644 index 35dd689c..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$AttributeDefinitionAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$CompositionDefinitionAdapter.class b/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$CompositionDefinitionAdapter.class deleted file mode 100644 index 5d33d3c9..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper$CompositionDefinitionAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper.class b/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper.class deleted file mode 100644 index d0fa5b6a..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/EntityIdentifierDefinitionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/FetchStrategyHelper$1.class b/target/classes/org/hibernate/persister/walking/internal/FetchStrategyHelper$1.class deleted file mode 100644 index 897e4adb..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/FetchStrategyHelper$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/FetchStrategyHelper.class b/target/classes/org/hibernate/persister/walking/internal/FetchStrategyHelper.class deleted file mode 100644 index 88b4411a..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/FetchStrategyHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/StandardAnyTypeDefinition$1.class b/target/classes/org/hibernate/persister/walking/internal/StandardAnyTypeDefinition$1.class deleted file mode 100644 index 409e877a..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/StandardAnyTypeDefinition$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/internal/StandardAnyTypeDefinition.class b/target/classes/org/hibernate/persister/walking/internal/StandardAnyTypeDefinition.class deleted file mode 100644 index 6a734558..00000000 Binary files a/target/classes/org/hibernate/persister/walking/internal/StandardAnyTypeDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AnyMappingDefinition$DiscriminatorMapping.class b/target/classes/org/hibernate/persister/walking/spi/AnyMappingDefinition$DiscriminatorMapping.class deleted file mode 100644 index 71c152a6..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AnyMappingDefinition$DiscriminatorMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AnyMappingDefinition.class b/target/classes/org/hibernate/persister/walking/spi/AnyMappingDefinition.class deleted file mode 100644 index db791757..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AnyMappingDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AssociationAttributeDefinition$AssociationNature.class b/target/classes/org/hibernate/persister/walking/spi/AssociationAttributeDefinition$AssociationNature.class deleted file mode 100644 index f1c22f64..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AssociationAttributeDefinition$AssociationNature.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AssociationAttributeDefinition.class b/target/classes/org/hibernate/persister/walking/spi/AssociationAttributeDefinition.class deleted file mode 100644 index c8a71365..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AssociationAttributeDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AssociationKey.class b/target/classes/org/hibernate/persister/walking/spi/AssociationKey.class deleted file mode 100644 index 0d25af74..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AssociationKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AssociationVisitationStrategy.class b/target/classes/org/hibernate/persister/walking/spi/AssociationVisitationStrategy.class deleted file mode 100644 index 2d66e110..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AssociationVisitationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AttributeDefinition.class b/target/classes/org/hibernate/persister/walking/spi/AttributeDefinition.class deleted file mode 100644 index a9ddfed1..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AttributeDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/AttributeSource.class b/target/classes/org/hibernate/persister/walking/spi/AttributeSource.class deleted file mode 100644 index 6846b4b4..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/AttributeSource.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/CollectionDefinition.class b/target/classes/org/hibernate/persister/walking/spi/CollectionDefinition.class deleted file mode 100644 index b1b1ea40..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/CollectionDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/CollectionElementDefinition.class b/target/classes/org/hibernate/persister/walking/spi/CollectionElementDefinition.class deleted file mode 100644 index d031810a..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/CollectionElementDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/CollectionIndexDefinition.class b/target/classes/org/hibernate/persister/walking/spi/CollectionIndexDefinition.class deleted file mode 100644 index f8b19f44..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/CollectionIndexDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/CompositeCollectionElementDefinition.class b/target/classes/org/hibernate/persister/walking/spi/CompositeCollectionElementDefinition.class deleted file mode 100644 index 189adef2..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/CompositeCollectionElementDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/CompositionDefinition.class b/target/classes/org/hibernate/persister/walking/spi/CompositionDefinition.class deleted file mode 100644 index 58e3a919..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/CompositionDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/EncapsulatedEntityIdentifierDefinition.class b/target/classes/org/hibernate/persister/walking/spi/EncapsulatedEntityIdentifierDefinition.class deleted file mode 100644 index d5eeae6c..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/EncapsulatedEntityIdentifierDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/EntityDefinition.class b/target/classes/org/hibernate/persister/walking/spi/EntityDefinition.class deleted file mode 100644 index 5b177e1e..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/EntityDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/EntityIdentifierDefinition.class b/target/classes/org/hibernate/persister/walking/spi/EntityIdentifierDefinition.class deleted file mode 100644 index 472dd870..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/EntityIdentifierDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/MetamodelGraphWalker.class b/target/classes/org/hibernate/persister/walking/spi/MetamodelGraphWalker.class deleted file mode 100644 index c548de2b..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/MetamodelGraphWalker.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/NonEncapsulatedEntityIdentifierDefinition.class b/target/classes/org/hibernate/persister/walking/spi/NonEncapsulatedEntityIdentifierDefinition.class deleted file mode 100644 index 803896aa..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/NonEncapsulatedEntityIdentifierDefinition.class and /dev/null differ diff --git a/target/classes/org/hibernate/persister/walking/spi/WalkingException.class b/target/classes/org/hibernate/persister/walking/spi/WalkingException.class deleted file mode 100644 index 6bea1c07..00000000 Binary files a/target/classes/org/hibernate/persister/walking/spi/WalkingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/pretty/MessageHelper.class b/target/classes/org/hibernate/pretty/MessageHelper.class deleted file mode 100644 index 8cc47610..00000000 Binary files a/target/classes/org/hibernate/pretty/MessageHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/NamedParametersNotSupportedException.class b/target/classes/org/hibernate/procedure/NamedParametersNotSupportedException.class deleted file mode 100644 index e8225732..00000000 Binary files a/target/classes/org/hibernate/procedure/NamedParametersNotSupportedException.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/NoSuchParameterException.class b/target/classes/org/hibernate/procedure/NoSuchParameterException.class deleted file mode 100644 index 7fe569df..00000000 Binary files a/target/classes/org/hibernate/procedure/NoSuchParameterException.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/ParameterBind.class b/target/classes/org/hibernate/procedure/ParameterBind.class deleted file mode 100644 index 0925944f..00000000 Binary files a/target/classes/org/hibernate/procedure/ParameterBind.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/ParameterMisuseException.class b/target/classes/org/hibernate/procedure/ParameterMisuseException.class deleted file mode 100644 index b9dd8a74..00000000 Binary files a/target/classes/org/hibernate/procedure/ParameterMisuseException.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/ParameterRegistration.class b/target/classes/org/hibernate/procedure/ParameterRegistration.class deleted file mode 100644 index 301a906e..00000000 Binary files a/target/classes/org/hibernate/procedure/ParameterRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/ParameterStrategyException.class b/target/classes/org/hibernate/procedure/ParameterStrategyException.class deleted file mode 100644 index 6e348ded..00000000 Binary files a/target/classes/org/hibernate/procedure/ParameterStrategyException.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/ProcedureCall.class b/target/classes/org/hibernate/procedure/ProcedureCall.class deleted file mode 100644 index 361cf33e..00000000 Binary files a/target/classes/org/hibernate/procedure/ProcedureCall.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/ProcedureCallMemento.class b/target/classes/org/hibernate/procedure/ProcedureCallMemento.class deleted file mode 100644 index c1032eff..00000000 Binary files a/target/classes/org/hibernate/procedure/ProcedureCallMemento.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/ProcedureOutputs.class b/target/classes/org/hibernate/procedure/ProcedureOutputs.class deleted file mode 100644 index d0e83972..00000000 Binary files a/target/classes/org/hibernate/procedure/ProcedureOutputs.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/UnknownSqlResultSetMappingException.class b/target/classes/org/hibernate/procedure/UnknownSqlResultSetMappingException.class deleted file mode 100644 index 65b22d0b..00000000 Binary files a/target/classes/org/hibernate/procedure/UnknownSqlResultSetMappingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl$1.class b/target/classes/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl$1.class deleted file mode 100644 index a73f658b..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl.class b/target/classes/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl.class deleted file mode 100644 index da4d8fb9..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/NamedParameterRegistration.class b/target/classes/org/hibernate/procedure/internal/NamedParameterRegistration.class deleted file mode 100644 index 195dfbdf..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/NamedParameterRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ParameterBindImpl.class b/target/classes/org/hibernate/procedure/internal/ParameterBindImpl.class deleted file mode 100644 index a1878d54..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ParameterBindImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/PositionalParameterRegistration.class b/target/classes/org/hibernate/procedure/internal/PositionalParameterRegistration.class deleted file mode 100644 index f709d000..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/PositionalParameterRegistration.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/PostgresCallableStatementSupport.class b/target/classes/org/hibernate/procedure/internal/PostgresCallableStatementSupport.class deleted file mode 100644 index cfb7b1a5..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/PostgresCallableStatementSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl$1.class b/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl$1.class deleted file mode 100644 index 8daffe8b..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl$2.class b/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl$2.class deleted file mode 100644 index b7076004..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl.class b/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl.class deleted file mode 100644 index 6a4cbdf5..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureCallImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureCallMementoImpl$ParameterMemento.class b/target/classes/org/hibernate/procedure/internal/ProcedureCallMementoImpl$ParameterMemento.class deleted file mode 100644 index d05e3fe5..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureCallMementoImpl$ParameterMemento.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureCallMementoImpl.class b/target/classes/org/hibernate/procedure/internal/ProcedureCallMementoImpl.class deleted file mode 100644 index e2dbf957..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureCallMementoImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl$1.class b/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl$1.class deleted file mode 100644 index fe1141e5..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl$ProcedureCurrentReturnState.class b/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl$ProcedureCurrentReturnState.class deleted file mode 100644 index df012422..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl$ProcedureCurrentReturnState.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl.class b/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl.class deleted file mode 100644 index a8ba79dc..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/ProcedureOutputsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/StandardCallableStatementSupport.class b/target/classes/org/hibernate/procedure/internal/StandardCallableStatementSupport.class deleted file mode 100644 index 589169ae..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/StandardCallableStatementSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/Util$ResultClassesResolutionContext.class b/target/classes/org/hibernate/procedure/internal/Util$ResultClassesResolutionContext.class deleted file mode 100644 index ad7f77d4..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/Util$ResultClassesResolutionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/Util$ResultSetMappingResolutionContext.class b/target/classes/org/hibernate/procedure/internal/Util$ResultSetMappingResolutionContext.class deleted file mode 100644 index 619d01b8..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/Util$ResultSetMappingResolutionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/internal/Util.class b/target/classes/org/hibernate/procedure/internal/Util.class deleted file mode 100644 index 259ffe37..00000000 Binary files a/target/classes/org/hibernate/procedure/internal/Util.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/spi/CallableStatementSupport.class b/target/classes/org/hibernate/procedure/spi/CallableStatementSupport.class deleted file mode 100644 index 8d15828f..00000000 Binary files a/target/classes/org/hibernate/procedure/spi/CallableStatementSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/spi/ParameterRegistrationImplementor.class b/target/classes/org/hibernate/procedure/spi/ParameterRegistrationImplementor.class deleted file mode 100644 index 2f1904c3..00000000 Binary files a/target/classes/org/hibernate/procedure/spi/ParameterRegistrationImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/procedure/spi/ParameterStrategy.class b/target/classes/org/hibernate/procedure/spi/ParameterStrategy.class deleted file mode 100644 index 8097fe83..00000000 Binary files a/target/classes/org/hibernate/procedure/spi/ParameterStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/AbstractFieldSerialForm.class b/target/classes/org/hibernate/property/access/internal/AbstractFieldSerialForm.class deleted file mode 100644 index 768329be..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/AbstractFieldSerialForm.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessBasicImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessBasicImpl.class deleted file mode 100644 index d341f2ff..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessBasicImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl$GetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl$GetterImpl.class deleted file mode 100644 index c5d8c4db..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl$GetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl$SetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl$SetterImpl.class deleted file mode 100644 index 36beb658..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl$SetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl.class deleted file mode 100644 index ed76caf6..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessEmbeddedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessEnhancedImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessEnhancedImpl.class deleted file mode 100644 index b63bb462..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessEnhancedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessFieldImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessFieldImpl.class deleted file mode 100644 index dd687aae..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessFieldImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl$GetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl$GetterImpl.class deleted file mode 100644 index 13178a6f..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl$GetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl$SetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl$SetterImpl.class deleted file mode 100644 index 7de94107..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl$SetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl.class deleted file mode 100644 index 32baf52a..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessMapImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessMixedImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessMixedImpl.class deleted file mode 100644 index fa2e2eea..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessMixedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$1.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$1.class deleted file mode 100644 index e70a536e..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$GetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$GetterImpl.class deleted file mode 100644 index fb6eabd5..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$GetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$PropertyAccessBackRefImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$PropertyAccessBackRefImpl.class deleted file mode 100644 index c6278138..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$PropertyAccessBackRefImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$SetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$SetterImpl.class deleted file mode 100644 index 30233fcc..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl$SetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl.class deleted file mode 100644 index 84757215..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBackRefImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBasicImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBasicImpl.class deleted file mode 100644 index d4687b12..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyBasicImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyChainedImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyChainedImpl.class deleted file mode 100644 index 11085fad..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyChainedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyEmbeddedImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyEmbeddedImpl.class deleted file mode 100644 index 92ff6a70..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyEmbeddedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyEnhancedImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyEnhancedImpl.class deleted file mode 100644 index 842836cc..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyEnhancedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyFieldImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyFieldImpl.class deleted file mode 100644 index c91253c2..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyFieldImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$GetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$GetterImpl.class deleted file mode 100644 index a879f659..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$GetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$PropertyAccessIndexBackRefImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$PropertyAccessIndexBackRefImpl.class deleted file mode 100644 index d8fd51e1..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$PropertyAccessIndexBackRefImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$SetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$SetterImpl.class deleted file mode 100644 index 758d3e06..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl$SetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl.class deleted file mode 100644 index 54870d1c..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyIndexBackRefImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyMapImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyMapImpl.class deleted file mode 100644 index 10ecf709..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyMapImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyMixedImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyMixedImpl.class deleted file mode 100644 index efd88acd..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyMixedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$GetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$GetterImpl.class deleted file mode 100644 index 9d43cb2e..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$GetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$PropertyAccessNoopImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$PropertyAccessNoopImpl.class deleted file mode 100644 index 307d4c43..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$PropertyAccessNoopImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$SetterImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$SetterImpl.class deleted file mode 100644 index 503643ae..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl$SetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl.class deleted file mode 100644 index 455a01ad..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyNoopImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyResolverInitiator.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyResolverInitiator.class deleted file mode 100644 index 8942a811..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyResolverInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyResolverStandardImpl.class b/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyResolverStandardImpl.class deleted file mode 100644 index fdc22412..00000000 Binary files a/target/classes/org/hibernate/property/access/internal/PropertyAccessStrategyResolverStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/BuiltInPropertyAccessStrategies.class b/target/classes/org/hibernate/property/access/spi/BuiltInPropertyAccessStrategies.class deleted file mode 100644 index 6a4efa28..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/BuiltInPropertyAccessStrategies.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl$1.class b/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl$1.class deleted file mode 100644 index c157c3f4..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl$SerialForm.class b/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl$SerialForm.class deleted file mode 100644 index 55c5a4c7..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl$SerialForm.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl.class b/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl.class deleted file mode 100644 index 87e8638a..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/EnhancedGetterMethodImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl$1.class b/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl$1.class deleted file mode 100644 index e306a057..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl$SerialForm.class b/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl$SerialForm.class deleted file mode 100644 index 99a9231d..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl$SerialForm.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl.class b/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl.class deleted file mode 100644 index 3f61add1..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/EnhancedSetterImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/Getter.class b/target/classes/org/hibernate/property/access/spi/Getter.class deleted file mode 100644 index fdc5ea2f..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/Getter.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/GetterFieldImpl$1.class b/target/classes/org/hibernate/property/access/spi/GetterFieldImpl$1.class deleted file mode 100644 index 6b75e6ed..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/GetterFieldImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/GetterFieldImpl$SerialForm.class b/target/classes/org/hibernate/property/access/spi/GetterFieldImpl$SerialForm.class deleted file mode 100644 index d7956784..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/GetterFieldImpl$SerialForm.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/GetterFieldImpl.class b/target/classes/org/hibernate/property/access/spi/GetterFieldImpl.class deleted file mode 100644 index cdaf6550..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/GetterFieldImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/GetterMethodImpl$1.class b/target/classes/org/hibernate/property/access/spi/GetterMethodImpl$1.class deleted file mode 100644 index 7dd4dbd2..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/GetterMethodImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/GetterMethodImpl$SerialForm.class b/target/classes/org/hibernate/property/access/spi/GetterMethodImpl$SerialForm.class deleted file mode 100644 index 9b067ed9..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/GetterMethodImpl$SerialForm.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/GetterMethodImpl.class b/target/classes/org/hibernate/property/access/spi/GetterMethodImpl.class deleted file mode 100644 index 90b17e20..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/GetterMethodImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/PropertyAccess.class b/target/classes/org/hibernate/property/access/spi/PropertyAccess.class deleted file mode 100644 index 5bc97c69..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/PropertyAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/PropertyAccessBuildingException.class b/target/classes/org/hibernate/property/access/spi/PropertyAccessBuildingException.class deleted file mode 100644 index 32461cb3..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/PropertyAccessBuildingException.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/PropertyAccessException.class b/target/classes/org/hibernate/property/access/spi/PropertyAccessException.class deleted file mode 100644 index f6022186..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/PropertyAccessException.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/PropertyAccessSerializationException.class b/target/classes/org/hibernate/property/access/spi/PropertyAccessSerializationException.class deleted file mode 100644 index 1b6af885..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/PropertyAccessSerializationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/PropertyAccessStrategy.class b/target/classes/org/hibernate/property/access/spi/PropertyAccessStrategy.class deleted file mode 100644 index a91ea39c..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/PropertyAccessStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/PropertyAccessStrategyResolver.class b/target/classes/org/hibernate/property/access/spi/PropertyAccessStrategyResolver.class deleted file mode 100644 index 7a0d262f..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/PropertyAccessStrategyResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/Setter.class b/target/classes/org/hibernate/property/access/spi/Setter.class deleted file mode 100644 index 84ee9d75..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/Setter.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/SetterFieldImpl$1.class b/target/classes/org/hibernate/property/access/spi/SetterFieldImpl$1.class deleted file mode 100644 index 1a206a29..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/SetterFieldImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/SetterFieldImpl$SerialForm.class b/target/classes/org/hibernate/property/access/spi/SetterFieldImpl$SerialForm.class deleted file mode 100644 index fb8c62e4..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/SetterFieldImpl$SerialForm.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/SetterFieldImpl.class b/target/classes/org/hibernate/property/access/spi/SetterFieldImpl.class deleted file mode 100644 index 14064a49..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/SetterFieldImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/SetterMethodImpl$1.class b/target/classes/org/hibernate/property/access/spi/SetterMethodImpl$1.class deleted file mode 100644 index 6a999d4a..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/SetterMethodImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/SetterMethodImpl$SerialForm.class b/target/classes/org/hibernate/property/access/spi/SetterMethodImpl$SerialForm.class deleted file mode 100644 index 201eef80..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/SetterMethodImpl$SerialForm.class and /dev/null differ diff --git a/target/classes/org/hibernate/property/access/spi/SetterMethodImpl.class b/target/classes/org/hibernate/property/access/spi/SetterMethodImpl.class deleted file mode 100644 index 97fbcb1f..00000000 Binary files a/target/classes/org/hibernate/property/access/spi/SetterMethodImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/AbstractLazyInitializer.class b/target/classes/org/hibernate/proxy/AbstractLazyInitializer.class deleted file mode 100644 index 939231e1..00000000 Binary files a/target/classes/org/hibernate/proxy/AbstractLazyInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/AbstractSerializableProxy.class b/target/classes/org/hibernate/proxy/AbstractSerializableProxy.class deleted file mode 100644 index 9707b1df..00000000 Binary files a/target/classes/org/hibernate/proxy/AbstractSerializableProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/EntityNotFoundDelegate.class b/target/classes/org/hibernate/proxy/EntityNotFoundDelegate.class deleted file mode 100644 index 123613ae..00000000 Binary files a/target/classes/org/hibernate/proxy/EntityNotFoundDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/HibernateProxy.class b/target/classes/org/hibernate/proxy/HibernateProxy.class deleted file mode 100644 index 3010ea45..00000000 Binary files a/target/classes/org/hibernate/proxy/HibernateProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/HibernateProxyHelper.class b/target/classes/org/hibernate/proxy/HibernateProxyHelper.class deleted file mode 100644 index 0bb25c05..00000000 Binary files a/target/classes/org/hibernate/proxy/HibernateProxyHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/LazyInitializer.class b/target/classes/org/hibernate/proxy/LazyInitializer.class deleted file mode 100644 index 8761b32f..00000000 Binary files a/target/classes/org/hibernate/proxy/LazyInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/ProxyFactory.class b/target/classes/org/hibernate/proxy/ProxyFactory.class deleted file mode 100644 index 3740e0dd..00000000 Binary files a/target/classes/org/hibernate/proxy/ProxyFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/map/MapLazyInitializer.class b/target/classes/org/hibernate/proxy/map/MapLazyInitializer.class deleted file mode 100644 index 6667e98b..00000000 Binary files a/target/classes/org/hibernate/proxy/map/MapLazyInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/map/MapProxy.class b/target/classes/org/hibernate/proxy/map/MapProxy.class deleted file mode 100644 index 98b3db1a..00000000 Binary files a/target/classes/org/hibernate/proxy/map/MapProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/map/MapProxyFactory.class b/target/classes/org/hibernate/proxy/map/MapProxyFactory.class deleted file mode 100644 index ec54b626..00000000 Binary files a/target/classes/org/hibernate/proxy/map/MapProxyFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/pojo/BasicLazyInitializer.class b/target/classes/org/hibernate/proxy/pojo/BasicLazyInitializer.class deleted file mode 100644 index 8ae44b63..00000000 Binary files a/target/classes/org/hibernate/proxy/pojo/BasicLazyInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer.class b/target/classes/org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer.class deleted file mode 100644 index 63e706ac..00000000 Binary files a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistLazyInitializer.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory$1.class b/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory$1.class deleted file mode 100644 index a7933f74..00000000 Binary files a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory$2.class b/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory$2.class deleted file mode 100644 index 3bcc8e03..00000000 Binary files a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory.class b/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory.class deleted file mode 100644 index 0a28e4fd..00000000 Binary files a/target/classes/org/hibernate/proxy/pojo/javassist/JavassistProxyFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/proxy/pojo/javassist/SerializableProxy.class b/target/classes/org/hibernate/proxy/pojo/javassist/SerializableProxy.class deleted file mode 100644 index 67bc4cfe..00000000 Binary files a/target/classes/org/hibernate/proxy/pojo/javassist/SerializableProxy.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/LogicalConnection.class b/target/classes/org/hibernate/resource/jdbc/LogicalConnection.class deleted file mode 100644 index 3ce21d93..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/LogicalConnection.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/ResourceRegistry.class b/target/classes/org/hibernate/resource/jdbc/ResourceRegistry.class deleted file mode 100644 index f4fc2be2..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/ResourceRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/internal/AbstractLogicalConnectionImplementor.class b/target/classes/org/hibernate/resource/jdbc/internal/AbstractLogicalConnectionImplementor.class deleted file mode 100644 index f9693d49..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/internal/AbstractLogicalConnectionImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/internal/LogicalConnectionManagedImpl.class b/target/classes/org/hibernate/resource/jdbc/internal/LogicalConnectionManagedImpl.class deleted file mode 100644 index 531ce51e..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/internal/LogicalConnectionManagedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/internal/LogicalConnectionProvidedImpl.class b/target/classes/org/hibernate/resource/jdbc/internal/LogicalConnectionProvidedImpl.class deleted file mode 100644 index 6f06f5c5..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/internal/LogicalConnectionProvidedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/internal/ResourceRegistryStandardImpl.class b/target/classes/org/hibernate/resource/jdbc/internal/ResourceRegistryStandardImpl.class deleted file mode 100644 index e6670988..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/internal/ResourceRegistryStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/JdbcObserver.class b/target/classes/org/hibernate/resource/jdbc/spi/JdbcObserver.class deleted file mode 100644 index 75720359..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/JdbcObserver.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/JdbcSessionContext.class b/target/classes/org/hibernate/resource/jdbc/spi/JdbcSessionContext.class deleted file mode 100644 index 4f1e95ee..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/JdbcSessionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/JdbcSessionOwner.class b/target/classes/org/hibernate/resource/jdbc/spi/JdbcSessionOwner.class deleted file mode 100644 index e6d171ce..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/JdbcSessionOwner.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/LogicalConnectionImplementor.class b/target/classes/org/hibernate/resource/jdbc/spi/LogicalConnectionImplementor.class deleted file mode 100644 index ea961575..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/LogicalConnectionImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode$1.class b/target/classes/org/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode$1.class deleted file mode 100644 index 15dffff2..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode.class b/target/classes/org/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode.class deleted file mode 100644 index 3d8ceb98..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/PhysicalJdbcTransaction.class b/target/classes/org/hibernate/resource/jdbc/spi/PhysicalJdbcTransaction.class deleted file mode 100644 index da4846e2..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/PhysicalJdbcTransaction.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/jdbc/spi/StatementInspector.class b/target/classes/org/hibernate/resource/jdbc/spi/StatementInspector.class deleted file mode 100644 index 32b1fb33..00000000 Binary files a/target/classes/org/hibernate/resource/jdbc/spi/StatementInspector.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/LocalSynchronizationException.class b/target/classes/org/hibernate/resource/transaction/LocalSynchronizationException.class deleted file mode 100644 index 56256b6f..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/LocalSynchronizationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/NullSynchronizationException.class b/target/classes/org/hibernate/resource/transaction/NullSynchronizationException.class deleted file mode 100644 index 28629f9a..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/NullSynchronizationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/SynchronizationRegistry.class b/target/classes/org/hibernate/resource/transaction/SynchronizationRegistry.class deleted file mode 100644 index 7f03c754..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/SynchronizationRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/TransactionCoordinator$TransactionDriver.class b/target/classes/org/hibernate/resource/transaction/TransactionCoordinator$TransactionDriver.class deleted file mode 100644 index 801789dc..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/TransactionCoordinator$TransactionDriver.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/TransactionCoordinator.class b/target/classes/org/hibernate/resource/transaction/TransactionCoordinator.class deleted file mode 100644 index b5fea52d..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/TransactionCoordinator.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/TransactionCoordinatorBuilder$TransactionCoordinatorOptions.class b/target/classes/org/hibernate/resource/transaction/TransactionCoordinatorBuilder$TransactionCoordinatorOptions.class deleted file mode 100644 index ebb93a14..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/TransactionCoordinatorBuilder$TransactionCoordinatorOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/TransactionCoordinatorBuilder.class b/target/classes/org/hibernate/resource/transaction/TransactionCoordinatorBuilder.class deleted file mode 100644 index 01ef03ae..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/TransactionCoordinatorBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/TransactionRequiredForJoinException.class b/target/classes/org/hibernate/resource/transaction/TransactionRequiredForJoinException.class deleted file mode 100644 index 2678fd30..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/TransactionRequiredForJoinException.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcIsolationDelegate.class b/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcIsolationDelegate.class deleted file mode 100644 index 18350ba0..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcIsolationDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorBuilderImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorBuilderImpl.class deleted file mode 100644 index 4af9fec9..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.class deleted file mode 100644 index cd9b6442..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorImpl.class deleted file mode 100644 index c47a9a48..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jdbc/internal/JdbcResourceLocalTransactionCoordinatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jdbc/spi/JdbcResourceTransaction.class b/target/classes/org/hibernate/resource/transaction/backend/jdbc/spi/JdbcResourceTransaction.class deleted file mode 100644 index fb2356a3..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jdbc/spi/JdbcResourceTransaction.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jdbc/spi/JdbcResourceTransactionAccess.class b/target/classes/org/hibernate/resource/transaction/backend/jdbc/spi/JdbcResourceTransactionAccess.class deleted file mode 100644 index 8b231983..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jdbc/spi/JdbcResourceTransactionAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$1$1.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$1$1.class deleted file mode 100644 index 75bc31c1..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$1.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$1.class deleted file mode 100644 index 0815207f..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$2$1.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$2$1.class deleted file mode 100644 index fc84a4d1..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$2.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$2.class deleted file mode 100644 index a90eb1da..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$HibernateCallable.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$HibernateCallable.class deleted file mode 100644 index 300e5682..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate$HibernateCallable.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate.class deleted file mode 100644 index f4f086c6..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaIsolationDelegate.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaPlatformInaccessibleException.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaPlatformInaccessibleException.class deleted file mode 100644 index 5c757337..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaPlatformInaccessibleException.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapter.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapter.class deleted file mode 100644 index 8b869277..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapterTransactionManagerImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapterTransactionManagerImpl.class deleted file mode 100644 index 2f14255f..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapterTransactionManagerImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapterUserTransactionImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapterUserTransactionImpl.class deleted file mode 100644 index 47b2949e..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionAdapterUserTransactionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorBuilderImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorBuilderImpl.class deleted file mode 100644 index 069a76b8..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorImpl$TransactionDriverControlImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorImpl$TransactionDriverControlImpl.class deleted file mode 100644 index 449b63cf..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorImpl$TransactionDriverControlImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorImpl.class deleted file mode 100644 index f5c2c1c6..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/JtaTransactionCoordinatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/StatusTranslator.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/StatusTranslator.class deleted file mode 100644 index 795217ce..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/StatusTranslator.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/AfterCompletionAction.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/AfterCompletionAction.class deleted file mode 100644 index 4ef415d5..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/AfterCompletionAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/ExceptionMapper.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/ExceptionMapper.class deleted file mode 100644 index 8ab53665..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/ExceptionMapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/ManagedFlushChecker.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/ManagedFlushChecker.class deleted file mode 100644 index 9926c960..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/ManagedFlushChecker.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/RegisteredSynchronization.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/RegisteredSynchronization.class deleted file mode 100644 index d7bbc71b..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/RegisteredSynchronization.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinator.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinator.class deleted file mode 100644 index a8b4d07b..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinator.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinatorNonTrackingImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinatorNonTrackingImpl.class deleted file mode 100644 index d587e7d4..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinatorNonTrackingImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinatorTrackingImpl.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinatorTrackingImpl.class deleted file mode 100644 index 96e37f3f..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackCoordinatorTrackingImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackTarget.class b/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackTarget.class deleted file mode 100644 index 3ea08de8..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/backend/jta/internal/synchronization/SynchronizationCallbackTarget.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/internal/SynchronizationRegistryStandardImpl.class b/target/classes/org/hibernate/resource/transaction/internal/SynchronizationRegistryStandardImpl.class deleted file mode 100644 index 8f71f6ce..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/internal/SynchronizationRegistryStandardImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/internal/TransactionCoordinatorBuilderInitiator.class b/target/classes/org/hibernate/resource/transaction/internal/TransactionCoordinatorBuilderInitiator.class deleted file mode 100644 index b7d78209..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/internal/TransactionCoordinatorBuilderInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/spi/SynchronizationRegistryImplementor.class b/target/classes/org/hibernate/resource/transaction/spi/SynchronizationRegistryImplementor.class deleted file mode 100644 index d5d5e439..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/spi/SynchronizationRegistryImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/spi/TransactionCoordinatorOwner.class b/target/classes/org/hibernate/resource/transaction/spi/TransactionCoordinatorOwner.class deleted file mode 100644 index bba5fb2b..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/spi/TransactionCoordinatorOwner.class and /dev/null differ diff --git a/target/classes/org/hibernate/resource/transaction/spi/TransactionStatus.class b/target/classes/org/hibernate/resource/transaction/spi/TransactionStatus.class deleted file mode 100644 index 7b030e41..00000000 Binary files a/target/classes/org/hibernate/resource/transaction/spi/TransactionStatus.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/NoMoreReturnsException.class b/target/classes/org/hibernate/result/NoMoreReturnsException.class deleted file mode 100644 index 051523f1..00000000 Binary files a/target/classes/org/hibernate/result/NoMoreReturnsException.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/Output.class b/target/classes/org/hibernate/result/Output.class deleted file mode 100644 index 05e716b2..00000000 Binary files a/target/classes/org/hibernate/result/Output.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/Outputs.class b/target/classes/org/hibernate/result/Outputs.class deleted file mode 100644 index caf7eaef..00000000 Binary files a/target/classes/org/hibernate/result/Outputs.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/ResultSetOutput.class b/target/classes/org/hibernate/result/ResultSetOutput.class deleted file mode 100644 index ae06c890..00000000 Binary files a/target/classes/org/hibernate/result/ResultSetOutput.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/UpdateCountOutput.class b/target/classes/org/hibernate/result/UpdateCountOutput.class deleted file mode 100644 index c44a3e79..00000000 Binary files a/target/classes/org/hibernate/result/UpdateCountOutput.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/internal/OutputsImpl$1.class b/target/classes/org/hibernate/result/internal/OutputsImpl$1.class deleted file mode 100644 index dec54b51..00000000 Binary files a/target/classes/org/hibernate/result/internal/OutputsImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/internal/OutputsImpl$CurrentReturnState.class b/target/classes/org/hibernate/result/internal/OutputsImpl$CurrentReturnState.class deleted file mode 100644 index a1306c4e..00000000 Binary files a/target/classes/org/hibernate/result/internal/OutputsImpl$CurrentReturnState.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/internal/OutputsImpl$CustomLoaderExtension.class b/target/classes/org/hibernate/result/internal/OutputsImpl$CustomLoaderExtension.class deleted file mode 100644 index 65a85d8a..00000000 Binary files a/target/classes/org/hibernate/result/internal/OutputsImpl$CustomLoaderExtension.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/internal/OutputsImpl.class b/target/classes/org/hibernate/result/internal/OutputsImpl.class deleted file mode 100644 index b69084c1..00000000 Binary files a/target/classes/org/hibernate/result/internal/OutputsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/internal/ResultSetOutputImpl.class b/target/classes/org/hibernate/result/internal/ResultSetOutputImpl.class deleted file mode 100644 index 38496182..00000000 Binary files a/target/classes/org/hibernate/result/internal/ResultSetOutputImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/internal/UpdateCountOutputImpl.class b/target/classes/org/hibernate/result/internal/UpdateCountOutputImpl.class deleted file mode 100644 index 39cb6c55..00000000 Binary files a/target/classes/org/hibernate/result/internal/UpdateCountOutputImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/result/spi/ResultContext.class b/target/classes/org/hibernate/result/spi/ResultContext.class deleted file mode 100644 index 4d70cc09..00000000 Binary files a/target/classes/org/hibernate/result/spi/ResultContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/AbstractJaccSecurableEventListener.class b/target/classes/org/hibernate/secure/internal/AbstractJaccSecurableEventListener.class deleted file mode 100644 index 46faa282..00000000 Binary files a/target/classes/org/hibernate/secure/internal/AbstractJaccSecurableEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/DisabledJaccServiceImpl.class b/target/classes/org/hibernate/secure/internal/DisabledJaccServiceImpl.class deleted file mode 100644 index 047d6c27..00000000 Binary files a/target/classes/org/hibernate/secure/internal/DisabledJaccServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/JaccPreDeleteEventListener.class b/target/classes/org/hibernate/secure/internal/JaccPreDeleteEventListener.class deleted file mode 100644 index f89ebb83..00000000 Binary files a/target/classes/org/hibernate/secure/internal/JaccPreDeleteEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/JaccPreInsertEventListener.class b/target/classes/org/hibernate/secure/internal/JaccPreInsertEventListener.class deleted file mode 100644 index 81d7bba3..00000000 Binary files a/target/classes/org/hibernate/secure/internal/JaccPreInsertEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/JaccPreLoadEventListener.class b/target/classes/org/hibernate/secure/internal/JaccPreLoadEventListener.class deleted file mode 100644 index 2ca43ddc..00000000 Binary files a/target/classes/org/hibernate/secure/internal/JaccPreLoadEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/JaccPreUpdateEventListener.class b/target/classes/org/hibernate/secure/internal/JaccPreUpdateEventListener.class deleted file mode 100644 index 5fc5b115..00000000 Binary files a/target/classes/org/hibernate/secure/internal/JaccPreUpdateEventListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/JaccSecurityListener.class b/target/classes/org/hibernate/secure/internal/JaccSecurityListener.class deleted file mode 100644 index 594cf831..00000000 Binary files a/target/classes/org/hibernate/secure/internal/JaccSecurityListener.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$1.class b/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$1.class deleted file mode 100644 index fc7608b3..00000000 Binary files a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$ContextIdSetAction.class b/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$ContextIdSetAction.class deleted file mode 100644 index 5f7d0ba5..00000000 Binary files a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$ContextIdSetAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$ContextSubjectAccess.class b/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$ContextSubjectAccess.class deleted file mode 100644 index 4a68f9d2..00000000 Binary files a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$ContextSubjectAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$NonPrivilegedContextSubjectAccess.class b/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$NonPrivilegedContextSubjectAccess.class deleted file mode 100644 index 0ea5bbec..00000000 Binary files a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$NonPrivilegedContextSubjectAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$PrivilegedContextSubjectAccess$1.class b/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$PrivilegedContextSubjectAccess$1.class deleted file mode 100644 index ac0cee29..00000000 Binary files a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$PrivilegedContextSubjectAccess$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$PrivilegedContextSubjectAccess.class b/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$PrivilegedContextSubjectAccess.class deleted file mode 100644 index 998daa18..00000000 Binary files a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl$PrivilegedContextSubjectAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl.class b/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl.class deleted file mode 100644 index 38397f18..00000000 Binary files a/target/classes/org/hibernate/secure/internal/StandardJaccServiceImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/GrantedPermission.class b/target/classes/org/hibernate/secure/spi/GrantedPermission.class deleted file mode 100644 index 32176632..00000000 Binary files a/target/classes/org/hibernate/secure/spi/GrantedPermission.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/IntegrationException.class b/target/classes/org/hibernate/secure/spi/IntegrationException.class deleted file mode 100644 index 6d1be833..00000000 Binary files a/target/classes/org/hibernate/secure/spi/IntegrationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/JaccIntegrator$1.class b/target/classes/org/hibernate/secure/spi/JaccIntegrator$1.class deleted file mode 100644 index 557f8edf..00000000 Binary files a/target/classes/org/hibernate/secure/spi/JaccIntegrator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/JaccIntegrator.class b/target/classes/org/hibernate/secure/spi/JaccIntegrator.class deleted file mode 100644 index 5c4015a0..00000000 Binary files a/target/classes/org/hibernate/secure/spi/JaccIntegrator.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/JaccPermissionDeclarations.class b/target/classes/org/hibernate/secure/spi/JaccPermissionDeclarations.class deleted file mode 100644 index f3a2e09c..00000000 Binary files a/target/classes/org/hibernate/secure/spi/JaccPermissionDeclarations.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/JaccService.class b/target/classes/org/hibernate/secure/spi/JaccService.class deleted file mode 100644 index d14ab275..00000000 Binary files a/target/classes/org/hibernate/secure/spi/JaccService.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/PermissibleAction$1.class b/target/classes/org/hibernate/secure/spi/PermissibleAction$1.class deleted file mode 100644 index 8fd1cece..00000000 Binary files a/target/classes/org/hibernate/secure/spi/PermissibleAction$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/PermissibleAction.class b/target/classes/org/hibernate/secure/spi/PermissibleAction.class deleted file mode 100644 index b1ee6cc2..00000000 Binary files a/target/classes/org/hibernate/secure/spi/PermissibleAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/secure/spi/PermissionCheckEntityInformation.class b/target/classes/org/hibernate/secure/spi/PermissionCheckEntityInformation.class deleted file mode 100644 index 378960fc..00000000 Binary files a/target/classes/org/hibernate/secure/spi/PermissionCheckEntityInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/Service.class b/target/classes/org/hibernate/service/Service.class deleted file mode 100644 index fc02a80f..00000000 Binary files a/target/classes/org/hibernate/service/Service.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/ServiceRegistry.class b/target/classes/org/hibernate/service/ServiceRegistry.class deleted file mode 100644 index aae61d47..00000000 Binary files a/target/classes/org/hibernate/service/ServiceRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/StandardServiceInitiators.class b/target/classes/org/hibernate/service/StandardServiceInitiators.class deleted file mode 100644 index 5d101670..00000000 Binary files a/target/classes/org/hibernate/service/StandardServiceInitiators.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/UnknownServiceException.class b/target/classes/org/hibernate/service/UnknownServiceException.class deleted file mode 100644 index 01f60295..00000000 Binary files a/target/classes/org/hibernate/service/UnknownServiceException.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/UnknownUnwrapTypeException.class b/target/classes/org/hibernate/service/UnknownUnwrapTypeException.class deleted file mode 100644 index 36911e11..00000000 Binary files a/target/classes/org/hibernate/service/UnknownUnwrapTypeException.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/AbstractServiceRegistryImpl.class b/target/classes/org/hibernate/service/internal/AbstractServiceRegistryImpl.class deleted file mode 100644 index b3e7dc31..00000000 Binary files a/target/classes/org/hibernate/service/internal/AbstractServiceRegistryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding$Entry.class b/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding$Entry.class deleted file mode 100644 index 348ea817..00000000 Binary files a/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding$Entry.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding$Node.class b/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding$Node.class deleted file mode 100644 index 16776575..00000000 Binary files a/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding$Node.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding.class b/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding.class deleted file mode 100644 index 35d56265..00000000 Binary files a/target/classes/org/hibernate/service/internal/ConcurrentServiceBinding.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/ProvidedService.class b/target/classes/org/hibernate/service/internal/ProvidedService.class deleted file mode 100644 index e04ef18a..00000000 Binary files a/target/classes/org/hibernate/service/internal/ProvidedService.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/ServiceDependencyException.class b/target/classes/org/hibernate/service/internal/ServiceDependencyException.class deleted file mode 100644 index 722e3cc5..00000000 Binary files a/target/classes/org/hibernate/service/internal/ServiceDependencyException.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/ServiceProxyGenerationException.class b/target/classes/org/hibernate/service/internal/ServiceProxyGenerationException.class deleted file mode 100644 index 780cc852..00000000 Binary files a/target/classes/org/hibernate/service/internal/ServiceProxyGenerationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryFactoryImpl.class b/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryFactoryImpl.class deleted file mode 100644 index 4abd4880..00000000 Binary files a/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryFactoryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryFactoryInitiator.class b/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryFactoryInitiator.class deleted file mode 100644 index 194bb6d3..00000000 Binary files a/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryFactoryInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryImpl.class b/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryImpl.class deleted file mode 100644 index 15c113c0..00000000 Binary files a/target/classes/org/hibernate/service/internal/SessionFactoryServiceRegistryImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/internal/StandardSessionFactoryServiceInitiators.class b/target/classes/org/hibernate/service/internal/StandardSessionFactoryServiceInitiators.class deleted file mode 100644 index 453ef166..00000000 Binary files a/target/classes/org/hibernate/service/internal/StandardSessionFactoryServiceInitiators.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/Configurable.class b/target/classes/org/hibernate/service/spi/Configurable.class deleted file mode 100644 index 58cce921..00000000 Binary files a/target/classes/org/hibernate/service/spi/Configurable.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/InjectService.class b/target/classes/org/hibernate/service/spi/InjectService.class deleted file mode 100644 index 14a99f6b..00000000 Binary files a/target/classes/org/hibernate/service/spi/InjectService.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/Manageable.class b/target/classes/org/hibernate/service/spi/Manageable.class deleted file mode 100644 index f9c8c748..00000000 Binary files a/target/classes/org/hibernate/service/spi/Manageable.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/ServiceBinding$ServiceLifecycleOwner.class b/target/classes/org/hibernate/service/spi/ServiceBinding$ServiceLifecycleOwner.class deleted file mode 100644 index fb012ddc..00000000 Binary files a/target/classes/org/hibernate/service/spi/ServiceBinding$ServiceLifecycleOwner.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/ServiceBinding.class b/target/classes/org/hibernate/service/spi/ServiceBinding.class deleted file mode 100644 index 1c335403..00000000 Binary files a/target/classes/org/hibernate/service/spi/ServiceBinding.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/ServiceContributor.class b/target/classes/org/hibernate/service/spi/ServiceContributor.class deleted file mode 100644 index 9561f11d..00000000 Binary files a/target/classes/org/hibernate/service/spi/ServiceContributor.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/ServiceException.class b/target/classes/org/hibernate/service/spi/ServiceException.class deleted file mode 100644 index 002fa3c7..00000000 Binary files a/target/classes/org/hibernate/service/spi/ServiceException.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/ServiceInitiator.class b/target/classes/org/hibernate/service/spi/ServiceInitiator.class deleted file mode 100644 index ac4c19df..00000000 Binary files a/target/classes/org/hibernate/service/spi/ServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/ServiceRegistryAwareService.class b/target/classes/org/hibernate/service/spi/ServiceRegistryAwareService.class deleted file mode 100644 index 1aa3342c..00000000 Binary files a/target/classes/org/hibernate/service/spi/ServiceRegistryAwareService.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/ServiceRegistryImplementor.class b/target/classes/org/hibernate/service/spi/ServiceRegistryImplementor.class deleted file mode 100644 index 1b291e16..00000000 Binary files a/target/classes/org/hibernate/service/spi/ServiceRegistryImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/SessionFactoryServiceInitiator.class b/target/classes/org/hibernate/service/spi/SessionFactoryServiceInitiator.class deleted file mode 100644 index f8a12166..00000000 Binary files a/target/classes/org/hibernate/service/spi/SessionFactoryServiceInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/SessionFactoryServiceRegistry.class b/target/classes/org/hibernate/service/spi/SessionFactoryServiceRegistry.class deleted file mode 100644 index 881dc629..00000000 Binary files a/target/classes/org/hibernate/service/spi/SessionFactoryServiceRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/SessionFactoryServiceRegistryFactory.class b/target/classes/org/hibernate/service/spi/SessionFactoryServiceRegistryFactory.class deleted file mode 100644 index 27754f68..00000000 Binary files a/target/classes/org/hibernate/service/spi/SessionFactoryServiceRegistryFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/Startable.class b/target/classes/org/hibernate/service/spi/Startable.class deleted file mode 100644 index c774be06..00000000 Binary files a/target/classes/org/hibernate/service/spi/Startable.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/Stoppable.class b/target/classes/org/hibernate/service/spi/Stoppable.class deleted file mode 100644 index 7a986343..00000000 Binary files a/target/classes/org/hibernate/service/spi/Stoppable.class and /dev/null differ diff --git a/target/classes/org/hibernate/service/spi/Wrapped.class b/target/classes/org/hibernate/service/spi/Wrapped.class deleted file mode 100644 index b5ae6cbd..00000000 Binary files a/target/classes/org/hibernate/service/spi/Wrapped.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ANSICaseFragment.class b/target/classes/org/hibernate/sql/ANSICaseFragment.class deleted file mode 100644 index 0eff0f1c..00000000 Binary files a/target/classes/org/hibernate/sql/ANSICaseFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ANSIJoinFragment$1.class b/target/classes/org/hibernate/sql/ANSIJoinFragment$1.class deleted file mode 100644 index d7cc2406..00000000 Binary files a/target/classes/org/hibernate/sql/ANSIJoinFragment$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ANSIJoinFragment.class b/target/classes/org/hibernate/sql/ANSIJoinFragment.class deleted file mode 100644 index 13d93228..00000000 Binary files a/target/classes/org/hibernate/sql/ANSIJoinFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Alias.class b/target/classes/org/hibernate/sql/Alias.class deleted file mode 100644 index 83203f8d..00000000 Binary files a/target/classes/org/hibernate/sql/Alias.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/AliasGenerator.class b/target/classes/org/hibernate/sql/AliasGenerator.class deleted file mode 100644 index d1222013..00000000 Binary files a/target/classes/org/hibernate/sql/AliasGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/CacheJoinFragment.class b/target/classes/org/hibernate/sql/CacheJoinFragment.class deleted file mode 100644 index 674c7412..00000000 Binary files a/target/classes/org/hibernate/sql/CacheJoinFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/CaseFragment.class b/target/classes/org/hibernate/sql/CaseFragment.class deleted file mode 100644 index f27a5b26..00000000 Binary files a/target/classes/org/hibernate/sql/CaseFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ConditionFragment.class b/target/classes/org/hibernate/sql/ConditionFragment.class deleted file mode 100644 index d2ca5b18..00000000 Binary files a/target/classes/org/hibernate/sql/ConditionFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/DecodeCaseFragment.class b/target/classes/org/hibernate/sql/DecodeCaseFragment.class deleted file mode 100644 index 64f2e3fc..00000000 Binary files a/target/classes/org/hibernate/sql/DecodeCaseFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Delete.class b/target/classes/org/hibernate/sql/Delete.class deleted file mode 100644 index 98cc5cbe..00000000 Binary files a/target/classes/org/hibernate/sql/Delete.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/DerbyCaseFragment.class b/target/classes/org/hibernate/sql/DerbyCaseFragment.class deleted file mode 100644 index dc1a4ece..00000000 Binary files a/target/classes/org/hibernate/sql/DerbyCaseFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/DisjunctionFragment.class b/target/classes/org/hibernate/sql/DisjunctionFragment.class deleted file mode 100644 index cd9c8652..00000000 Binary files a/target/classes/org/hibernate/sql/DisjunctionFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ForUpdateFragment.class b/target/classes/org/hibernate/sql/ForUpdateFragment.class deleted file mode 100644 index 09aa2a76..00000000 Binary files a/target/classes/org/hibernate/sql/ForUpdateFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/HSQLCaseFragment.class b/target/classes/org/hibernate/sql/HSQLCaseFragment.class deleted file mode 100644 index ddcea645..00000000 Binary files a/target/classes/org/hibernate/sql/HSQLCaseFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/InFragment.class b/target/classes/org/hibernate/sql/InFragment.class deleted file mode 100644 index f73724ca..00000000 Binary files a/target/classes/org/hibernate/sql/InFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Insert.class b/target/classes/org/hibernate/sql/Insert.class deleted file mode 100644 index ea3ccf68..00000000 Binary files a/target/classes/org/hibernate/sql/Insert.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/InsertSelect.class b/target/classes/org/hibernate/sql/InsertSelect.class deleted file mode 100644 index 9bac509a..00000000 Binary files a/target/classes/org/hibernate/sql/InsertSelect.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/JoinFragment.class b/target/classes/org/hibernate/sql/JoinFragment.class deleted file mode 100644 index d9642ef5..00000000 Binary files a/target/classes/org/hibernate/sql/JoinFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/JoinType.class b/target/classes/org/hibernate/sql/JoinType.class deleted file mode 100644 index 41604b2a..00000000 Binary files a/target/classes/org/hibernate/sql/JoinType.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/MckoiCaseFragment.class b/target/classes/org/hibernate/sql/MckoiCaseFragment.class deleted file mode 100644 index afdbec5c..00000000 Binary files a/target/classes/org/hibernate/sql/MckoiCaseFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/OracleJoinFragment.class b/target/classes/org/hibernate/sql/OracleJoinFragment.class deleted file mode 100644 index 74f52db3..00000000 Binary files a/target/classes/org/hibernate/sql/OracleJoinFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/QueryJoinFragment.class b/target/classes/org/hibernate/sql/QueryJoinFragment.class deleted file mode 100644 index e78496ae..00000000 Binary files a/target/classes/org/hibernate/sql/QueryJoinFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/QuerySelect.class b/target/classes/org/hibernate/sql/QuerySelect.class deleted file mode 100644 index cf7bf91a..00000000 Binary files a/target/classes/org/hibernate/sql/QuerySelect.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Select.class b/target/classes/org/hibernate/sql/Select.class deleted file mode 100644 index f872d80d..00000000 Binary files a/target/classes/org/hibernate/sql/Select.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/SelectExpression.class b/target/classes/org/hibernate/sql/SelectExpression.class deleted file mode 100644 index 5000edcf..00000000 Binary files a/target/classes/org/hibernate/sql/SelectExpression.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/SelectFragment.class b/target/classes/org/hibernate/sql/SelectFragment.class deleted file mode 100644 index dace1baf..00000000 Binary files a/target/classes/org/hibernate/sql/SelectFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/SelectValues$1.class b/target/classes/org/hibernate/sql/SelectValues$1.class deleted file mode 100644 index 6c5df503..00000000 Binary files a/target/classes/org/hibernate/sql/SelectValues$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/SelectValues$SelectValue.class b/target/classes/org/hibernate/sql/SelectValues$SelectValue.class deleted file mode 100644 index c97e36f2..00000000 Binary files a/target/classes/org/hibernate/sql/SelectValues$SelectValue.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/SelectValues.class b/target/classes/org/hibernate/sql/SelectValues.class deleted file mode 100644 index 49a8c255..00000000 Binary files a/target/classes/org/hibernate/sql/SelectValues.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/SimpleSelect.class b/target/classes/org/hibernate/sql/SimpleSelect.class deleted file mode 100644 index 1268eac1..00000000 Binary files a/target/classes/org/hibernate/sql/SimpleSelect.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Sybase11JoinFragment.class b/target/classes/org/hibernate/sql/Sybase11JoinFragment.class deleted file mode 100644 index 60a7bac4..00000000 Binary files a/target/classes/org/hibernate/sql/Sybase11JoinFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Template$1.class b/target/classes/org/hibernate/sql/Template$1.class deleted file mode 100644 index 3f00f72d..00000000 Binary files a/target/classes/org/hibernate/sql/Template$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Template$2.class b/target/classes/org/hibernate/sql/Template$2.class deleted file mode 100644 index 4f93039d..00000000 Binary files a/target/classes/org/hibernate/sql/Template$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Template$NoOpColumnMapper.class b/target/classes/org/hibernate/sql/Template$NoOpColumnMapper.class deleted file mode 100644 index b860f0c8..00000000 Binary files a/target/classes/org/hibernate/sql/Template$NoOpColumnMapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Template$TrimOperands.class b/target/classes/org/hibernate/sql/Template$TrimOperands.class deleted file mode 100644 index 6a300036..00000000 Binary files a/target/classes/org/hibernate/sql/Template$TrimOperands.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Template.class b/target/classes/org/hibernate/sql/Template.class deleted file mode 100644 index 1a9019e2..00000000 Binary files a/target/classes/org/hibernate/sql/Template.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/Update.class b/target/classes/org/hibernate/sql/Update.class deleted file mode 100644 index 0533320a..00000000 Binary files a/target/classes/org/hibernate/sql/Update.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/CollationSpecification.class b/target/classes/org/hibernate/sql/ordering/antlr/CollationSpecification.class deleted file mode 100644 index 790fa458..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/CollationSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/ColumnMapper.class b/target/classes/org/hibernate/sql/ordering/antlr/ColumnMapper.class deleted file mode 100644 index 5600bd08..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/ColumnMapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/ColumnReference.class b/target/classes/org/hibernate/sql/ordering/antlr/ColumnReference.class deleted file mode 100644 index 4eeef194..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/ColumnReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/Factory.class b/target/classes/org/hibernate/sql/ordering/antlr/Factory.class deleted file mode 100644 index 249490f4..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/Factory.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/FormulaReference.class b/target/classes/org/hibernate/sql/ordering/antlr/FormulaReference.class deleted file mode 100644 index 2edf071d..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/FormulaReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentParser.class b/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentParser.class deleted file mode 100644 index 1dda73c8..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentRenderer.class b/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentRenderer.class deleted file mode 100644 index 333add02..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentRenderer.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentRendererTokenTypes.class b/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentRendererTokenTypes.class deleted file mode 100644 index fa83b28e..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByFragmentRendererTokenTypes.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByLexer.class b/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByLexer.class deleted file mode 100644 index 724bb2e4..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/GeneratedOrderByLexer.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/Node.class b/target/classes/org/hibernate/sql/ordering/antlr/Node.class deleted file mode 100644 index c93413bd..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/Node.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/NodeSupport.class b/target/classes/org/hibernate/sql/ordering/antlr/NodeSupport.class deleted file mode 100644 index e632763c..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/NodeSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByAliasResolver.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByAliasResolver.class deleted file mode 100644 index a81f66b6..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByAliasResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragment.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragment.class deleted file mode 100644 index b9821d60..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragment.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentParser.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentParser.class deleted file mode 100644 index ace9b069..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentParser.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentRenderer.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentRenderer.class deleted file mode 100644 index ea04624f..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentRenderer.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentTranslator$StandardOrderByTranslationImpl.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentTranslator$StandardOrderByTranslationImpl.class deleted file mode 100644 index 610eb8f9..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentTranslator$StandardOrderByTranslationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentTranslator.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentTranslator.class deleted file mode 100644 index e2a7d73f..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByFragmentTranslator.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByTemplateTokenTypes.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByTemplateTokenTypes.class deleted file mode 100644 index f8da4e5a..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByTemplateTokenTypes.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderByTranslation.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderByTranslation.class deleted file mode 100644 index 0a0c3110..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderByTranslation.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderingSpecification$Ordering.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderingSpecification$Ordering.class deleted file mode 100644 index b023f75e..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderingSpecification$Ordering.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/OrderingSpecification.class b/target/classes/org/hibernate/sql/ordering/antlr/OrderingSpecification.class deleted file mode 100644 index 1fc16dab..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/OrderingSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/SortKey.class b/target/classes/org/hibernate/sql/ordering/antlr/SortKey.class deleted file mode 100644 index 49c2c7cb..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/SortKey.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/SortSpecification.class b/target/classes/org/hibernate/sql/ordering/antlr/SortSpecification.class deleted file mode 100644 index e02224e9..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/SortSpecification.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/SqlValueReference.class b/target/classes/org/hibernate/sql/ordering/antlr/SqlValueReference.class deleted file mode 100644 index 545e18ac..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/SqlValueReference.class and /dev/null differ diff --git a/target/classes/org/hibernate/sql/ordering/antlr/TranslationContext.class b/target/classes/org/hibernate/sql/ordering/antlr/TranslationContext.class deleted file mode 100644 index c57a7e8e..00000000 Binary files a/target/classes/org/hibernate/sql/ordering/antlr/TranslationContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/CollectionStatistics.class b/target/classes/org/hibernate/stat/CollectionStatistics.class deleted file mode 100644 index 91c576fc..00000000 Binary files a/target/classes/org/hibernate/stat/CollectionStatistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/EntityStatistics.class b/target/classes/org/hibernate/stat/EntityStatistics.class deleted file mode 100644 index c8560ac9..00000000 Binary files a/target/classes/org/hibernate/stat/EntityStatistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/NaturalIdCacheStatistics.class b/target/classes/org/hibernate/stat/NaturalIdCacheStatistics.class deleted file mode 100644 index 8d7c40c0..00000000 Binary files a/target/classes/org/hibernate/stat/NaturalIdCacheStatistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/QueryStatistics.class b/target/classes/org/hibernate/stat/QueryStatistics.class deleted file mode 100644 index e9993b57..00000000 Binary files a/target/classes/org/hibernate/stat/QueryStatistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/SecondLevelCacheStatistics.class b/target/classes/org/hibernate/stat/SecondLevelCacheStatistics.class deleted file mode 100644 index 6c455a11..00000000 Binary files a/target/classes/org/hibernate/stat/SecondLevelCacheStatistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/SessionStatistics.class b/target/classes/org/hibernate/stat/SessionStatistics.class deleted file mode 100644 index 8dcfb3e4..00000000 Binary files a/target/classes/org/hibernate/stat/SessionStatistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/Statistics.class b/target/classes/org/hibernate/stat/Statistics.class deleted file mode 100644 index ad406760..00000000 Binary files a/target/classes/org/hibernate/stat/Statistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/CategorizedStatistics.class b/target/classes/org/hibernate/stat/internal/CategorizedStatistics.class deleted file mode 100644 index 3de13d10..00000000 Binary files a/target/classes/org/hibernate/stat/internal/CategorizedStatistics.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/ConcurrentCollectionStatisticsImpl.class b/target/classes/org/hibernate/stat/internal/ConcurrentCollectionStatisticsImpl.class deleted file mode 100644 index 5a4ab62e..00000000 Binary files a/target/classes/org/hibernate/stat/internal/ConcurrentCollectionStatisticsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/ConcurrentEntityStatisticsImpl.class b/target/classes/org/hibernate/stat/internal/ConcurrentEntityStatisticsImpl.class deleted file mode 100644 index 6f01f301..00000000 Binary files a/target/classes/org/hibernate/stat/internal/ConcurrentEntityStatisticsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/ConcurrentNaturalIdCacheStatisticsImpl.class b/target/classes/org/hibernate/stat/internal/ConcurrentNaturalIdCacheStatisticsImpl.class deleted file mode 100644 index ce04fba1..00000000 Binary files a/target/classes/org/hibernate/stat/internal/ConcurrentNaturalIdCacheStatisticsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/ConcurrentQueryStatisticsImpl.class b/target/classes/org/hibernate/stat/internal/ConcurrentQueryStatisticsImpl.class deleted file mode 100644 index 6f846457..00000000 Binary files a/target/classes/org/hibernate/stat/internal/ConcurrentQueryStatisticsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/ConcurrentSecondLevelCacheStatisticsImpl.class b/target/classes/org/hibernate/stat/internal/ConcurrentSecondLevelCacheStatisticsImpl.class deleted file mode 100644 index 06cd4e68..00000000 Binary files a/target/classes/org/hibernate/stat/internal/ConcurrentSecondLevelCacheStatisticsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/ConcurrentStatisticsImpl.class b/target/classes/org/hibernate/stat/internal/ConcurrentStatisticsImpl.class deleted file mode 100644 index aee535d4..00000000 Binary files a/target/classes/org/hibernate/stat/internal/ConcurrentStatisticsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/SessionStatisticsImpl.class b/target/classes/org/hibernate/stat/internal/SessionStatisticsImpl.class deleted file mode 100644 index e35c32ec..00000000 Binary files a/target/classes/org/hibernate/stat/internal/SessionStatisticsImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/StatisticsInitiator$1.class b/target/classes/org/hibernate/stat/internal/StatisticsInitiator$1.class deleted file mode 100644 index 0c5f4f9e..00000000 Binary files a/target/classes/org/hibernate/stat/internal/StatisticsInitiator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/internal/StatisticsInitiator.class b/target/classes/org/hibernate/stat/internal/StatisticsInitiator.class deleted file mode 100644 index f09f9b46..00000000 Binary files a/target/classes/org/hibernate/stat/internal/StatisticsInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/spi/StatisticsFactory.class b/target/classes/org/hibernate/stat/spi/StatisticsFactory.class deleted file mode 100644 index d28cd262..00000000 Binary files a/target/classes/org/hibernate/stat/spi/StatisticsFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/stat/spi/StatisticsImplementor.class b/target/classes/org/hibernate/stat/spi/StatisticsImplementor.class deleted file mode 100644 index 66bd6751..00000000 Binary files a/target/classes/org/hibernate/stat/spi/StatisticsImplementor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/enhance/EnhancementTask.class b/target/classes/org/hibernate/tool/enhance/EnhancementTask.class deleted file mode 100644 index adbb2b5a..00000000 Binary files a/target/classes/org/hibernate/tool/enhance/EnhancementTask.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ColumnMetadata.class b/target/classes/org/hibernate/tool/hbm2ddl/ColumnMetadata.class deleted file mode 100644 index 806ff6fa..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ColumnMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ConnectionHelper.class b/target/classes/org/hibernate/tool/hbm2ddl/ConnectionHelper.class deleted file mode 100644 index 710e2d3e..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ConnectionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/DatabaseExporter.class b/target/classes/org/hibernate/tool/hbm2ddl/DatabaseExporter.class deleted file mode 100644 index 37253fa7..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/DatabaseExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/Exporter.class b/target/classes/org/hibernate/tool/hbm2ddl/Exporter.class deleted file mode 100644 index c90ebf7c..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/Exporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/FileExporter.class b/target/classes/org/hibernate/tool/hbm2ddl/FileExporter.class deleted file mode 100644 index 39036124..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/FileExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ForeignKeyMetadata.class b/target/classes/org/hibernate/tool/hbm2ddl/ForeignKeyMetadata.class deleted file mode 100644 index 612ce004..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ForeignKeyMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ImportScriptException.class b/target/classes/org/hibernate/tool/hbm2ddl/ImportScriptException.class deleted file mode 100644 index 95f9bb33..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ImportScriptException.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ImportSqlCommandExtractor.class b/target/classes/org/hibernate/tool/hbm2ddl/ImportSqlCommandExtractor.class deleted file mode 100644 index ddf6499f..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ImportSqlCommandExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ImportSqlCommandExtractorInitiator.class b/target/classes/org/hibernate/tool/hbm2ddl/ImportSqlCommandExtractorInitiator.class deleted file mode 100644 index 3bba2f8d..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ImportSqlCommandExtractorInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/IndexMetadata.class b/target/classes/org/hibernate/tool/hbm2ddl/IndexMetadata.class deleted file mode 100644 index 9e3745af..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/IndexMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ManagedProviderConnectionHelper.class b/target/classes/org/hibernate/tool/hbm2ddl/ManagedProviderConnectionHelper.class deleted file mode 100644 index 67f81400..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ManagedProviderConnectionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/MultipleLinesSqlCommandExtractor.class b/target/classes/org/hibernate/tool/hbm2ddl/MultipleLinesSqlCommandExtractor.class deleted file mode 100644 index 77624620..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/MultipleLinesSqlCommandExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$1.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$1.class deleted file mode 100644 index 6bb46b2b..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$Action.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$Action.class deleted file mode 100644 index 0d70fbbb..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$Action.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$CommandLineArgs.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$CommandLineArgs.class deleted file mode 100644 index 372f7656..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$CommandLineArgs.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$TargetDescriptorImpl.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$TargetDescriptorImpl.class deleted file mode 100644 index e96c2b2d..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$TargetDescriptorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$Type.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$Type.class deleted file mode 100644 index 6fbbf9f6..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport$Type.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport.class deleted file mode 100644 index 86fba4be..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExport.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExportTask$ExportType.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExportTask$ExportType.class deleted file mode 100644 index 1eaa2362..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExportTask$ExportType.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExportTask.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaExportTask.class deleted file mode 100644 index 5bfde082..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaExportTask.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdate$CommandLineArgs.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdate$CommandLineArgs.class deleted file mode 100644 index 6051ee7d..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdate$CommandLineArgs.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdate.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdate.class deleted file mode 100644 index 9bf6f6cf..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdate.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdateCommand.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdateCommand.class deleted file mode 100644 index 90a2f3a6..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdateCommand.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdateTask.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdateTask.class deleted file mode 100644 index 53cad205..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaUpdateTask.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidator$CommandLineArgs.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidator$CommandLineArgs.class deleted file mode 100644 index 9d1c0db0..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidator$CommandLineArgs.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidator.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidator.class deleted file mode 100644 index 5a4b43b9..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidatorTask.class b/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidatorTask.class deleted file mode 100644 index fa4ef9fc..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SchemaValidatorTask.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/ScriptExporter.class b/target/classes/org/hibernate/tool/hbm2ddl/ScriptExporter.class deleted file mode 100644 index a2d8a2f4..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/ScriptExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SingleLineSqlCommandExtractor.class b/target/classes/org/hibernate/tool/hbm2ddl/SingleLineSqlCommandExtractor.class deleted file mode 100644 index 120a6ef1..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SingleLineSqlCommandExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SuppliedConnectionHelper.class b/target/classes/org/hibernate/tool/hbm2ddl/SuppliedConnectionHelper.class deleted file mode 100644 index 474cec4f..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SuppliedConnectionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/SuppliedConnectionProviderConnectionHelper.class b/target/classes/org/hibernate/tool/hbm2ddl/SuppliedConnectionProviderConnectionHelper.class deleted file mode 100644 index eb620cc1..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/SuppliedConnectionProviderConnectionHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/TableMetadata.class b/target/classes/org/hibernate/tool/hbm2ddl/TableMetadata.class deleted file mode 100644 index dfe2b771..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/TableMetadata.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/Target.class b/target/classes/org/hibernate/tool/hbm2ddl/Target.class deleted file mode 100644 index 8783ea6a..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/Target.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/TargetTypeHelper.class b/target/classes/org/hibernate/tool/hbm2ddl/TargetTypeHelper.class deleted file mode 100644 index be69d202..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/TargetTypeHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/hbm2ddl/UniqueConstraintSchemaUpdateStrategy.class b/target/classes/org/hibernate/tool/hbm2ddl/UniqueConstraintSchemaUpdateStrategy.class deleted file mode 100644 index dcdeeeb5..00000000 Binary files a/target/classes/org/hibernate/tool/hbm2ddl/UniqueConstraintSchemaUpdateStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/instrument/javassist/InstrumentTask.class b/target/classes/org/hibernate/tool/instrument/javassist/InstrumentTask.class deleted file mode 100644 index 25320e9d..00000000 Binary files a/target/classes/org/hibernate/tool/instrument/javassist/InstrumentTask.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/Action.class b/target/classes/org/hibernate/tool/schema/Action.class deleted file mode 100644 index 541b50c7..00000000 Binary files a/target/classes/org/hibernate/tool/schema/Action.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/SourceType.class b/target/classes/org/hibernate/tool/schema/SourceType.class deleted file mode 100644 index 438dd7b1..00000000 Binary files a/target/classes/org/hibernate/tool/schema/SourceType.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/TargetType.class b/target/classes/org/hibernate/tool/schema/TargetType.class deleted file mode 100644 index 7ba02324..00000000 Binary files a/target/classes/org/hibernate/tool/schema/TargetType.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/ColumnInformationImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/ColumnInformationImpl.class deleted file mode 100644 index c10e0bd1..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/ColumnInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/DatabaseInformationImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/DatabaseInformationImpl.class deleted file mode 100644 index 6ac87e43..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/DatabaseInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/ExtractionContextImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/ExtractionContextImpl.class deleted file mode 100644 index 35266840..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/ExtractionContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/ForeignKeyInformationImpl$ColumnReferenceMappingImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/ForeignKeyInformationImpl$ColumnReferenceMappingImpl.class deleted file mode 100644 index 6cc0c913..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/ForeignKeyInformationImpl$ColumnReferenceMappingImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/ForeignKeyInformationImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/ForeignKeyInformationImpl.class deleted file mode 100644 index b3e35dca..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/ForeignKeyInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/IndexInformationImpl$Builder.class b/target/classes/org/hibernate/tool/schema/extract/internal/IndexInformationImpl$Builder.class deleted file mode 100644 index e2773402..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/IndexInformationImpl$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/IndexInformationImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/IndexInformationImpl.class deleted file mode 100644 index f0fbf1eb..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/IndexInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl$ForeignKeyBuilder.class b/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl$ForeignKeyBuilder.class deleted file mode 100644 index 5eb24327..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl$ForeignKeyBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl$ForeignKeyBuilderImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl$ForeignKeyBuilderImpl.class deleted file mode 100644 index 4f32e922..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl$ForeignKeyBuilderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl.class deleted file mode 100644 index cf3009f1..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/InformationExtractorJdbcDatabaseMetaDataImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/PrimaryKeyInformationImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/PrimaryKeyInformationImpl.class deleted file mode 100644 index 43c2c45c..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/PrimaryKeyInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorH2DatabaseImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorH2DatabaseImpl.class deleted file mode 100644 index 49f082f2..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorH2DatabaseImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorLegacyImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorLegacyImpl.class deleted file mode 100644 index b7a1bfdc..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorLegacyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorNoOpImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorNoOpImpl.class deleted file mode 100644 index a4ef6fae..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationExtractorNoOpImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationImpl.class deleted file mode 100644 index 4a587453..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/SequenceInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/internal/TableInformationImpl.class b/target/classes/org/hibernate/tool/schema/extract/internal/TableInformationImpl.class deleted file mode 100644 index 8fac8872..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/internal/TableInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/ColumnInformation.class b/target/classes/org/hibernate/tool/schema/extract/spi/ColumnInformation.class deleted file mode 100644 index b617e8b2..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/ColumnInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/DatabaseInformation.class b/target/classes/org/hibernate/tool/schema/extract/spi/DatabaseInformation.class deleted file mode 100644 index e6a63234..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/DatabaseInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/ExtractionContext$DatabaseObjectAccess.class b/target/classes/org/hibernate/tool/schema/extract/spi/ExtractionContext$DatabaseObjectAccess.class deleted file mode 100644 index 1a190804..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/ExtractionContext$DatabaseObjectAccess.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/ExtractionContext.class b/target/classes/org/hibernate/tool/schema/extract/spi/ExtractionContext.class deleted file mode 100644 index 189e6606..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/ExtractionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/ForeignKeyInformation$ColumnReferenceMapping.class b/target/classes/org/hibernate/tool/schema/extract/spi/ForeignKeyInformation$ColumnReferenceMapping.class deleted file mode 100644 index 86d94b1e..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/ForeignKeyInformation$ColumnReferenceMapping.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/ForeignKeyInformation.class b/target/classes/org/hibernate/tool/schema/extract/spi/ForeignKeyInformation.class deleted file mode 100644 index fc0b620f..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/ForeignKeyInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/IndexInformation.class b/target/classes/org/hibernate/tool/schema/extract/spi/IndexInformation.class deleted file mode 100644 index bf76aca0..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/IndexInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/InformationExtractor.class b/target/classes/org/hibernate/tool/schema/extract/spi/InformationExtractor.class deleted file mode 100644 index 64a5a27b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/InformationExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/PrimaryKeyInformation.class b/target/classes/org/hibernate/tool/schema/extract/spi/PrimaryKeyInformation.class deleted file mode 100644 index 52463be0..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/PrimaryKeyInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/SchemaExtractionException.class b/target/classes/org/hibernate/tool/schema/extract/spi/SchemaExtractionException.class deleted file mode 100644 index 7d859edf..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/SchemaExtractionException.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/SequenceInformation.class b/target/classes/org/hibernate/tool/schema/extract/spi/SequenceInformation.class deleted file mode 100644 index 202c8622..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/SequenceInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/SequenceInformationExtractor.class b/target/classes/org/hibernate/tool/schema/extract/spi/SequenceInformationExtractor.class deleted file mode 100644 index 6798431e..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/SequenceInformationExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/extract/spi/TableInformation.class b/target/classes/org/hibernate/tool/schema/extract/spi/TableInformation.class deleted file mode 100644 index 1e6f608f..00000000 Binary files a/target/classes/org/hibernate/tool/schema/extract/spi/TableInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/DefaultSchemaFilter.class b/target/classes/org/hibernate/tool/schema/internal/DefaultSchemaFilter.class deleted file mode 100644 index be65ed6f..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/DefaultSchemaFilter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/DefaultSchemaFilterProvider.class b/target/classes/org/hibernate/tool/schema/internal/DefaultSchemaFilterProvider.class deleted file mode 100644 index c50434c0..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/DefaultSchemaFilterProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerCollectingImpl.class b/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerCollectingImpl.class deleted file mode 100644 index 4ba03649..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerCollectingImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerHaltImpl.class b/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerHaltImpl.class deleted file mode 100644 index a3dbb590..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerHaltImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerLoggedImpl.class b/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerLoggedImpl.class deleted file mode 100644 index 6b1f4ba7..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/ExceptionHandlerLoggedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/Helper.class b/target/classes/org/hibernate/tool/schema/internal/Helper.class deleted file mode 100644 index 79d612de..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/Helper.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$1.class b/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$1.class deleted file mode 100644 index 839aea10..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$JdbcContextBuilder.class b/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$JdbcContextBuilder.class deleted file mode 100644 index 25a70458..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$JdbcContextBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$JdbcContextImpl.class b/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$JdbcContextImpl.class deleted file mode 100644 index b808b813..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool$JdbcContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool.class b/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool.class deleted file mode 100644 index 05ae120a..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/HibernateSchemaManagementTool.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$1.class b/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$1.class deleted file mode 100644 index f11ed5e8..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$2.class b/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$2.class deleted file mode 100644 index ee7998be..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$3.class b/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$3.class deleted file mode 100644 index 608a0747..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$4.class b/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$4.class deleted file mode 100644 index a9b51d52..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$JournalingGenerationTarget.class b/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$JournalingGenerationTarget.class deleted file mode 100644 index 9fd5d33a..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl$JournalingGenerationTarget.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl.class b/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl.class deleted file mode 100644 index 1aac9709..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaCreatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$1.class b/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$1.class deleted file mode 100644 index 0f35e2c4..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$2.class b/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$2.class deleted file mode 100644 index b8614905..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$3.class b/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$3.class deleted file mode 100644 index 027386de..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$DelayedDropActionImpl.class b/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$DelayedDropActionImpl.class deleted file mode 100644 index 07d60d3b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$DelayedDropActionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$JournalingGenerationTarget.class b/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$JournalingGenerationTarget.class deleted file mode 100644 index 23d5ee18..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl$JournalingGenerationTarget.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl.class b/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl.class deleted file mode 100644 index 96fdd7bb..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaDropperImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaManagementToolInitiator.class b/target/classes/org/hibernate/tool/schema/internal/SchemaManagementToolInitiator.class deleted file mode 100644 index 52b37a0b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaManagementToolInitiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaMigratorImpl.class b/target/classes/org/hibernate/tool/schema/internal/SchemaMigratorImpl.class deleted file mode 100644 index 0393083e..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaMigratorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/SchemaValidatorImpl.class b/target/classes/org/hibernate/tool/schema/internal/SchemaValidatorImpl.class deleted file mode 100644 index 6536762f..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/SchemaValidatorImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/StandardAuxiliaryDatabaseObjectExporter.class b/target/classes/org/hibernate/tool/schema/internal/StandardAuxiliaryDatabaseObjectExporter.class deleted file mode 100644 index 3d64139c..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/StandardAuxiliaryDatabaseObjectExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/StandardForeignKeyExporter.class b/target/classes/org/hibernate/tool/schema/internal/StandardForeignKeyExporter.class deleted file mode 100644 index 67812ec9..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/StandardForeignKeyExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/StandardIndexExporter.class b/target/classes/org/hibernate/tool/schema/internal/StandardIndexExporter.class deleted file mode 100644 index 3184013e..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/StandardIndexExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/StandardSequenceExporter.class b/target/classes/org/hibernate/tool/schema/internal/StandardSequenceExporter.class deleted file mode 100644 index b70e3fe9..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/StandardSequenceExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/StandardTableExporter.class b/target/classes/org/hibernate/tool/schema/internal/StandardTableExporter.class deleted file mode 100644 index 9d5be301..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/StandardTableExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/StandardUniqueKeyExporter.class b/target/classes/org/hibernate/tool/schema/internal/StandardUniqueKeyExporter.class deleted file mode 100644 index 82623dc6..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/StandardUniqueKeyExporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/AbstractJdbcConnectionContextImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/AbstractJdbcConnectionContextImpl.class deleted file mode 100644 index 932f7747..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/AbstractJdbcConnectionContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/AbstractScriptSourceInput.class b/target/classes/org/hibernate/tool/schema/internal/exec/AbstractScriptSourceInput.class deleted file mode 100644 index d043a7fe..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/AbstractScriptSourceInput.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/AbstractScriptTargetOutput.class b/target/classes/org/hibernate/tool/schema/internal/exec/AbstractScriptTargetOutput.class deleted file mode 100644 index 86bfc3c6..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/AbstractScriptTargetOutput.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTarget.class b/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTarget.class deleted file mode 100644 index 3fafc304..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTarget.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToDatabase.class b/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToDatabase.class deleted file mode 100644 index 4aa7124e..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToDatabase.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToScript.class b/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToScript.class deleted file mode 100644 index 2a78032c..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToScript.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToStdout.class b/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToStdout.class deleted file mode 100644 index b1a7c4b2..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/GenerationTargetToStdout.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ImprovedDatabaseInformationImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/ImprovedDatabaseInformationImpl.class deleted file mode 100644 index f2726330..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ImprovedDatabaseInformationImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ImprovedExtractionContextImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/ImprovedExtractionContextImpl.class deleted file mode 100644 index 8c1d622b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ImprovedExtractionContextImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionAccessConnectionProviderImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionAccessConnectionProviderImpl.class deleted file mode 100644 index e86bff5a..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionAccessConnectionProviderImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionAccessProvidedConnectionImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionAccessProvidedConnectionImpl.class deleted file mode 100644 index bf5b3360..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionAccessProvidedConnectionImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContext.class b/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContext.class deleted file mode 100644 index edcefef8..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContextNonSharedImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContextNonSharedImpl.class deleted file mode 100644 index 9b6aa493..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContextNonSharedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContextSharedImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContextSharedImpl.class deleted file mode 100644 index e3079d58..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcConnectionContextSharedImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcContext.class b/target/classes/org/hibernate/tool/schema/internal/exec/JdbcContext.class deleted file mode 100644 index 5fd3ad71..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/JdbcContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromFile$1.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromFile$1.class deleted file mode 100644 index 28bb1bcc..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromFile$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromFile.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromFile.class deleted file mode 100644 index d632a052..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromFile.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromReader.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromReader.class deleted file mode 100644 index 96241ae0..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromReader.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromUrl.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromUrl.class deleted file mode 100644 index 67bf0877..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputFromUrl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputNonExistentImpl.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputNonExistentImpl.class deleted file mode 100644 index 5db0a65b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptSourceInputNonExistentImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToFile.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToFile.class deleted file mode 100644 index fd60f622..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToFile.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToStdout.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToStdout.class deleted file mode 100644 index 2dea7c53..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToStdout.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToUrl.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToUrl.class deleted file mode 100644 index 4ad664ee..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToUrl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToWriter.class b/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToWriter.class deleted file mode 100644 index 156b5520..00000000 Binary files a/target/classes/org/hibernate/tool/schema/internal/exec/ScriptTargetOutputToWriter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/CommandAcceptanceException.class b/target/classes/org/hibernate/tool/schema/spi/CommandAcceptanceException.class deleted file mode 100644 index eebda0af..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/CommandAcceptanceException.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/DelayedDropAction.class b/target/classes/org/hibernate/tool/schema/spi/DelayedDropAction.class deleted file mode 100644 index 77f2a4b3..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/DelayedDropAction.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/DelayedDropRegistry.class b/target/classes/org/hibernate/tool/schema/spi/DelayedDropRegistry.class deleted file mode 100644 index 07c3d7ed..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/DelayedDropRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/DelayedDropRegistryNotAvailableImpl.class b/target/classes/org/hibernate/tool/schema/spi/DelayedDropRegistryNotAvailableImpl.class deleted file mode 100644 index fc2b758c..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/DelayedDropRegistryNotAvailableImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/ExceptionHandler.class b/target/classes/org/hibernate/tool/schema/spi/ExceptionHandler.class deleted file mode 100644 index 560eb263..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/ExceptionHandler.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/ExecutionOptions.class b/target/classes/org/hibernate/tool/schema/spi/ExecutionOptions.class deleted file mode 100644 index ded6819c..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/ExecutionOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/Exporter.class b/target/classes/org/hibernate/tool/schema/spi/Exporter.class deleted file mode 100644 index ae23be7b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/Exporter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/JpaTargetAndSourceDescriptor.class b/target/classes/org/hibernate/tool/schema/spi/JpaTargetAndSourceDescriptor.class deleted file mode 100644 index 4dd922ed..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/JpaTargetAndSourceDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaCreator.class b/target/classes/org/hibernate/tool/schema/spi/SchemaCreator.class deleted file mode 100644 index 1b95d477..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaCreator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaDropper.class b/target/classes/org/hibernate/tool/schema/spi/SchemaDropper.class deleted file mode 100644 index 48e6aaeb..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaDropper.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaFilter.class b/target/classes/org/hibernate/tool/schema/spi/SchemaFilter.class deleted file mode 100644 index eeb191ba..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaFilter.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaFilterProvider.class b/target/classes/org/hibernate/tool/schema/spi/SchemaFilterProvider.class deleted file mode 100644 index ca43f392..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaFilterProvider.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementException.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementException.class deleted file mode 100644 index 8b76948e..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementException.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementTool.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementTool.class deleted file mode 100644 index d04f476c..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementTool.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$1.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$1.class deleted file mode 100644 index 6e5a92c9..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$2.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$2.class deleted file mode 100644 index 573b91b5..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$3.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$3.class deleted file mode 100644 index 323b4d1b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$4.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$4.class deleted file mode 100644 index 0902bc45..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$ActionGrouping.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$ActionGrouping.class deleted file mode 100644 index 7a94f96e..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$ActionGrouping.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$CreateSettingSelector.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$CreateSettingSelector.class deleted file mode 100644 index e8fd06c4..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$CreateSettingSelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$DropSettingSelector.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$DropSettingSelector.class deleted file mode 100644 index 70b26782..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$DropSettingSelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$MigrateSettingSelector.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$MigrateSettingSelector.class deleted file mode 100644 index 4b132f0b..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$MigrateSettingSelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$SettingSelector.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$SettingSelector.class deleted file mode 100644 index 45edbfac..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator$SettingSelector.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator.class b/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator.class deleted file mode 100644 index 3a8296f1..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaManagementToolCoordinator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaMigrator.class b/target/classes/org/hibernate/tool/schema/spi/SchemaMigrator.class deleted file mode 100644 index 8365f96c..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaMigrator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SchemaValidator.class b/target/classes/org/hibernate/tool/schema/spi/SchemaValidator.class deleted file mode 100644 index 4551e2af..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SchemaValidator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/ScriptSourceInput.class b/target/classes/org/hibernate/tool/schema/spi/ScriptSourceInput.class deleted file mode 100644 index 40c2e306..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/ScriptSourceInput.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/ScriptTargetOutput.class b/target/classes/org/hibernate/tool/schema/spi/ScriptTargetOutput.class deleted file mode 100644 index 3a490dd2..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/ScriptTargetOutput.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/SourceDescriptor.class b/target/classes/org/hibernate/tool/schema/spi/SourceDescriptor.class deleted file mode 100644 index 8daa3acc..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/SourceDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/tool/schema/spi/TargetDescriptor.class b/target/classes/org/hibernate/tool/schema/spi/TargetDescriptor.class deleted file mode 100644 index 06395cca..00000000 Binary files a/target/classes/org/hibernate/tool/schema/spi/TargetDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/AliasToBeanConstructorResultTransformer.class b/target/classes/org/hibernate/transform/AliasToBeanConstructorResultTransformer.class deleted file mode 100644 index 149b69b6..00000000 Binary files a/target/classes/org/hibernate/transform/AliasToBeanConstructorResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/AliasToBeanResultTransformer.class b/target/classes/org/hibernate/transform/AliasToBeanResultTransformer.class deleted file mode 100644 index 9ed22117..00000000 Binary files a/target/classes/org/hibernate/transform/AliasToBeanResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/AliasToEntityMapResultTransformer.class b/target/classes/org/hibernate/transform/AliasToEntityMapResultTransformer.class deleted file mode 100644 index c388d00e..00000000 Binary files a/target/classes/org/hibernate/transform/AliasToEntityMapResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/AliasedTupleSubsetResultTransformer.class b/target/classes/org/hibernate/transform/AliasedTupleSubsetResultTransformer.class deleted file mode 100644 index 040adfff..00000000 Binary files a/target/classes/org/hibernate/transform/AliasedTupleSubsetResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/BasicTransformerAdapter.class b/target/classes/org/hibernate/transform/BasicTransformerAdapter.class deleted file mode 100644 index a2fb45f5..00000000 Binary files a/target/classes/org/hibernate/transform/BasicTransformerAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/CacheableResultTransformer.class b/target/classes/org/hibernate/transform/CacheableResultTransformer.class deleted file mode 100644 index 689f8efb..00000000 Binary files a/target/classes/org/hibernate/transform/CacheableResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/DistinctResultTransformer$1.class b/target/classes/org/hibernate/transform/DistinctResultTransformer$1.class deleted file mode 100644 index 1115e0df..00000000 Binary files a/target/classes/org/hibernate/transform/DistinctResultTransformer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/DistinctResultTransformer$Identity.class b/target/classes/org/hibernate/transform/DistinctResultTransformer$Identity.class deleted file mode 100644 index a80676ff..00000000 Binary files a/target/classes/org/hibernate/transform/DistinctResultTransformer$Identity.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/DistinctResultTransformer.class b/target/classes/org/hibernate/transform/DistinctResultTransformer.class deleted file mode 100644 index bd4904ad..00000000 Binary files a/target/classes/org/hibernate/transform/DistinctResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/DistinctRootEntityResultTransformer.class b/target/classes/org/hibernate/transform/DistinctRootEntityResultTransformer.class deleted file mode 100644 index 1d0f2e90..00000000 Binary files a/target/classes/org/hibernate/transform/DistinctRootEntityResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/PassThroughResultTransformer.class b/target/classes/org/hibernate/transform/PassThroughResultTransformer.class deleted file mode 100644 index c862e673..00000000 Binary files a/target/classes/org/hibernate/transform/PassThroughResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/ResultTransformer.class b/target/classes/org/hibernate/transform/ResultTransformer.class deleted file mode 100644 index fb22344f..00000000 Binary files a/target/classes/org/hibernate/transform/ResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/RootEntityResultTransformer.class b/target/classes/org/hibernate/transform/RootEntityResultTransformer.class deleted file mode 100644 index 7cc33e17..00000000 Binary files a/target/classes/org/hibernate/transform/RootEntityResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/ToListResultTransformer.class b/target/classes/org/hibernate/transform/ToListResultTransformer.class deleted file mode 100644 index ef57ce74..00000000 Binary files a/target/classes/org/hibernate/transform/ToListResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/Transformers.class b/target/classes/org/hibernate/transform/Transformers.class deleted file mode 100644 index 841ec965..00000000 Binary files a/target/classes/org/hibernate/transform/Transformers.class and /dev/null differ diff --git a/target/classes/org/hibernate/transform/TupleSubsetResultTransformer.class b/target/classes/org/hibernate/transform/TupleSubsetResultTransformer.class deleted file mode 100644 index b987763e..00000000 Binary files a/target/classes/org/hibernate/transform/TupleSubsetResultTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/AbstractAttribute.class b/target/classes/org/hibernate/tuple/AbstractAttribute.class deleted file mode 100644 index 07e08e87..00000000 Binary files a/target/classes/org/hibernate/tuple/AbstractAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/AbstractNonIdentifierAttribute.class b/target/classes/org/hibernate/tuple/AbstractNonIdentifierAttribute.class deleted file mode 100644 index 0b943e4b..00000000 Binary files a/target/classes/org/hibernate/tuple/AbstractNonIdentifierAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/AnnotationValueGeneration.class b/target/classes/org/hibernate/tuple/AnnotationValueGeneration.class deleted file mode 100644 index fc70b4dd..00000000 Binary files a/target/classes/org/hibernate/tuple/AnnotationValueGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/Attribute.class b/target/classes/org/hibernate/tuple/Attribute.class deleted file mode 100644 index 69754aa4..00000000 Binary files a/target/classes/org/hibernate/tuple/Attribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/BaselineAttributeInformation$Builder.class b/target/classes/org/hibernate/tuple/BaselineAttributeInformation$Builder.class deleted file mode 100644 index cc0d1017..00000000 Binary files a/target/classes/org/hibernate/tuple/BaselineAttributeInformation$Builder.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/BaselineAttributeInformation.class b/target/classes/org/hibernate/tuple/BaselineAttributeInformation.class deleted file mode 100644 index 076a622e..00000000 Binary files a/target/classes/org/hibernate/tuple/BaselineAttributeInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/CreationTimestampGeneration.class b/target/classes/org/hibernate/tuple/CreationTimestampGeneration.class deleted file mode 100644 index 477f4743..00000000 Binary files a/target/classes/org/hibernate/tuple/CreationTimestampGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/DynamicMapInstantiator.class b/target/classes/org/hibernate/tuple/DynamicMapInstantiator.class deleted file mode 100644 index 245d7000..00000000 Binary files a/target/classes/org/hibernate/tuple/DynamicMapInstantiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/GeneratedValueGeneration.class b/target/classes/org/hibernate/tuple/GeneratedValueGeneration.class deleted file mode 100644 index 55ffa8f1..00000000 Binary files a/target/classes/org/hibernate/tuple/GeneratedValueGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/GenerationTiming$1.class b/target/classes/org/hibernate/tuple/GenerationTiming$1.class deleted file mode 100644 index c21fa6cd..00000000 Binary files a/target/classes/org/hibernate/tuple/GenerationTiming$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/GenerationTiming$2.class b/target/classes/org/hibernate/tuple/GenerationTiming$2.class deleted file mode 100644 index 38d16701..00000000 Binary files a/target/classes/org/hibernate/tuple/GenerationTiming$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/GenerationTiming$3.class b/target/classes/org/hibernate/tuple/GenerationTiming$3.class deleted file mode 100644 index c123a3f0..00000000 Binary files a/target/classes/org/hibernate/tuple/GenerationTiming$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/GenerationTiming.class b/target/classes/org/hibernate/tuple/GenerationTiming.class deleted file mode 100644 index 09799849..00000000 Binary files a/target/classes/org/hibernate/tuple/GenerationTiming.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/IdentifierAttribute.class b/target/classes/org/hibernate/tuple/IdentifierAttribute.class deleted file mode 100644 index 61337531..00000000 Binary files a/target/classes/org/hibernate/tuple/IdentifierAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/IdentifierProperty.class b/target/classes/org/hibernate/tuple/IdentifierProperty.class deleted file mode 100644 index 4cbcdc3e..00000000 Binary files a/target/classes/org/hibernate/tuple/IdentifierProperty.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/InDatabaseValueGenerationStrategy.class b/target/classes/org/hibernate/tuple/InDatabaseValueGenerationStrategy.class deleted file mode 100644 index d73233df..00000000 Binary files a/target/classes/org/hibernate/tuple/InDatabaseValueGenerationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/InMemoryValueGenerationStrategy.class b/target/classes/org/hibernate/tuple/InMemoryValueGenerationStrategy.class deleted file mode 100644 index f1b6a6db..00000000 Binary files a/target/classes/org/hibernate/tuple/InMemoryValueGenerationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/Instantiator.class b/target/classes/org/hibernate/tuple/Instantiator.class deleted file mode 100644 index 4badb977..00000000 Binary files a/target/classes/org/hibernate/tuple/Instantiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/NonIdentifierAttribute.class b/target/classes/org/hibernate/tuple/NonIdentifierAttribute.class deleted file mode 100644 index 2a19a5cb..00000000 Binary files a/target/classes/org/hibernate/tuple/NonIdentifierAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/PojoInstantiator.class b/target/classes/org/hibernate/tuple/PojoInstantiator.class deleted file mode 100644 index 4ce35b82..00000000 Binary files a/target/classes/org/hibernate/tuple/PojoInstantiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/Property.class b/target/classes/org/hibernate/tuple/Property.class deleted file mode 100644 index 7495b7f2..00000000 Binary files a/target/classes/org/hibernate/tuple/Property.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/PropertyFactory$1.class b/target/classes/org/hibernate/tuple/PropertyFactory$1.class deleted file mode 100644 index 319f6133..00000000 Binary files a/target/classes/org/hibernate/tuple/PropertyFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/PropertyFactory$NonIdentifierAttributeNature.class b/target/classes/org/hibernate/tuple/PropertyFactory$NonIdentifierAttributeNature.class deleted file mode 100644 index 9caf8492..00000000 Binary files a/target/classes/org/hibernate/tuple/PropertyFactory$NonIdentifierAttributeNature.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/PropertyFactory.class b/target/classes/org/hibernate/tuple/PropertyFactory.class deleted file mode 100644 index 46506f0e..00000000 Binary files a/target/classes/org/hibernate/tuple/PropertyFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/StandardProperty.class b/target/classes/org/hibernate/tuple/StandardProperty.class deleted file mode 100644 index 26e57a1b..00000000 Binary files a/target/classes/org/hibernate/tuple/StandardProperty.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentCalendarGenerator.class b/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentCalendarGenerator.class deleted file mode 100644 index 63b89bdb..00000000 Binary files a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentCalendarGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentDateGenerator.class b/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentDateGenerator.class deleted file mode 100644 index 6db42c0e..00000000 Binary files a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentDateGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlDateGenerator.class b/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlDateGenerator.class deleted file mode 100644 index a0c309b8..00000000 Binary files a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlDateGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlTimeGenerator.class b/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlTimeGenerator.class deleted file mode 100644 index 168678fe..00000000 Binary files a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlTimeGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlTimestampGenerator.class b/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlTimestampGenerator.class deleted file mode 100644 index c086167a..00000000 Binary files a/target/classes/org/hibernate/tuple/TimestampGenerators$CurrentSqlTimestampGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/TimestampGenerators.class b/target/classes/org/hibernate/tuple/TimestampGenerators.class deleted file mode 100644 index 633c1e54..00000000 Binary files a/target/classes/org/hibernate/tuple/TimestampGenerators.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/Tuplizer.class b/target/classes/org/hibernate/tuple/Tuplizer.class deleted file mode 100644 index 1fcf95fa..00000000 Binary files a/target/classes/org/hibernate/tuple/Tuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/UpdateTimestampGeneration.class b/target/classes/org/hibernate/tuple/UpdateTimestampGeneration.class deleted file mode 100644 index d0787d35..00000000 Binary files a/target/classes/org/hibernate/tuple/UpdateTimestampGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/ValueGeneration.class b/target/classes/org/hibernate/tuple/ValueGeneration.class deleted file mode 100644 index 3f87552c..00000000 Binary files a/target/classes/org/hibernate/tuple/ValueGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/ValueGenerator.class b/target/classes/org/hibernate/tuple/ValueGenerator.class deleted file mode 100644 index 89c7f42e..00000000 Binary files a/target/classes/org/hibernate/tuple/ValueGenerator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/VmValueGeneration.class b/target/classes/org/hibernate/tuple/VmValueGeneration.class deleted file mode 100644 index 2f0e3cfc..00000000 Binary files a/target/classes/org/hibernate/tuple/VmValueGeneration.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/AbstractComponentTuplizer.class b/target/classes/org/hibernate/tuple/component/AbstractComponentTuplizer.class deleted file mode 100644 index c408c6b4..00000000 Binary files a/target/classes/org/hibernate/tuple/component/AbstractComponentTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute$1$1.class b/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute$1$1.class deleted file mode 100644 index 1938ba6b..00000000 Binary files a/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute$1$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute$1.class b/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute$1.class deleted file mode 100644 index e1fe04d5..00000000 Binary files a/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute.class b/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute.class deleted file mode 100644 index 1c199698..00000000 Binary files a/target/classes/org/hibernate/tuple/component/AbstractCompositionAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/ComponentMetamodel.class b/target/classes/org/hibernate/tuple/component/ComponentMetamodel.class deleted file mode 100644 index a1d47d56..00000000 Binary files a/target/classes/org/hibernate/tuple/component/ComponentMetamodel.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/ComponentTuplizer.class b/target/classes/org/hibernate/tuple/component/ComponentTuplizer.class deleted file mode 100644 index d5359632..00000000 Binary files a/target/classes/org/hibernate/tuple/component/ComponentTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/ComponentTuplizerFactory.class b/target/classes/org/hibernate/tuple/component/ComponentTuplizerFactory.class deleted file mode 100644 index cd3d0a8f..00000000 Binary files a/target/classes/org/hibernate/tuple/component/ComponentTuplizerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/CompositeBasedAssociationAttribute$1.class b/target/classes/org/hibernate/tuple/component/CompositeBasedAssociationAttribute$1.class deleted file mode 100644 index 72f378d4..00000000 Binary files a/target/classes/org/hibernate/tuple/component/CompositeBasedAssociationAttribute$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/CompositeBasedAssociationAttribute.class b/target/classes/org/hibernate/tuple/component/CompositeBasedAssociationAttribute.class deleted file mode 100644 index dea7161a..00000000 Binary files a/target/classes/org/hibernate/tuple/component/CompositeBasedAssociationAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/CompositeBasedBasicAttribute.class b/target/classes/org/hibernate/tuple/component/CompositeBasedBasicAttribute.class deleted file mode 100644 index cb3e8510..00000000 Binary files a/target/classes/org/hibernate/tuple/component/CompositeBasedBasicAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/CompositionBasedCompositionAttribute.class b/target/classes/org/hibernate/tuple/component/CompositionBasedCompositionAttribute.class deleted file mode 100644 index 5689ab0f..00000000 Binary files a/target/classes/org/hibernate/tuple/component/CompositionBasedCompositionAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/DynamicMapComponentTuplizer.class b/target/classes/org/hibernate/tuple/component/DynamicMapComponentTuplizer.class deleted file mode 100644 index 6c4a27fc..00000000 Binary files a/target/classes/org/hibernate/tuple/component/DynamicMapComponentTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/PojoComponentTuplizer$ProxiedInstantiator.class b/target/classes/org/hibernate/tuple/component/PojoComponentTuplizer$ProxiedInstantiator.class deleted file mode 100644 index f5eecd0f..00000000 Binary files a/target/classes/org/hibernate/tuple/component/PojoComponentTuplizer$ProxiedInstantiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/component/PojoComponentTuplizer.class b/target/classes/org/hibernate/tuple/component/PojoComponentTuplizer.class deleted file mode 100644 index 72e0134f..00000000 Binary files a/target/classes/org/hibernate/tuple/component/PojoComponentTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/AbstractEntityBasedAttribute.class b/target/classes/org/hibernate/tuple/entity/AbstractEntityBasedAttribute.class deleted file mode 100644 index 810bac2f..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/AbstractEntityBasedAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$1.class b/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$1.class deleted file mode 100644 index 762f03cf..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$IncrediblySillyJpaMapsIdMappedIdentifierValueMarshaller.class b/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$IncrediblySillyJpaMapsIdMappedIdentifierValueMarshaller.class deleted file mode 100644 index de219635..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$IncrediblySillyJpaMapsIdMappedIdentifierValueMarshaller.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$MappedIdentifierValueMarshaller.class b/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$MappedIdentifierValueMarshaller.class deleted file mode 100644 index e0d39109..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$MappedIdentifierValueMarshaller.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$NormalMappedIdentifierValueMarshaller.class b/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$NormalMappedIdentifierValueMarshaller.class deleted file mode 100644 index 8d0e9d81..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer$NormalMappedIdentifierValueMarshaller.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer.class b/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer.class deleted file mode 100644 index 4f6a5062..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/AbstractEntityTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/BytecodeEnhancementMetadataNonPojoImpl.class b/target/classes/org/hibernate/tuple/entity/BytecodeEnhancementMetadataNonPojoImpl.class deleted file mode 100644 index e399d3f8..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/BytecodeEnhancementMetadataNonPojoImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/BytecodeEnhancementMetadataPojoImpl.class b/target/classes/org/hibernate/tuple/entity/BytecodeEnhancementMetadataPojoImpl.class deleted file mode 100644 index cec9afdb..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/BytecodeEnhancementMetadataPojoImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/DynamicMapEntityTuplizer$BasicEntityNameResolver.class b/target/classes/org/hibernate/tuple/entity/DynamicMapEntityTuplizer$BasicEntityNameResolver.class deleted file mode 100644 index 27dc3101..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/DynamicMapEntityTuplizer$BasicEntityNameResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/DynamicMapEntityTuplizer.class b/target/classes/org/hibernate/tuple/entity/DynamicMapEntityTuplizer.class deleted file mode 100644 index 22ba46ae..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/DynamicMapEntityTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityBasedAssociationAttribute$1.class b/target/classes/org/hibernate/tuple/entity/EntityBasedAssociationAttribute$1.class deleted file mode 100644 index 8d7ef73f..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityBasedAssociationAttribute$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityBasedAssociationAttribute.class b/target/classes/org/hibernate/tuple/entity/EntityBasedAssociationAttribute.class deleted file mode 100644 index 7b279225..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityBasedAssociationAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityBasedBasicAttribute.class b/target/classes/org/hibernate/tuple/entity/EntityBasedBasicAttribute.class deleted file mode 100644 index 98bf101c..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityBasedBasicAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityBasedCompositionAttribute.class b/target/classes/org/hibernate/tuple/entity/EntityBasedCompositionAttribute.class deleted file mode 100644 index e0eeec37..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityBasedCompositionAttribute.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$1.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$1.class deleted file mode 100644 index 65c5a6b0..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$CompositeGenerationStrategyPairBuilder.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$CompositeGenerationStrategyPairBuilder.class deleted file mode 100644 index 9df5f646..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$CompositeGenerationStrategyPairBuilder.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$FullInMemoryValueGenerationStrategy.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$FullInMemoryValueGenerationStrategy.class deleted file mode 100644 index 80fcf0ad..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$FullInMemoryValueGenerationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$GenerationStrategyPair.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$GenerationStrategyPair.class deleted file mode 100644 index a229b73b..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$GenerationStrategyPair.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$InDatabaseValueGenerationStrategyImpl.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$InDatabaseValueGenerationStrategyImpl.class deleted file mode 100644 index 7fee57ac..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$InDatabaseValueGenerationStrategyImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$NoInDatabaseValueGenerationStrategy.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$NoInDatabaseValueGenerationStrategy.class deleted file mode 100644 index 628d8ede..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$NoInDatabaseValueGenerationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$NoInMemoryValueGenerationStrategy.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$NoInMemoryValueGenerationStrategy.class deleted file mode 100644 index 1a42b423..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$NoInMemoryValueGenerationStrategy.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$ValueGenerationStrategyException.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel$ValueGenerationStrategyException.class deleted file mode 100644 index 897c1edc..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel$ValueGenerationStrategyException.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityMetamodel.class b/target/classes/org/hibernate/tuple/entity/EntityMetamodel.class deleted file mode 100644 index c94c24f6..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityMetamodel.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityTuplizer.class b/target/classes/org/hibernate/tuple/entity/EntityTuplizer.class deleted file mode 100644 index 3ccb25a8..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/EntityTuplizerFactory.class b/target/classes/org/hibernate/tuple/entity/EntityTuplizerFactory.class deleted file mode 100644 index 868a6b61..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/EntityTuplizerFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/PojoEntityInstantiator.class b/target/classes/org/hibernate/tuple/entity/PojoEntityInstantiator.class deleted file mode 100644 index dc33161f..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/PojoEntityInstantiator.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/PojoEntityTuplizer.class b/target/classes/org/hibernate/tuple/entity/PojoEntityTuplizer.class deleted file mode 100644 index bb7cc524..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/PojoEntityTuplizer.class and /dev/null differ diff --git a/target/classes/org/hibernate/tuple/entity/VersionProperty.class b/target/classes/org/hibernate/tuple/entity/VersionProperty.class deleted file mode 100644 index 52ed0a5c..00000000 Binary files a/target/classes/org/hibernate/tuple/entity/VersionProperty.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/AbstractSingleColumnStandardBasicType.class b/target/classes/org/hibernate/type/AbstractSingleColumnStandardBasicType.class deleted file mode 100644 index 038082f8..00000000 Binary files a/target/classes/org/hibernate/type/AbstractSingleColumnStandardBasicType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/AbstractStandardBasicType.class b/target/classes/org/hibernate/type/AbstractStandardBasicType.class deleted file mode 100644 index b4ed4479..00000000 Binary files a/target/classes/org/hibernate/type/AbstractStandardBasicType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/AbstractType.class b/target/classes/org/hibernate/type/AbstractType.class deleted file mode 100644 index fccb47ab..00000000 Binary files a/target/classes/org/hibernate/type/AbstractType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/AdaptedImmutableType.class b/target/classes/org/hibernate/type/AdaptedImmutableType.class deleted file mode 100644 index 8315015c..00000000 Binary files a/target/classes/org/hibernate/type/AdaptedImmutableType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/AnyType$ObjectTypeCacheEntry.class b/target/classes/org/hibernate/type/AnyType$ObjectTypeCacheEntry.class deleted file mode 100644 index 7fdb40dc..00000000 Binary files a/target/classes/org/hibernate/type/AnyType$ObjectTypeCacheEntry.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/AnyType.class b/target/classes/org/hibernate/type/AnyType.class deleted file mode 100644 index e6f2d552..00000000 Binary files a/target/classes/org/hibernate/type/AnyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ArrayType.class b/target/classes/org/hibernate/type/ArrayType.class deleted file mode 100644 index 9d4acb4e..00000000 Binary files a/target/classes/org/hibernate/type/ArrayType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/AssociationType.class b/target/classes/org/hibernate/type/AssociationType.class deleted file mode 100644 index 5607e17d..00000000 Binary files a/target/classes/org/hibernate/type/AssociationType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BagType.class b/target/classes/org/hibernate/type/BagType.class deleted file mode 100644 index d8d6165b..00000000 Binary files a/target/classes/org/hibernate/type/BagType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BasicType.class b/target/classes/org/hibernate/type/BasicType.class deleted file mode 100644 index 499f1ca4..00000000 Binary files a/target/classes/org/hibernate/type/BasicType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BasicTypeRegistry.class b/target/classes/org/hibernate/type/BasicTypeRegistry.class deleted file mode 100644 index 2ef26719..00000000 Binary files a/target/classes/org/hibernate/type/BasicTypeRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BigDecimalType.class b/target/classes/org/hibernate/type/BigDecimalType.class deleted file mode 100644 index 48cfb7d2..00000000 Binary files a/target/classes/org/hibernate/type/BigDecimalType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BigIntegerType.class b/target/classes/org/hibernate/type/BigIntegerType.class deleted file mode 100644 index c87a07c9..00000000 Binary files a/target/classes/org/hibernate/type/BigIntegerType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BinaryType.class b/target/classes/org/hibernate/type/BinaryType.class deleted file mode 100644 index cfd97444..00000000 Binary files a/target/classes/org/hibernate/type/BinaryType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BlobType.class b/target/classes/org/hibernate/type/BlobType.class deleted file mode 100644 index c1498a3b..00000000 Binary files a/target/classes/org/hibernate/type/BlobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/BooleanType.class b/target/classes/org/hibernate/type/BooleanType.class deleted file mode 100644 index 6f9a6a1d..00000000 Binary files a/target/classes/org/hibernate/type/BooleanType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ByteType.class b/target/classes/org/hibernate/type/ByteType.class deleted file mode 100644 index 07d300db..00000000 Binary files a/target/classes/org/hibernate/type/ByteType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CalendarDateType.class b/target/classes/org/hibernate/type/CalendarDateType.class deleted file mode 100644 index 445462cf..00000000 Binary files a/target/classes/org/hibernate/type/CalendarDateType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CalendarTimeType.class b/target/classes/org/hibernate/type/CalendarTimeType.class deleted file mode 100644 index faabea2e..00000000 Binary files a/target/classes/org/hibernate/type/CalendarTimeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CalendarType.class b/target/classes/org/hibernate/type/CalendarType.class deleted file mode 100644 index 928b0130..00000000 Binary files a/target/classes/org/hibernate/type/CalendarType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CharArrayType.class b/target/classes/org/hibernate/type/CharArrayType.class deleted file mode 100644 index dab8f488..00000000 Binary files a/target/classes/org/hibernate/type/CharArrayType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CharacterArrayClobType.class b/target/classes/org/hibernate/type/CharacterArrayClobType.class deleted file mode 100644 index b8f0ee3b..00000000 Binary files a/target/classes/org/hibernate/type/CharacterArrayClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CharacterArrayNClobType.class b/target/classes/org/hibernate/type/CharacterArrayNClobType.class deleted file mode 100644 index 51d3fdaa..00000000 Binary files a/target/classes/org/hibernate/type/CharacterArrayNClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CharacterArrayType.class b/target/classes/org/hibernate/type/CharacterArrayType.class deleted file mode 100644 index aae4fd58..00000000 Binary files a/target/classes/org/hibernate/type/CharacterArrayType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CharacterNCharType.class b/target/classes/org/hibernate/type/CharacterNCharType.class deleted file mode 100644 index a9b5a155..00000000 Binary files a/target/classes/org/hibernate/type/CharacterNCharType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CharacterType.class b/target/classes/org/hibernate/type/CharacterType.class deleted file mode 100644 index 5382e718..00000000 Binary files a/target/classes/org/hibernate/type/CharacterType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ClassType.class b/target/classes/org/hibernate/type/ClassType.class deleted file mode 100644 index f6d95dad..00000000 Binary files a/target/classes/org/hibernate/type/ClassType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ClobType.class b/target/classes/org/hibernate/type/ClobType.class deleted file mode 100644 index 48b36d01..00000000 Binary files a/target/classes/org/hibernate/type/ClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CollectionType.class b/target/classes/org/hibernate/type/CollectionType.class deleted file mode 100644 index f572797e..00000000 Binary files a/target/classes/org/hibernate/type/CollectionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ComponentType.class b/target/classes/org/hibernate/type/ComponentType.class deleted file mode 100644 index 547cad06..00000000 Binary files a/target/classes/org/hibernate/type/ComponentType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CompositeCustomType.class b/target/classes/org/hibernate/type/CompositeCustomType.class deleted file mode 100644 index 0052c66b..00000000 Binary files a/target/classes/org/hibernate/type/CompositeCustomType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CompositeType.class b/target/classes/org/hibernate/type/CompositeType.class deleted file mode 100644 index 80d45530..00000000 Binary files a/target/classes/org/hibernate/type/CompositeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CurrencyType.class b/target/classes/org/hibernate/type/CurrencyType.class deleted file mode 100644 index c5e82bbe..00000000 Binary files a/target/classes/org/hibernate/type/CurrencyType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CustomCollectionType.class b/target/classes/org/hibernate/type/CustomCollectionType.class deleted file mode 100644 index 43c8791d..00000000 Binary files a/target/classes/org/hibernate/type/CustomCollectionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/CustomType.class b/target/classes/org/hibernate/type/CustomType.class deleted file mode 100644 index 7f76c5ba..00000000 Binary files a/target/classes/org/hibernate/type/CustomType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/DateType.class b/target/classes/org/hibernate/type/DateType.class deleted file mode 100644 index 8ea786b7..00000000 Binary files a/target/classes/org/hibernate/type/DateType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/DbTimestampType.class b/target/classes/org/hibernate/type/DbTimestampType.class deleted file mode 100644 index 0b5de945..00000000 Binary files a/target/classes/org/hibernate/type/DbTimestampType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/DiscriminatorType.class b/target/classes/org/hibernate/type/DiscriminatorType.class deleted file mode 100644 index 529af8ab..00000000 Binary files a/target/classes/org/hibernate/type/DiscriminatorType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/DoubleType.class b/target/classes/org/hibernate/type/DoubleType.class deleted file mode 100644 index 93bdcd24..00000000 Binary files a/target/classes/org/hibernate/type/DoubleType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/DurationType.class b/target/classes/org/hibernate/type/DurationType.class deleted file mode 100644 index 852e0e8f..00000000 Binary files a/target/classes/org/hibernate/type/DurationType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EmbeddedComponentType.class b/target/classes/org/hibernate/type/EmbeddedComponentType.class deleted file mode 100644 index 2ccab233..00000000 Binary files a/target/classes/org/hibernate/type/EmbeddedComponentType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EntityType.class b/target/classes/org/hibernate/type/EntityType.class deleted file mode 100644 index 39ee63cb..00000000 Binary files a/target/classes/org/hibernate/type/EntityType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EnumType$1.class b/target/classes/org/hibernate/type/EnumType$1.class deleted file mode 100644 index e9e30b6a..00000000 Binary files a/target/classes/org/hibernate/type/EnumType$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EnumType$EnumValueMapper.class b/target/classes/org/hibernate/type/EnumType$EnumValueMapper.class deleted file mode 100644 index eb421804..00000000 Binary files a/target/classes/org/hibernate/type/EnumType$EnumValueMapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EnumType$EnumValueMapperSupport.class b/target/classes/org/hibernate/type/EnumType$EnumValueMapperSupport.class deleted file mode 100644 index f271403d..00000000 Binary files a/target/classes/org/hibernate/type/EnumType$EnumValueMapperSupport.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EnumType$NamedEnumValueMapper.class b/target/classes/org/hibernate/type/EnumType$NamedEnumValueMapper.class deleted file mode 100644 index 4423aa58..00000000 Binary files a/target/classes/org/hibernate/type/EnumType$NamedEnumValueMapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EnumType$OrdinalEnumValueMapper.class b/target/classes/org/hibernate/type/EnumType$OrdinalEnumValueMapper.class deleted file mode 100644 index 90056bc2..00000000 Binary files a/target/classes/org/hibernate/type/EnumType$OrdinalEnumValueMapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/EnumType.class b/target/classes/org/hibernate/type/EnumType.class deleted file mode 100644 index 8cdddd48..00000000 Binary files a/target/classes/org/hibernate/type/EnumType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/FloatType.class b/target/classes/org/hibernate/type/FloatType.class deleted file mode 100644 index 607ecd4d..00000000 Binary files a/target/classes/org/hibernate/type/FloatType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ForeignKeyDirection$1.class b/target/classes/org/hibernate/type/ForeignKeyDirection$1.class deleted file mode 100644 index 014d0cd2..00000000 Binary files a/target/classes/org/hibernate/type/ForeignKeyDirection$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ForeignKeyDirection$2.class b/target/classes/org/hibernate/type/ForeignKeyDirection$2.class deleted file mode 100644 index 33baddff..00000000 Binary files a/target/classes/org/hibernate/type/ForeignKeyDirection$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ForeignKeyDirection.class b/target/classes/org/hibernate/type/ForeignKeyDirection.class deleted file mode 100644 index aad6d2ea..00000000 Binary files a/target/classes/org/hibernate/type/ForeignKeyDirection.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/IdentifierBagType.class b/target/classes/org/hibernate/type/IdentifierBagType.class deleted file mode 100644 index 14f0370d..00000000 Binary files a/target/classes/org/hibernate/type/IdentifierBagType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/IdentifierType.class b/target/classes/org/hibernate/type/IdentifierType.class deleted file mode 100644 index 152805c8..00000000 Binary files a/target/classes/org/hibernate/type/IdentifierType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ImageType.class b/target/classes/org/hibernate/type/ImageType.class deleted file mode 100644 index 13a43f41..00000000 Binary files a/target/classes/org/hibernate/type/ImageType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/InstantType.class b/target/classes/org/hibernate/type/InstantType.class deleted file mode 100644 index 221e1cd8..00000000 Binary files a/target/classes/org/hibernate/type/InstantType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/IntegerType.class b/target/classes/org/hibernate/type/IntegerType.class deleted file mode 100644 index ed6753ce..00000000 Binary files a/target/classes/org/hibernate/type/IntegerType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/Java8DateTimeTypeContributor.class b/target/classes/org/hibernate/type/Java8DateTimeTypeContributor.class deleted file mode 100644 index 3419f4a2..00000000 Binary files a/target/classes/org/hibernate/type/Java8DateTimeTypeContributor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ListType.class b/target/classes/org/hibernate/type/ListType.class deleted file mode 100644 index da7f803a..00000000 Binary files a/target/classes/org/hibernate/type/ListType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/LiteralType.class b/target/classes/org/hibernate/type/LiteralType.class deleted file mode 100644 index 35e8ffba..00000000 Binary files a/target/classes/org/hibernate/type/LiteralType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/LocalDateTimeType.class b/target/classes/org/hibernate/type/LocalDateTimeType.class deleted file mode 100644 index 21b0e17b..00000000 Binary files a/target/classes/org/hibernate/type/LocalDateTimeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/LocalDateType.class b/target/classes/org/hibernate/type/LocalDateType.class deleted file mode 100644 index 435050c3..00000000 Binary files a/target/classes/org/hibernate/type/LocalDateType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/LocalTimeType.class b/target/classes/org/hibernate/type/LocalTimeType.class deleted file mode 100644 index 7add0e3d..00000000 Binary files a/target/classes/org/hibernate/type/LocalTimeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/LocaleType.class b/target/classes/org/hibernate/type/LocaleType.class deleted file mode 100644 index b5a13872..00000000 Binary files a/target/classes/org/hibernate/type/LocaleType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/LongType.class b/target/classes/org/hibernate/type/LongType.class deleted file mode 100644 index 6dd33adf..00000000 Binary files a/target/classes/org/hibernate/type/LongType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ManyToOneType.class b/target/classes/org/hibernate/type/ManyToOneType.class deleted file mode 100644 index f5f08bfe..00000000 Binary files a/target/classes/org/hibernate/type/ManyToOneType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/MapType.class b/target/classes/org/hibernate/type/MapType.class deleted file mode 100644 index 5425b186..00000000 Binary files a/target/classes/org/hibernate/type/MapType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/MaterializedBlobType.class b/target/classes/org/hibernate/type/MaterializedBlobType.class deleted file mode 100644 index bc7428c1..00000000 Binary files a/target/classes/org/hibernate/type/MaterializedBlobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/MaterializedClobType.class b/target/classes/org/hibernate/type/MaterializedClobType.class deleted file mode 100644 index 5f55c4ed..00000000 Binary files a/target/classes/org/hibernate/type/MaterializedClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/MaterializedNClobType.class b/target/classes/org/hibernate/type/MaterializedNClobType.class deleted file mode 100644 index d80e3123..00000000 Binary files a/target/classes/org/hibernate/type/MaterializedNClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/MetaType.class b/target/classes/org/hibernate/type/MetaType.class deleted file mode 100644 index 8e82a4d2..00000000 Binary files a/target/classes/org/hibernate/type/MetaType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/NClobType.class b/target/classes/org/hibernate/type/NClobType.class deleted file mode 100644 index e8c4dd2f..00000000 Binary files a/target/classes/org/hibernate/type/NClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/NTextType.class b/target/classes/org/hibernate/type/NTextType.class deleted file mode 100644 index 6195e9e6..00000000 Binary files a/target/classes/org/hibernate/type/NTextType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/NumericBooleanType.class b/target/classes/org/hibernate/type/NumericBooleanType.class deleted file mode 100644 index cc419178..00000000 Binary files a/target/classes/org/hibernate/type/NumericBooleanType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ObjectType.class b/target/classes/org/hibernate/type/ObjectType.class deleted file mode 100644 index 8d3d9e0a..00000000 Binary files a/target/classes/org/hibernate/type/ObjectType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/OffsetDateTimeType.class b/target/classes/org/hibernate/type/OffsetDateTimeType.class deleted file mode 100644 index d1d428ba..00000000 Binary files a/target/classes/org/hibernate/type/OffsetDateTimeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/OffsetTimeType.class b/target/classes/org/hibernate/type/OffsetTimeType.class deleted file mode 100644 index 0f36fa8c..00000000 Binary files a/target/classes/org/hibernate/type/OffsetTimeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/OneToOneType.class b/target/classes/org/hibernate/type/OneToOneType.class deleted file mode 100644 index 3d80a002..00000000 Binary files a/target/classes/org/hibernate/type/OneToOneType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/OrderedMapType.class b/target/classes/org/hibernate/type/OrderedMapType.class deleted file mode 100644 index 6124fa1e..00000000 Binary files a/target/classes/org/hibernate/type/OrderedMapType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/OrderedSetType.class b/target/classes/org/hibernate/type/OrderedSetType.class deleted file mode 100644 index 46d987e2..00000000 Binary files a/target/classes/org/hibernate/type/OrderedSetType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor$1.class b/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor$1.class deleted file mode 100644 index e6f6d918..00000000 Binary files a/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor$2.class b/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor$2.class deleted file mode 100644 index a684659d..00000000 Binary files a/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor.class b/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor.class deleted file mode 100644 index 43799b6d..00000000 Binary files a/target/classes/org/hibernate/type/PostgresUUIDType$PostgresUUIDSqlTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/PostgresUUIDType.class b/target/classes/org/hibernate/type/PostgresUUIDType.class deleted file mode 100644 index c5ef7e52..00000000 Binary files a/target/classes/org/hibernate/type/PostgresUUIDType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/PrimitiveCharacterArrayClobType.class b/target/classes/org/hibernate/type/PrimitiveCharacterArrayClobType.class deleted file mode 100644 index 599c6e14..00000000 Binary files a/target/classes/org/hibernate/type/PrimitiveCharacterArrayClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/PrimitiveCharacterArrayNClobType.class b/target/classes/org/hibernate/type/PrimitiveCharacterArrayNClobType.class deleted file mode 100644 index a6ef4ef5..00000000 Binary files a/target/classes/org/hibernate/type/PrimitiveCharacterArrayNClobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/PrimitiveType.class b/target/classes/org/hibernate/type/PrimitiveType.class deleted file mode 100644 index 660f7341..00000000 Binary files a/target/classes/org/hibernate/type/PrimitiveType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ProcedureParameterExtractionAware.class b/target/classes/org/hibernate/type/ProcedureParameterExtractionAware.class deleted file mode 100644 index d6b230cf..00000000 Binary files a/target/classes/org/hibernate/type/ProcedureParameterExtractionAware.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ProcedureParameterNamedBinder.class b/target/classes/org/hibernate/type/ProcedureParameterNamedBinder.class deleted file mode 100644 index 31cce640..00000000 Binary files a/target/classes/org/hibernate/type/ProcedureParameterNamedBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SerializableToBlobType.class b/target/classes/org/hibernate/type/SerializableToBlobType.class deleted file mode 100644 index 12071e18..00000000 Binary files a/target/classes/org/hibernate/type/SerializableToBlobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SerializableType.class b/target/classes/org/hibernate/type/SerializableType.class deleted file mode 100644 index 2f2deae8..00000000 Binary files a/target/classes/org/hibernate/type/SerializableType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SerializationException.class b/target/classes/org/hibernate/type/SerializationException.class deleted file mode 100644 index 7afbd9d7..00000000 Binary files a/target/classes/org/hibernate/type/SerializationException.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SetType.class b/target/classes/org/hibernate/type/SetType.class deleted file mode 100644 index dc947a1b..00000000 Binary files a/target/classes/org/hibernate/type/SetType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ShortType.class b/target/classes/org/hibernate/type/ShortType.class deleted file mode 100644 index 726f4ddb..00000000 Binary files a/target/classes/org/hibernate/type/ShortType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SingleColumnType.class b/target/classes/org/hibernate/type/SingleColumnType.class deleted file mode 100644 index 41ac0cfb..00000000 Binary files a/target/classes/org/hibernate/type/SingleColumnType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SortedMapType.class b/target/classes/org/hibernate/type/SortedMapType.class deleted file mode 100644 index d8773193..00000000 Binary files a/target/classes/org/hibernate/type/SortedMapType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SortedSetType.class b/target/classes/org/hibernate/type/SortedSetType.class deleted file mode 100644 index c513098e..00000000 Binary files a/target/classes/org/hibernate/type/SortedSetType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/SpecialOneToOneType.class b/target/classes/org/hibernate/type/SpecialOneToOneType.class deleted file mode 100644 index 6806ec44..00000000 Binary files a/target/classes/org/hibernate/type/SpecialOneToOneType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/StandardBasicTypes.class b/target/classes/org/hibernate/type/StandardBasicTypes.class deleted file mode 100644 index 742a8001..00000000 Binary files a/target/classes/org/hibernate/type/StandardBasicTypes.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/StringNVarcharType.class b/target/classes/org/hibernate/type/StringNVarcharType.class deleted file mode 100644 index 2317978d..00000000 Binary files a/target/classes/org/hibernate/type/StringNVarcharType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/StringRepresentableType.class b/target/classes/org/hibernate/type/StringRepresentableType.class deleted file mode 100644 index b1383b9d..00000000 Binary files a/target/classes/org/hibernate/type/StringRepresentableType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/StringType.class b/target/classes/org/hibernate/type/StringType.class deleted file mode 100644 index 974f666b..00000000 Binary files a/target/classes/org/hibernate/type/StringType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TextType.class b/target/classes/org/hibernate/type/TextType.class deleted file mode 100644 index f82967e5..00000000 Binary files a/target/classes/org/hibernate/type/TextType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TimeType.class b/target/classes/org/hibernate/type/TimeType.class deleted file mode 100644 index 14c42000..00000000 Binary files a/target/classes/org/hibernate/type/TimeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TimeZoneType.class b/target/classes/org/hibernate/type/TimeZoneType.class deleted file mode 100644 index 4c0b0829..00000000 Binary files a/target/classes/org/hibernate/type/TimeZoneType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TimestampType.class b/target/classes/org/hibernate/type/TimestampType.class deleted file mode 100644 index ef94a31d..00000000 Binary files a/target/classes/org/hibernate/type/TimestampType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TrueFalseType.class b/target/classes/org/hibernate/type/TrueFalseType.class deleted file mode 100644 index fba227e0..00000000 Binary files a/target/classes/org/hibernate/type/TrueFalseType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/Type.class b/target/classes/org/hibernate/type/Type.class deleted file mode 100644 index 66d77e23..00000000 Binary files a/target/classes/org/hibernate/type/Type.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TypeFactory$1.class b/target/classes/org/hibernate/type/TypeFactory$1.class deleted file mode 100644 index a4a6344c..00000000 Binary files a/target/classes/org/hibernate/type/TypeFactory$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TypeFactory$TypeScope.class b/target/classes/org/hibernate/type/TypeFactory$TypeScope.class deleted file mode 100644 index 1c09c93c..00000000 Binary files a/target/classes/org/hibernate/type/TypeFactory$TypeScope.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TypeFactory$TypeScopeImpl.class b/target/classes/org/hibernate/type/TypeFactory$TypeScopeImpl.class deleted file mode 100644 index 9d9b0ecb..00000000 Binary files a/target/classes/org/hibernate/type/TypeFactory$TypeScopeImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TypeFactory.class b/target/classes/org/hibernate/type/TypeFactory.class deleted file mode 100644 index f6420ae5..00000000 Binary files a/target/classes/org/hibernate/type/TypeFactory.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TypeHelper.class b/target/classes/org/hibernate/type/TypeHelper.class deleted file mode 100644 index 9bd000b4..00000000 Binary files a/target/classes/org/hibernate/type/TypeHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/TypeResolver.class b/target/classes/org/hibernate/type/TypeResolver.class deleted file mode 100644 index 4b9303b3..00000000 Binary files a/target/classes/org/hibernate/type/TypeResolver.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/UUIDBinaryType.class b/target/classes/org/hibernate/type/UUIDBinaryType.class deleted file mode 100644 index 9803052b..00000000 Binary files a/target/classes/org/hibernate/type/UUIDBinaryType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/UUIDCharType.class b/target/classes/org/hibernate/type/UUIDCharType.class deleted file mode 100644 index 1dd41081..00000000 Binary files a/target/classes/org/hibernate/type/UUIDCharType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/UrlType.class b/target/classes/org/hibernate/type/UrlType.class deleted file mode 100644 index 280580ad..00000000 Binary files a/target/classes/org/hibernate/type/UrlType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/VersionType.class b/target/classes/org/hibernate/type/VersionType.class deleted file mode 100644 index cc5ca6b4..00000000 Binary files a/target/classes/org/hibernate/type/VersionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/WrappedMaterializedBlobType.class b/target/classes/org/hibernate/type/WrappedMaterializedBlobType.class deleted file mode 100644 index 1b9fb358..00000000 Binary files a/target/classes/org/hibernate/type/WrappedMaterializedBlobType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/WrapperBinaryType.class b/target/classes/org/hibernate/type/WrapperBinaryType.class deleted file mode 100644 index 1b3164a7..00000000 Binary files a/target/classes/org/hibernate/type/WrapperBinaryType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/YesNoType.class b/target/classes/org/hibernate/type/YesNoType.class deleted file mode 100644 index 261ef294..00000000 Binary files a/target/classes/org/hibernate/type/YesNoType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/ZonedDateTimeType.class b/target/classes/org/hibernate/type/ZonedDateTimeType.class deleted file mode 100644 index e6aca39a..00000000 Binary files a/target/classes/org/hibernate/type/ZonedDateTimeType.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/JdbcTypeNameMapper.class b/target/classes/org/hibernate/type/descriptor/JdbcTypeNameMapper.class deleted file mode 100644 index 8c974dd9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/JdbcTypeNameMapper.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/ValueBinder.class b/target/classes/org/hibernate/type/descriptor/ValueBinder.class deleted file mode 100644 index f1b50cae..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/ValueBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/ValueExtractor.class b/target/classes/org/hibernate/type/descriptor/ValueExtractor.class deleted file mode 100644 index 361adfe5..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/ValueExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/WrapperOptions.class b/target/classes/org/hibernate/type/descriptor/WrapperOptions.class deleted file mode 100644 index 5e2a0109..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/WrapperOptions.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/WrapperOptionsContext.class b/target/classes/org/hibernate/type/descriptor/WrapperOptionsContext.class deleted file mode 100644 index 8b2b3aa3..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/WrapperOptionsContext.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterMutabilityPlanImpl.class b/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterMutabilityPlanImpl.class deleted file mode 100644 index 18b4dd80..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterMutabilityPlanImpl.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter$1.class b/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter$1.class deleted file mode 100644 index 451e50c8..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter$2.class b/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter$2.class deleted file mode 100644 index d7de4947..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter.class b/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter.class deleted file mode 100644 index e897c67c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterSqlTypeDescriptorAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterTypeAdapter.class b/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterTypeAdapter.class deleted file mode 100644 index b27144b4..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/converter/AttributeConverterTypeAdapter.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/AbstractTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/AbstractTypeDescriptor.class deleted file mode 100644 index 2f25ccc0..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/AbstractTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ArrayMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/ArrayMutabilityPlan.class deleted file mode 100644 index 9b2ab6e3..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ArrayMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/BigDecimalTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/BigDecimalTypeDescriptor.class deleted file mode 100644 index e8a1cb47..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/BigDecimalTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/BigIntegerTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/BigIntegerTypeDescriptor.class deleted file mode 100644 index 3a012a08..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/BigIntegerTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/BlobTypeDescriptor$BlobMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/BlobTypeDescriptor$BlobMutabilityPlan.class deleted file mode 100644 index 713ede8a..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/BlobTypeDescriptor$BlobMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/BlobTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/BlobTypeDescriptor.class deleted file mode 100644 index 4b161861..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/BlobTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/BooleanTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/BooleanTypeDescriptor.class deleted file mode 100644 index f694d21c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/BooleanTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ByteArrayTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/ByteArrayTypeDescriptor.class deleted file mode 100644 index 8ba0df44..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ByteArrayTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ByteTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/ByteTypeDescriptor.class deleted file mode 100644 index 1bb776b5..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ByteTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/CalendarDateTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/CalendarDateTypeDescriptor.class deleted file mode 100644 index b98211ba..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/CalendarDateTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/CalendarTimeTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/CalendarTimeTypeDescriptor.class deleted file mode 100644 index 0ed0dc05..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/CalendarTimeTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/CalendarTypeDescriptor$CalendarMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/CalendarTypeDescriptor$CalendarMutabilityPlan.class deleted file mode 100644 index 4da64899..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/CalendarTypeDescriptor$CalendarMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/CalendarTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/CalendarTypeDescriptor.class deleted file mode 100644 index b50d2abd..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/CalendarTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.class deleted file mode 100644 index fb79d29c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/CharacterArrayTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/CharacterTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/CharacterTypeDescriptor.class deleted file mode 100644 index 6ad9fa36..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/CharacterTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ClassTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/ClassTypeDescriptor.class deleted file mode 100644 index 1169592c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ClassTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ClobTypeDescriptor$ClobMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/ClobTypeDescriptor$ClobMutabilityPlan.class deleted file mode 100644 index 3794f18a..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ClobTypeDescriptor$ClobMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ClobTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/ClobTypeDescriptor.class deleted file mode 100644 index 4244b34e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ClobTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/CurrencyTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/CurrencyTypeDescriptor.class deleted file mode 100644 index 52e298a9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/CurrencyTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/DataHelper.class b/target/classes/org/hibernate/type/descriptor/java/DataHelper.class deleted file mode 100644 index f237b75a..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/DataHelper.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/DateTypeDescriptor$DateMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/DateTypeDescriptor$DateMutabilityPlan.class deleted file mode 100644 index 022e7a06..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/DateTypeDescriptor$DateMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/DateTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/DateTypeDescriptor.class deleted file mode 100644 index aba486b1..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/DateTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/DoubleTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/DoubleTypeDescriptor.class deleted file mode 100644 index 252013cc..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/DoubleTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/DurationJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/DurationJavaDescriptor.class deleted file mode 100644 index ce2eb7b4..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/DurationJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/EnumJavaTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/EnumJavaTypeDescriptor.class deleted file mode 100644 index 38fcd178..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/EnumJavaTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/FloatTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/FloatTypeDescriptor.class deleted file mode 100644 index fd08136b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/FloatTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ImmutableMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/ImmutableMutabilityPlan.class deleted file mode 100644 index 3cfda014..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ImmutableMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/IncomparableComparator.class b/target/classes/org/hibernate/type/descriptor/java/IncomparableComparator.class deleted file mode 100644 index 1bd63ecf..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/IncomparableComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/InstantJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/InstantJavaDescriptor.class deleted file mode 100644 index dc37b1ea..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/InstantJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/IntegerTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/IntegerTypeDescriptor.class deleted file mode 100644 index 2c9f58ac..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/IntegerTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptor.class deleted file mode 100644 index 587e0254..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry$FallbackJavaTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry$FallbackJavaTypeDescriptor$1.class deleted file mode 100644 index 85c18457..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry$FallbackJavaTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry$FallbackJavaTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry$FallbackJavaTypeDescriptor.class deleted file mode 100644 index 8569b9cd..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry$FallbackJavaTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry.class b/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry.class deleted file mode 100644 index 42f3c0fe..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JavaTypeDescriptorRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JdbcDateTypeDescriptor$DateMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/JdbcDateTypeDescriptor$DateMutabilityPlan.class deleted file mode 100644 index 7f0aacb5..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JdbcDateTypeDescriptor$DateMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JdbcDateTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/JdbcDateTypeDescriptor.class deleted file mode 100644 index cdf546d1..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JdbcDateTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JdbcTimeTypeDescriptor$TimeMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/JdbcTimeTypeDescriptor$TimeMutabilityPlan.class deleted file mode 100644 index 666108ba..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JdbcTimeTypeDescriptor$TimeMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JdbcTimeTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/JdbcTimeTypeDescriptor.class deleted file mode 100644 index afcdbc40..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JdbcTimeTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JdbcTimestampTypeDescriptor$TimestampMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/JdbcTimestampTypeDescriptor$TimestampMutabilityPlan.class deleted file mode 100644 index 0b9db99f..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JdbcTimestampTypeDescriptor$TimestampMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/JdbcTimestampTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/JdbcTimestampTypeDescriptor.class deleted file mode 100644 index 2fa1e7f0..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/JdbcTimestampTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/LocalDateJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/LocalDateJavaDescriptor.class deleted file mode 100644 index 60dd38a7..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/LocalDateJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/LocalDateTimeJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/LocalDateTimeJavaDescriptor.class deleted file mode 100644 index e6626ab6..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/LocalDateTimeJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/LocalTimeJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/LocalTimeJavaDescriptor.class deleted file mode 100644 index 91ad4924..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/LocalTimeJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/LocaleTypeDescriptor$LocaleComparator.class b/target/classes/org/hibernate/type/descriptor/java/LocaleTypeDescriptor$LocaleComparator.class deleted file mode 100644 index 6b4e9639..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/LocaleTypeDescriptor$LocaleComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/LocaleTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/LocaleTypeDescriptor.class deleted file mode 100644 index 1653a9ed..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/LocaleTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/LongTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/LongTypeDescriptor.class deleted file mode 100644 index c9d65474..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/LongTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/MutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/MutabilityPlan.class deleted file mode 100644 index 99bd5072..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/MutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/MutableMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/MutableMutabilityPlan.class deleted file mode 100644 index 0d53d694..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/MutableMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/NClobTypeDescriptor$NClobMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/NClobTypeDescriptor$NClobMutabilityPlan.class deleted file mode 100644 index caf05209..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/NClobTypeDescriptor$NClobMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/NClobTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/NClobTypeDescriptor.class deleted file mode 100644 index a344a4e2..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/NClobTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/OffsetDateTimeJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/OffsetDateTimeJavaDescriptor.class deleted file mode 100644 index 35b19ce7..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/OffsetDateTimeJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/OffsetTimeJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/OffsetTimeJavaDescriptor.class deleted file mode 100644 index ec856c2c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/OffsetTimeJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/PrimitiveByteArrayTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/PrimitiveByteArrayTypeDescriptor.class deleted file mode 100644 index 44df04a6..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/PrimitiveByteArrayTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/PrimitiveCharacterArrayTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/PrimitiveCharacterArrayTypeDescriptor.class deleted file mode 100644 index 02548c5f..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/PrimitiveCharacterArrayTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/SerializableTypeDescriptor$SerializableMutabilityPlan.class b/target/classes/org/hibernate/type/descriptor/java/SerializableTypeDescriptor$SerializableMutabilityPlan.class deleted file mode 100644 index 3e3a07c9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/SerializableTypeDescriptor$SerializableMutabilityPlan.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/SerializableTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/SerializableTypeDescriptor.class deleted file mode 100644 index 055a3025..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/SerializableTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ShortTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/ShortTypeDescriptor.class deleted file mode 100644 index f50f3396..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ShortTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/StringTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/StringTypeDescriptor.class deleted file mode 100644 index cec77c85..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/StringTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/TimeZoneTypeDescriptor$TimeZoneComparator.class b/target/classes/org/hibernate/type/descriptor/java/TimeZoneTypeDescriptor$TimeZoneComparator.class deleted file mode 100644 index d492495e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/TimeZoneTypeDescriptor$TimeZoneComparator.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/TimeZoneTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/TimeZoneTypeDescriptor.class deleted file mode 100644 index c650ed58..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/TimeZoneTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$PassThroughTransformer.class b/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$PassThroughTransformer.class deleted file mode 100644 index e0836104..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$PassThroughTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ToBytesTransformer.class b/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ToBytesTransformer.class deleted file mode 100644 index e67898ec..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ToBytesTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ToStringTransformer.class b/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ToStringTransformer.class deleted file mode 100644 index f4847e3e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ToStringTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ValueTransformer.class b/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ValueTransformer.class deleted file mode 100644 index a8ec61b0..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor$ValueTransformer.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor.class deleted file mode 100644 index 98468112..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/UUIDTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/UrlTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/UrlTypeDescriptor.class deleted file mode 100644 index 21e3ae13..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/UrlTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/java/ZonedDateTimeJavaDescriptor.class b/target/classes/org/hibernate/type/descriptor/java/ZonedDateTimeJavaDescriptor.class deleted file mode 100644 index 57024c9b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/java/ZonedDateTimeJavaDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BasicBinder.class b/target/classes/org/hibernate/type/descriptor/sql/BasicBinder.class deleted file mode 100644 index ef9be8f0..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BasicBinder.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BasicExtractor.class b/target/classes/org/hibernate/type/descriptor/sql/BasicExtractor.class deleted file mode 100644 index f498af7a..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BasicExtractor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor$1.class deleted file mode 100644 index 943b20cf..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor$2.class deleted file mode 100644 index b3de20ba..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor.class deleted file mode 100644 index cd4d0b55..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BigIntTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BinaryTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/BinaryTypeDescriptor.class deleted file mode 100644 index 482cfe49..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BinaryTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor$1.class deleted file mode 100644 index 5d62efe8..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor$2.class deleted file mode 100644 index 15332ab3..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor.class deleted file mode 100644 index 2f916c26..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BitTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$1.class deleted file mode 100644 index 3a723cf9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$2$1.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$2$1.class deleted file mode 100644 index 7fbe28a6..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$2.class deleted file mode 100644 index 86f31d58..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$3$1.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$3$1.class deleted file mode 100644 index 598f8c24..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$3$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$3.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$3.class deleted file mode 100644 index 43cef22e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$4$1.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$4$1.class deleted file mode 100644 index 61bb82b4..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$4$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$4.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$4.class deleted file mode 100644 index eb16965c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$5$1.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$5$1.class deleted file mode 100644 index 31750efd..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$5$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$5.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$5.class deleted file mode 100644 index 8933aec0..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor.class deleted file mode 100644 index 5d78f72c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BlobTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor$1.class deleted file mode 100644 index f4d7586e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor$2.class deleted file mode 100644 index 670280d0..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor.class deleted file mode 100644 index 0e1f5c28..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/BooleanTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/CharTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/CharTypeDescriptor.class deleted file mode 100644 index 7d61a009..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/CharTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$1.class deleted file mode 100644 index c80efd2d..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$2$1.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$2$1.class deleted file mode 100644 index 999fbe61..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$2.class deleted file mode 100644 index aed09367..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$3$1.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$3$1.class deleted file mode 100644 index b431c8ad..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$3$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$3.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$3.class deleted file mode 100644 index 0c7d005c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$4$1.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$4$1.class deleted file mode 100644 index fbf2c061..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$4$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$4.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$4.class deleted file mode 100644 index 0606809e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5$1.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5$1.class deleted file mode 100644 index 091ceaca..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5$2.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5$2.class deleted file mode 100644 index d853a5ae..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5.class deleted file mode 100644 index 4af0a739..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor$5.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor.class deleted file mode 100644 index dc73ae74..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/ClobTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor$1.class deleted file mode 100644 index d474e6fa..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor$2.class deleted file mode 100644 index ded5a561..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor.class deleted file mode 100644 index 964389aa..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DateTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor$1.class deleted file mode 100644 index aa93e1c2..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor$2.class deleted file mode 100644 index 448a2d02..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor.class deleted file mode 100644 index c85792c3..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DecimalTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor$1.class deleted file mode 100644 index 0023139f..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor$2.class deleted file mode 100644 index 4d37941a..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor.class deleted file mode 100644 index 334b1def..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/DoubleTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/FloatTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/FloatTypeDescriptor.class deleted file mode 100644 index 2b5ef8fb..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/FloatTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor$1.class deleted file mode 100644 index 576dc46c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor$2.class deleted file mode 100644 index 9fae14a9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor.class deleted file mode 100644 index 2b732447..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/IntegerTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeFamilyInformation$Family.class b/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeFamilyInformation$Family.class deleted file mode 100644 index cca0a9c1..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeFamilyInformation$Family.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeFamilyInformation.class b/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeFamilyInformation.class deleted file mode 100644 index 0cb9bc55..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeFamilyInformation.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeJavaClassMappings.class b/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeJavaClassMappings.class deleted file mode 100644 index 069cc2e8..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/JdbcTypeJavaClassMappings.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/LobTypeMappings.class b/target/classes/org/hibernate/type/descriptor/sql/LobTypeMappings.class deleted file mode 100644 index 3c554122..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/LobTypeMappings.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/LongNVarcharTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/LongNVarcharTypeDescriptor.class deleted file mode 100644 index 510cc92a..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/LongNVarcharTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/LongVarbinaryTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/LongVarbinaryTypeDescriptor.class deleted file mode 100644 index 748d8613..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/LongVarbinaryTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/LongVarcharTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/LongVarcharTypeDescriptor.class deleted file mode 100644 index 23a54cfd..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/LongVarcharTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NCharTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/NCharTypeDescriptor.class deleted file mode 100644 index 563b1a4c..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NCharTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$1.class deleted file mode 100644 index 021ef38b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$2$1.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$2$1.class deleted file mode 100644 index 394b8326..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$2$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$2.class deleted file mode 100644 index 4807121e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$3$1.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$3$1.class deleted file mode 100644 index 9d85fc32..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$3$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$3.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$3.class deleted file mode 100644 index 4eafd8b4..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$3.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$4$1.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$4$1.class deleted file mode 100644 index 0761652f..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$4$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$4.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$4.class deleted file mode 100644 index f0565c88..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor$4.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor.class deleted file mode 100644 index 90a424a4..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NClobTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor$1.class deleted file mode 100644 index c2c5e84d..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor$2.class deleted file mode 100644 index 3c9d3d0b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor.class deleted file mode 100644 index b7299a6b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NVarcharTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NationalizedTypeMappings.class b/target/classes/org/hibernate/type/descriptor/sql/NationalizedTypeMappings.class deleted file mode 100644 index 2bbcf2d2..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NationalizedTypeMappings.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/NumericTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/NumericTypeDescriptor.class deleted file mode 100644 index c738af0f..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/NumericTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor$1.class deleted file mode 100644 index c2fc3bfd..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor$2.class deleted file mode 100644 index 5e4e2c96..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor.class deleted file mode 100644 index 9049e71a..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/RealTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor$1.class deleted file mode 100644 index 591cfb00..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor$2.class deleted file mode 100644 index 3c36199e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor.class deleted file mode 100644 index a543e75e..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SmallIntTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptor.class deleted file mode 100644 index 139133d2..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor$1.class deleted file mode 100644 index 1a49f833..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor$2.class deleted file mode 100644 index 50ac9e5b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor.class deleted file mode 100644 index d59f4415..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry$ObjectSqlTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry.class b/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry.class deleted file mode 100644 index f80e039b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/SqlTypeDescriptorRegistry.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor$1.class deleted file mode 100644 index 1ca6fce6..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor$2.class deleted file mode 100644 index ca68404b..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor.class deleted file mode 100644 index a1b691e9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TimeTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor$1.class deleted file mode 100644 index ebb43fad..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor$2.class deleted file mode 100644 index 36ac5725..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor.class deleted file mode 100644 index 4d52fb96..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TimestampTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor$1.class deleted file mode 100644 index 879a9916..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor$2.class deleted file mode 100644 index f27e7c19..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor.class deleted file mode 100644 index 9f901610..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/TinyIntTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor$1.class deleted file mode 100644 index e53a1839..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor$2.class deleted file mode 100644 index cddfa928..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor.class deleted file mode 100644 index cc8548c9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/VarbinaryTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor$1.class b/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor$1.class deleted file mode 100644 index 15340661..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor$1.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor$2.class b/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor$2.class deleted file mode 100644 index e82ef1d9..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor$2.class and /dev/null differ diff --git a/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor.class b/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor.class deleted file mode 100644 index 3c993d60..00000000 Binary files a/target/classes/org/hibernate/type/descriptor/sql/VarcharTypeDescriptor.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/CompositeUserType.class b/target/classes/org/hibernate/usertype/CompositeUserType.class deleted file mode 100644 index 991173f9..00000000 Binary files a/target/classes/org/hibernate/usertype/CompositeUserType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/DynamicParameterizedType$ParameterType.class b/target/classes/org/hibernate/usertype/DynamicParameterizedType$ParameterType.class deleted file mode 100644 index 748701e2..00000000 Binary files a/target/classes/org/hibernate/usertype/DynamicParameterizedType$ParameterType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/DynamicParameterizedType.class b/target/classes/org/hibernate/usertype/DynamicParameterizedType.class deleted file mode 100644 index f2962d7e..00000000 Binary files a/target/classes/org/hibernate/usertype/DynamicParameterizedType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/EnhancedUserType.class b/target/classes/org/hibernate/usertype/EnhancedUserType.class deleted file mode 100644 index b7f814de..00000000 Binary files a/target/classes/org/hibernate/usertype/EnhancedUserType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/LoggableUserType.class b/target/classes/org/hibernate/usertype/LoggableUserType.class deleted file mode 100644 index a26646e8..00000000 Binary files a/target/classes/org/hibernate/usertype/LoggableUserType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/ParameterizedType.class b/target/classes/org/hibernate/usertype/ParameterizedType.class deleted file mode 100644 index ae2dab04..00000000 Binary files a/target/classes/org/hibernate/usertype/ParameterizedType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/Sized.class b/target/classes/org/hibernate/usertype/Sized.class deleted file mode 100644 index a1b756d9..00000000 Binary files a/target/classes/org/hibernate/usertype/Sized.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/UserCollectionType.class b/target/classes/org/hibernate/usertype/UserCollectionType.class deleted file mode 100644 index c5c9624f..00000000 Binary files a/target/classes/org/hibernate/usertype/UserCollectionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/UserType.class b/target/classes/org/hibernate/usertype/UserType.class deleted file mode 100644 index 9958e720..00000000 Binary files a/target/classes/org/hibernate/usertype/UserType.class and /dev/null differ diff --git a/target/classes/org/hibernate/usertype/UserVersionType.class b/target/classes/org/hibernate/usertype/UserVersionType.class deleted file mode 100644 index c7717b43..00000000 Binary files a/target/classes/org/hibernate/usertype/UserVersionType.class and /dev/null differ diff --git a/target/classes/org/hibernate/xsd/cfg/legacy-configuration-4.0.xsd b/target/classes/org/hibernate/xsd/cfg/legacy-configuration-4.0.xsd deleted file mode 100644 index 15f24841..00000000 --- a/target/classes/org/hibernate/xsd/cfg/legacy-configuration-4.0.xsd +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/target/classes/org/hibernate/xsd/mapping/legacy-mapping-4.0.xsd b/target/classes/org/hibernate/xsd/mapping/legacy-mapping-4.0.xsd deleted file mode 100644 index bbe1a98c..00000000 --- a/target/classes/org/hibernate/xsd/mapping/legacy-mapping-4.0.xsd +++ /dev/null @@ -1,2073 +0,0 @@ - - - - - - - This document defines the legacy Hibernate mapping schema. The root element in - such mappings is the hibernate-mapping element. - - - - - - - The document root. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Describes an XSD base type for any complex type that can contain "tooling hints". - - - - - - - - - - is used to assign meta-level attributes to a class - or property. Is currently used by tooling as a placeholder for - values that is not directly related to OR mappings. - - Example: the-hint-value - ]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - element defines a single path to which the fetch - refers, as well as the style of fetch to apply. The 'root' of the - path is different depending upon the context in which the - containing occurs; within a element, - the entity-name of the containing class mapping is assumed... - ]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The sql-query element declares a named SQL query string - - - - - - - - - - - - - - - - - - - - - - - - The query-param element is used only by tools that generate - finder methods for named queries - - - - - - - - - - The resultset element declares a named resultset mapping definition for SQL queries - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Defines a return component for a sql-query. Alias refers to the alias - used in the actual sql query; lock-mode specifies the locking to be applied - when the query is executed. The class, collection, and role attributes are mutually exclusive; - class refers to the class name of a "root entity" in the object result; collection refers - to a collection of a given class and is used to define custom sql to load that owned collection - and takes the form "ClassName.propertyName"; role refers to the property path for an eager fetch - and takes the form "owningAlias.propertyName" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Root entity mapping. Poorly named as entities do not have to be represented by - classes at all. Mapped entities may be represented via different methodologies - (POJO, Map, Dom4j). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - vs. @name usage... - ]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - vs. @name usage... - ]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - vs. @name usage... - ]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Declares the id type, column and generation algorithm for an entity class. - If a name attribute is given, the id is exposed to the application through the - named property of the class. If not, the id is only exposed to the application - via Session.getIdentifier() - - - - - - - - - - - - - - - - - - - - - - - - - A composite key may be modelled by a java class with a property for each - key column. The class must implement java.io.Serializable and reimplement equals() - and hashCode(). - - - - - - - - - - - - - - - - - - - - - - - - - - Type definition that acts as a base for concrete definitions of mapped - attributes that can function as the basis of optimistic locking. - - - - - - - - - - - - - - - - - Optimistic locking attribute based on an incrementing value. - - - - - - - - - - - - - - - - - - Optimistic locking attribute based on a (last-updated) timestamp. - - - - - - - - - - - - - - A natural-id element allows declaration of the unique business key - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Polymorphic data requires a column holding a class discriminator value. This - value is not directly exposed to the application. - - - - - - - - - - - - - - - - - - - - - - A discriminated association where the discriminator is part of the - association, not the associated entity (compared to discriminator subclass) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Defines the mapping of a discriminator value to a concrete entity in an any or - any-to-many mapping. - - - - - - - - - - - - - - - - - - - - - - - The column element is an alternative to column attributes and required for - mapping associations to classes with composite ids. - - - - - - The comment element allows definition of a database table or column comment. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A component is a user-defined class, persisted along with its containing entity - to the table of the entity class. JavaBeans style properties of the component are - mapped to columns of the table of the containing entity. A null component reference - is mapped to null values in all columns and vice versa. Components do not support - shared reference semantics. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A composite element allows a collection to hold instances of an arbitrary - class, without the requirement of joining to an entity table. Composite elements - have component semantics - no shared references and ad hoc null value semantics. - Composite elements may not hold nested collections. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - A dynamic-component maps columns of the database entity to a java.util.Map - at the Java level - - - - - - - - - - - - - - - - - - - - - - - - - - Declares the element type of a collection where the element is of basic type - - - - - - - - - - - - - - - - - - - - - - - FILTER element; used to apply a filter. - - - - - - - - - - - - - - - - - - - - - - - - Generators generate unique identifiers. The class attribute specifies a Java - class implementing an id generation algorithm. - - - - - - - - - - - - - - Describes the index of an indexed collection. Indexed collection means either - a java.util.List, a persistent array or a java.util.Map. - - For a List or array, this describes the list/array index value. Should prefer - to use 'list-index' instead. - - For a Map, this describes the Map key value. Should prefer to use 'map-key' instead - - - - - - - - - - - - - - A join allows some properties of a class to be persisted to a second table - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Declares the column name of a foreign key. - - - - - - - - - - - - - - - - - - A many-to-one association embedded in a composite identifier or map index - (always not-null, never cascade). - - - - - - - - - - - - - - - - - - - - - - - A property embedded in a composite identifier or map index (always not-null). - - - - - - - - - - - - - - - - - - - - - - - The loader element allows specification of a named query to be used for fetching - an entity or collection - - - - - - - - - A "many to any" defines a polymorphic association to any table - with the given identifier type. The first listed column is a VARCHAR column - holding the name of the class (for that row). - - - - - - - - - - - - - - - - Describes the key of a java.util.Map where the key is a basic (JPA term) type - - - - - - - - - - - - - - - - - - - Describes the key of a java.util.Map where the key is a composite type - - - - - - - - - - - - - - - - - - - - Describes the key of a java.util.Map where the key is an association (FK) - - - - - - - - - - - - - - - Describes the key of a java.util.Map which is a composite. Should prefer - 'composite-map-key' instead - - - - - - - - - - - - - - - - - - - Describes the key of a java.util.Map which is an FK-association. Should prefer - 'map-key-many-to-many' instead - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The parent element maps a property of the component class as a pointer back to - the owning entity. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - properties declares that the contained properties form an alternate key. The name - attribute allows an alternate key to be used as the target of a property-ref. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TUPLIZER element; defines tuplizer to use for a component/entity for a given entity-mode - - - - - - - - - - - Declares the type of the containing property (overrides an eventually existing type - attribute of the property). May contain param elements to customize a ParametrizableType. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Define a class name type which can be used in the attribute value which requires a class name, - either qualified or not, time to do the validation. - - - - - - - diff --git a/target/classes/org/jboss/jandex/AnnotationInstance$1.class b/target/classes/org/jboss/jandex/AnnotationInstance$1.class deleted file mode 100644 index a74d1d8b..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationInstance$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationInstance$2.class b/target/classes/org/jboss/jandex/AnnotationInstance$2.class deleted file mode 100644 index 2821b37a..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationInstance$2.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationInstance$InstanceNameComparator.class b/target/classes/org/jboss/jandex/AnnotationInstance$InstanceNameComparator.class deleted file mode 100644 index e0ac7241..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationInstance$InstanceNameComparator.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationInstance.class b/target/classes/org/jboss/jandex/AnnotationInstance.class deleted file mode 100644 index f4746423..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationInstance.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationTarget$Kind.class b/target/classes/org/jboss/jandex/AnnotationTarget$Kind.class deleted file mode 100644 index 1d852f2f..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationTarget$Kind.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationTarget.class b/target/classes/org/jboss/jandex/AnnotationTarget.class deleted file mode 100644 index 7e32de1b..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationTargetFilterCollection$1.class b/target/classes/org/jboss/jandex/AnnotationTargetFilterCollection$1.class deleted file mode 100644 index 3fda2b30..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationTargetFilterCollection$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationTargetFilterCollection.class b/target/classes/org/jboss/jandex/AnnotationTargetFilterCollection.class deleted file mode 100644 index 999c4bbd..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationTargetFilterCollection.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$ArrayValue.class b/target/classes/org/jboss/jandex/AnnotationValue$ArrayValue.class deleted file mode 100644 index a9ae38f6..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$ArrayValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$BooleanValue.class b/target/classes/org/jboss/jandex/AnnotationValue$BooleanValue.class deleted file mode 100644 index 18f91791..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$BooleanValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$ByteValue.class b/target/classes/org/jboss/jandex/AnnotationValue$ByteValue.class deleted file mode 100644 index 443a0519..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$ByteValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$CharacterValue.class b/target/classes/org/jboss/jandex/AnnotationValue$CharacterValue.class deleted file mode 100644 index 7e706164..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$CharacterValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$ClassValue.class b/target/classes/org/jboss/jandex/AnnotationValue$ClassValue.class deleted file mode 100644 index c7441952..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$ClassValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$DoubleValue.class b/target/classes/org/jboss/jandex/AnnotationValue$DoubleValue.class deleted file mode 100644 index 8696c31e..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$DoubleValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$EnumValue.class b/target/classes/org/jboss/jandex/AnnotationValue$EnumValue.class deleted file mode 100644 index 92493fdb..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$EnumValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$FloatValue.class b/target/classes/org/jboss/jandex/AnnotationValue$FloatValue.class deleted file mode 100644 index f8d2165c..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$FloatValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$IntegerValue.class b/target/classes/org/jboss/jandex/AnnotationValue$IntegerValue.class deleted file mode 100644 index bc98dcc9..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$IntegerValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$Kind.class b/target/classes/org/jboss/jandex/AnnotationValue$Kind.class deleted file mode 100644 index 11af9f86..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$Kind.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$LongValue.class b/target/classes/org/jboss/jandex/AnnotationValue$LongValue.class deleted file mode 100644 index 98af2812..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$LongValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$NestedAnnotation.class b/target/classes/org/jboss/jandex/AnnotationValue$NestedAnnotation.class deleted file mode 100644 index d51a19d3..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$NestedAnnotation.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$ShortValue.class b/target/classes/org/jboss/jandex/AnnotationValue$ShortValue.class deleted file mode 100644 index 03b91288..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$ShortValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue$StringValue.class b/target/classes/org/jboss/jandex/AnnotationValue$StringValue.class deleted file mode 100644 index 75e5671e..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue$StringValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/AnnotationValue.class b/target/classes/org/jboss/jandex/AnnotationValue.class deleted file mode 100644 index 6729320d..00000000 Binary files a/target/classes/org/jboss/jandex/AnnotationValue.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ArrayType.class b/target/classes/org/jboss/jandex/ArrayType.class deleted file mode 100644 index ff6bf953..00000000 Binary files a/target/classes/org/jboss/jandex/ArrayType.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ClassExtendsTypeTarget.class b/target/classes/org/jboss/jandex/ClassExtendsTypeTarget.class deleted file mode 100644 index 7637605d..00000000 Binary files a/target/classes/org/jboss/jandex/ClassExtendsTypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ClassInfo$1.class b/target/classes/org/jboss/jandex/ClassInfo$1.class deleted file mode 100644 index fe334f01..00000000 Binary files a/target/classes/org/jboss/jandex/ClassInfo$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ClassInfo$EnclosingMethodInfo.class b/target/classes/org/jboss/jandex/ClassInfo$EnclosingMethodInfo.class deleted file mode 100644 index 2f912ba7..00000000 Binary files a/target/classes/org/jboss/jandex/ClassInfo$EnclosingMethodInfo.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ClassInfo$NestingInfo.class b/target/classes/org/jboss/jandex/ClassInfo$NestingInfo.class deleted file mode 100644 index 0dcd2374..00000000 Binary files a/target/classes/org/jboss/jandex/ClassInfo$NestingInfo.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ClassInfo$NestingType.class b/target/classes/org/jboss/jandex/ClassInfo$NestingType.class deleted file mode 100644 index f42faaf0..00000000 Binary files a/target/classes/org/jboss/jandex/ClassInfo$NestingType.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ClassInfo.class b/target/classes/org/jboss/jandex/ClassInfo.class deleted file mode 100644 index ce9e02b0..00000000 Binary files a/target/classes/org/jboss/jandex/ClassInfo.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ClassType.class b/target/classes/org/jboss/jandex/ClassType.class deleted file mode 100644 index e0ceeb43..00000000 Binary files a/target/classes/org/jboss/jandex/ClassType.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/CompositeIndex.class b/target/classes/org/jboss/jandex/CompositeIndex.class deleted file mode 100644 index 7053d3a2..00000000 Binary files a/target/classes/org/jboss/jandex/CompositeIndex.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/DotName.class b/target/classes/org/jboss/jandex/DotName.class deleted file mode 100644 index 866c1963..00000000 Binary files a/target/classes/org/jboss/jandex/DotName.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/EmptyTypeTarget.class b/target/classes/org/jboss/jandex/EmptyTypeTarget.class deleted file mode 100644 index 587b22c6..00000000 Binary files a/target/classes/org/jboss/jandex/EmptyTypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/FieldInfo.class b/target/classes/org/jboss/jandex/FieldInfo.class deleted file mode 100644 index 0f166ea8..00000000 Binary files a/target/classes/org/jboss/jandex/FieldInfo.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/FieldInfoGenerator.class b/target/classes/org/jboss/jandex/FieldInfoGenerator.class deleted file mode 100644 index 53bc39de..00000000 Binary files a/target/classes/org/jboss/jandex/FieldInfoGenerator.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/FieldInternal$NameComparator.class b/target/classes/org/jboss/jandex/FieldInternal$NameComparator.class deleted file mode 100644 index 2a28684e..00000000 Binary files a/target/classes/org/jboss/jandex/FieldInternal$NameComparator.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/FieldInternal.class b/target/classes/org/jboss/jandex/FieldInternal.class deleted file mode 100644 index d4248ec7..00000000 Binary files a/target/classes/org/jboss/jandex/FieldInternal.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/GenericSignatureParser$1.class b/target/classes/org/jboss/jandex/GenericSignatureParser$1.class deleted file mode 100644 index 896668f2..00000000 Binary files a/target/classes/org/jboss/jandex/GenericSignatureParser$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/GenericSignatureParser$ClassSignature.class b/target/classes/org/jboss/jandex/GenericSignatureParser$ClassSignature.class deleted file mode 100644 index 0ce07b3b..00000000 Binary files a/target/classes/org/jboss/jandex/GenericSignatureParser$ClassSignature.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/GenericSignatureParser$MethodSignature.class b/target/classes/org/jboss/jandex/GenericSignatureParser$MethodSignature.class deleted file mode 100644 index d0550d67..00000000 Binary files a/target/classes/org/jboss/jandex/GenericSignatureParser$MethodSignature.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/GenericSignatureParser.class b/target/classes/org/jboss/jandex/GenericSignatureParser.class deleted file mode 100644 index d0020afd..00000000 Binary files a/target/classes/org/jboss/jandex/GenericSignatureParser.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Index.class b/target/classes/org/jboss/jandex/Index.class deleted file mode 100644 index ed1a9588..00000000 Binary files a/target/classes/org/jboss/jandex/Index.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexReader.class b/target/classes/org/jboss/jandex/IndexReader.class deleted file mode 100644 index f6134119..00000000 Binary files a/target/classes/org/jboss/jandex/IndexReader.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexReaderImpl.class b/target/classes/org/jboss/jandex/IndexReaderImpl.class deleted file mode 100644 index ddee07cf..00000000 Binary files a/target/classes/org/jboss/jandex/IndexReaderImpl.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexReaderV1.class b/target/classes/org/jboss/jandex/IndexReaderV1.class deleted file mode 100644 index c265dd10..00000000 Binary files a/target/classes/org/jboss/jandex/IndexReaderV1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexReaderV2$1.class b/target/classes/org/jboss/jandex/IndexReaderV2$1.class deleted file mode 100644 index 743c447a..00000000 Binary files a/target/classes/org/jboss/jandex/IndexReaderV2$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexReaderV2.class b/target/classes/org/jboss/jandex/IndexReaderV2.class deleted file mode 100644 index 7108b698..00000000 Binary files a/target/classes/org/jboss/jandex/IndexReaderV2.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexView.class b/target/classes/org/jboss/jandex/IndexView.class deleted file mode 100644 index 672e646e..00000000 Binary files a/target/classes/org/jboss/jandex/IndexView.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexWriter.class b/target/classes/org/jboss/jandex/IndexWriter.class deleted file mode 100644 index 464d7a92..00000000 Binary files a/target/classes/org/jboss/jandex/IndexWriter.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexWriterImpl.class b/target/classes/org/jboss/jandex/IndexWriterImpl.class deleted file mode 100644 index 1e54d9e3..00000000 Binary files a/target/classes/org/jboss/jandex/IndexWriterImpl.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexWriterV1.class b/target/classes/org/jboss/jandex/IndexWriterV1.class deleted file mode 100644 index 94ba76c8..00000000 Binary files a/target/classes/org/jboss/jandex/IndexWriterV1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexWriterV2$1.class b/target/classes/org/jboss/jandex/IndexWriterV2$1.class deleted file mode 100644 index a8774b5a..00000000 Binary files a/target/classes/org/jboss/jandex/IndexWriterV2$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexWriterV2$ReferenceEntry.class b/target/classes/org/jboss/jandex/IndexWriterV2$ReferenceEntry.class deleted file mode 100644 index d144bd64..00000000 Binary files a/target/classes/org/jboss/jandex/IndexWriterV2$ReferenceEntry.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexWriterV2$ReferenceTable.class b/target/classes/org/jboss/jandex/IndexWriterV2$ReferenceTable.class deleted file mode 100644 index 805eb77b..00000000 Binary files a/target/classes/org/jboss/jandex/IndexWriterV2$ReferenceTable.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/IndexWriterV2.class b/target/classes/org/jboss/jandex/IndexWriterV2.class deleted file mode 100644 index 2042d7a7..00000000 Binary files a/target/classes/org/jboss/jandex/IndexWriterV2.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$1.class b/target/classes/org/jboss/jandex/Indexer$1.class deleted file mode 100644 index be1b4135..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$2.class b/target/classes/org/jboss/jandex/Indexer$2.class deleted file mode 100644 index eff33976..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$2.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$BooleanHolder.class b/target/classes/org/jboss/jandex/Indexer$BooleanHolder.class deleted file mode 100644 index ce721438..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$BooleanHolder.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$InnerClassInfo.class b/target/classes/org/jboss/jandex/Indexer$InnerClassInfo.class deleted file mode 100644 index ed335353..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$InnerClassInfo.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$IntegerHolder.class b/target/classes/org/jboss/jandex/Indexer$IntegerHolder.class deleted file mode 100644 index 0d1750d4..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$IntegerHolder.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$NameAndType.class b/target/classes/org/jboss/jandex/Indexer$NameAndType.class deleted file mode 100644 index 8c60d7c3..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$NameAndType.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$PathElement$Kind.class b/target/classes/org/jboss/jandex/Indexer$PathElement$Kind.class deleted file mode 100644 index fd8a89ca..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$PathElement$Kind.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$PathElement.class b/target/classes/org/jboss/jandex/Indexer$PathElement.class deleted file mode 100644 index 1f8fe683..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$PathElement.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$PathElementStack.class b/target/classes/org/jboss/jandex/Indexer$PathElementStack.class deleted file mode 100644 index 8a3304a2..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$PathElementStack.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer$TypeAnnotationState.class b/target/classes/org/jboss/jandex/Indexer$TypeAnnotationState.class deleted file mode 100644 index 86074b61..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer$TypeAnnotationState.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Indexer.class b/target/classes/org/jboss/jandex/Indexer.class deleted file mode 100644 index c1d90116..00000000 Binary files a/target/classes/org/jboss/jandex/Indexer.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/JandexAntTask.class b/target/classes/org/jboss/jandex/JandexAntTask.class deleted file mode 100644 index ea733d2a..00000000 Binary files a/target/classes/org/jboss/jandex/JandexAntTask.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/JarIndexer.class b/target/classes/org/jboss/jandex/JarIndexer.class deleted file mode 100644 index be1e5276..00000000 Binary files a/target/classes/org/jboss/jandex/JarIndexer.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Main.class b/target/classes/org/jboss/jandex/Main.class deleted file mode 100644 index b0b8c656..00000000 Binary files a/target/classes/org/jboss/jandex/Main.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/MethodInfo.class b/target/classes/org/jboss/jandex/MethodInfo.class deleted file mode 100644 index 1ab9706f..00000000 Binary files a/target/classes/org/jboss/jandex/MethodInfo.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/MethodInfoGenerator.class b/target/classes/org/jboss/jandex/MethodInfoGenerator.class deleted file mode 100644 index 0e2c1bd3..00000000 Binary files a/target/classes/org/jboss/jandex/MethodInfoGenerator.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/MethodInternal$NameAndParameterComponentComparator.class b/target/classes/org/jboss/jandex/MethodInternal$NameAndParameterComponentComparator.class deleted file mode 100644 index 06a8a883..00000000 Binary files a/target/classes/org/jboss/jandex/MethodInternal$NameAndParameterComponentComparator.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/MethodInternal.class b/target/classes/org/jboss/jandex/MethodInternal.class deleted file mode 100644 index 210c4d71..00000000 Binary files a/target/classes/org/jboss/jandex/MethodInternal.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/MethodParameterInfo.class b/target/classes/org/jboss/jandex/MethodParameterInfo.class deleted file mode 100644 index 8914d12a..00000000 Binary files a/target/classes/org/jboss/jandex/MethodParameterInfo.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/MethodParameterTypeTarget.class b/target/classes/org/jboss/jandex/MethodParameterTypeTarget.class deleted file mode 100644 index 4a8c0c0c..00000000 Binary files a/target/classes/org/jboss/jandex/MethodParameterTypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/NameTable.class b/target/classes/org/jboss/jandex/NameTable.class deleted file mode 100644 index 16c0fc8d..00000000 Binary files a/target/classes/org/jboss/jandex/NameTable.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/PackedDataInputStream.class b/target/classes/org/jboss/jandex/PackedDataInputStream.class deleted file mode 100644 index 19644fd4..00000000 Binary files a/target/classes/org/jboss/jandex/PackedDataInputStream.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/PackedDataOutputStream.class b/target/classes/org/jboss/jandex/PackedDataOutputStream.class deleted file mode 100644 index e43b70d0..00000000 Binary files a/target/classes/org/jboss/jandex/PackedDataOutputStream.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ParameterizedType.class b/target/classes/org/jboss/jandex/ParameterizedType.class deleted file mode 100644 index 06317569..00000000 Binary files a/target/classes/org/jboss/jandex/ParameterizedType.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/PositionBasedTypeTarget.class b/target/classes/org/jboss/jandex/PositionBasedTypeTarget.class deleted file mode 100644 index 35e9ac03..00000000 Binary files a/target/classes/org/jboss/jandex/PositionBasedTypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/PrimitiveType$Primitive.class b/target/classes/org/jboss/jandex/PrimitiveType$Primitive.class deleted file mode 100644 index d139ba33..00000000 Binary files a/target/classes/org/jboss/jandex/PrimitiveType$Primitive.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/PrimitiveType.class b/target/classes/org/jboss/jandex/PrimitiveType.class deleted file mode 100644 index bfcf3448..00000000 Binary files a/target/classes/org/jboss/jandex/PrimitiveType.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Result.class b/target/classes/org/jboss/jandex/Result.class deleted file mode 100644 index 50afb14a..00000000 Binary files a/target/classes/org/jboss/jandex/Result.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/StrongInternPool$1.class b/target/classes/org/jboss/jandex/StrongInternPool$1.class deleted file mode 100644 index cbed3f5d..00000000 Binary files a/target/classes/org/jboss/jandex/StrongInternPool$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/StrongInternPool$IdentityHashSetIterator.class b/target/classes/org/jboss/jandex/StrongInternPool$IdentityHashSetIterator.class deleted file mode 100644 index 03c4cdef..00000000 Binary files a/target/classes/org/jboss/jandex/StrongInternPool$IdentityHashSetIterator.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/StrongInternPool$Index.class b/target/classes/org/jboss/jandex/StrongInternPool$Index.class deleted file mode 100644 index 2ecf0560..00000000 Binary files a/target/classes/org/jboss/jandex/StrongInternPool$Index.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/StrongInternPool.class b/target/classes/org/jboss/jandex/StrongInternPool.class deleted file mode 100644 index 83901b9e..00000000 Binary files a/target/classes/org/jboss/jandex/StrongInternPool.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/ThrowsTypeTarget.class b/target/classes/org/jboss/jandex/ThrowsTypeTarget.class deleted file mode 100644 index d17fb951..00000000 Binary files a/target/classes/org/jboss/jandex/ThrowsTypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Type$1.class b/target/classes/org/jboss/jandex/Type$1.class deleted file mode 100644 index c115cc05..00000000 Binary files a/target/classes/org/jboss/jandex/Type$1.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Type$Kind.class b/target/classes/org/jboss/jandex/Type$Kind.class deleted file mode 100644 index c58aeb18..00000000 Binary files a/target/classes/org/jboss/jandex/Type$Kind.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Type.class b/target/classes/org/jboss/jandex/Type.class deleted file mode 100644 index 5b8b0b36..00000000 Binary files a/target/classes/org/jboss/jandex/Type.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/TypeParameterBoundTypeTarget.class b/target/classes/org/jboss/jandex/TypeParameterBoundTypeTarget.class deleted file mode 100644 index 5ed522af..00000000 Binary files a/target/classes/org/jboss/jandex/TypeParameterBoundTypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/TypeParameterTypeTarget.class b/target/classes/org/jboss/jandex/TypeParameterTypeTarget.class deleted file mode 100644 index b3d12b74..00000000 Binary files a/target/classes/org/jboss/jandex/TypeParameterTypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/TypeTarget$Usage.class b/target/classes/org/jboss/jandex/TypeTarget$Usage.class deleted file mode 100644 index aea63d5f..00000000 Binary files a/target/classes/org/jboss/jandex/TypeTarget$Usage.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/TypeTarget.class b/target/classes/org/jboss/jandex/TypeTarget.class deleted file mode 100644 index fd3aab73..00000000 Binary files a/target/classes/org/jboss/jandex/TypeTarget.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/TypeVariable.class b/target/classes/org/jboss/jandex/TypeVariable.class deleted file mode 100644 index f08438de..00000000 Binary files a/target/classes/org/jboss/jandex/TypeVariable.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/UnresolvedTypeVariable.class b/target/classes/org/jboss/jandex/UnresolvedTypeVariable.class deleted file mode 100644 index d26ee95f..00000000 Binary files a/target/classes/org/jboss/jandex/UnresolvedTypeVariable.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/UnsupportedVersion.class b/target/classes/org/jboss/jandex/UnsupportedVersion.class deleted file mode 100644 index 00ad79f3..00000000 Binary files a/target/classes/org/jboss/jandex/UnsupportedVersion.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/Utils.class b/target/classes/org/jboss/jandex/Utils.class deleted file mode 100644 index e94c7e07..00000000 Binary files a/target/classes/org/jboss/jandex/Utils.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/VoidType.class b/target/classes/org/jboss/jandex/VoidType.class deleted file mode 100644 index 4f4b2633..00000000 Binary files a/target/classes/org/jboss/jandex/VoidType.class and /dev/null differ diff --git a/target/classes/org/jboss/jandex/WildcardType.class b/target/classes/org/jboss/jandex/WildcardType.class deleted file mode 100644 index 9db64e62..00000000 Binary files a/target/classes/org/jboss/jandex/WildcardType.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/AbstractLoggerProvider$Entry.class b/target/classes/org/jboss/logging/AbstractLoggerProvider$Entry.class deleted file mode 100644 index 9dafebd5..00000000 Binary files a/target/classes/org/jboss/logging/AbstractLoggerProvider$Entry.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/AbstractLoggerProvider.class b/target/classes/org/jboss/logging/AbstractLoggerProvider.class deleted file mode 100644 index f0d4c314..00000000 Binary files a/target/classes/org/jboss/logging/AbstractLoggerProvider.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/AbstractMdcLoggerProvider.class b/target/classes/org/jboss/logging/AbstractMdcLoggerProvider.class deleted file mode 100644 index b093f161..00000000 Binary files a/target/classes/org/jboss/logging/AbstractMdcLoggerProvider.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/BasicLogger.class b/target/classes/org/jboss/logging/BasicLogger.class deleted file mode 100644 index 7872c517..00000000 Binary files a/target/classes/org/jboss/logging/BasicLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Cause.class b/target/classes/org/jboss/logging/Cause.class deleted file mode 100644 index 21fbc763..00000000 Binary files a/target/classes/org/jboss/logging/Cause.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/DelegatingBasicLogger.class b/target/classes/org/jboss/logging/DelegatingBasicLogger.class deleted file mode 100644 index 8b59ea73..00000000 Binary files a/target/classes/org/jboss/logging/DelegatingBasicLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Field.class b/target/classes/org/jboss/logging/Field.class deleted file mode 100644 index 6a8911a6..00000000 Binary files a/target/classes/org/jboss/logging/Field.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/FormatWith.class b/target/classes/org/jboss/logging/FormatWith.class deleted file mode 100644 index f0a8cd45..00000000 Binary files a/target/classes/org/jboss/logging/FormatWith.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JBossLogManagerLogger$1.class b/target/classes/org/jboss/logging/JBossLogManagerLogger$1.class deleted file mode 100644 index ab67b226..00000000 Binary files a/target/classes/org/jboss/logging/JBossLogManagerLogger$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JBossLogManagerLogger.class b/target/classes/org/jboss/logging/JBossLogManagerLogger.class deleted file mode 100644 index 62f1d43a..00000000 Binary files a/target/classes/org/jboss/logging/JBossLogManagerLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JBossLogManagerProvider$1.class b/target/classes/org/jboss/logging/JBossLogManagerProvider$1.class deleted file mode 100644 index 1d410d0c..00000000 Binary files a/target/classes/org/jboss/logging/JBossLogManagerProvider$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JBossLogManagerProvider.class b/target/classes/org/jboss/logging/JBossLogManagerProvider.class deleted file mode 100644 index e3071ed2..00000000 Binary files a/target/classes/org/jboss/logging/JBossLogManagerProvider.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JBossLogRecord.class b/target/classes/org/jboss/logging/JBossLogRecord.class deleted file mode 100644 index 7e39807b..00000000 Binary files a/target/classes/org/jboss/logging/JBossLogRecord.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JDKLevel.class b/target/classes/org/jboss/logging/JDKLevel.class deleted file mode 100644 index 9d10e94b..00000000 Binary files a/target/classes/org/jboss/logging/JDKLevel.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JDKLogger$1.class b/target/classes/org/jboss/logging/JDKLogger$1.class deleted file mode 100644 index a2f1d91a..00000000 Binary files a/target/classes/org/jboss/logging/JDKLogger$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JDKLogger.class b/target/classes/org/jboss/logging/JDKLogger.class deleted file mode 100644 index 27d12326..00000000 Binary files a/target/classes/org/jboss/logging/JDKLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/JDKLoggerProvider.class b/target/classes/org/jboss/logging/JDKLoggerProvider.class deleted file mode 100644 index eb70c7e1..00000000 Binary files a/target/classes/org/jboss/logging/JDKLoggerProvider.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Log4j2Logger$1.class b/target/classes/org/jboss/logging/Log4j2Logger$1.class deleted file mode 100644 index dd20346c..00000000 Binary files a/target/classes/org/jboss/logging/Log4j2Logger$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Log4j2Logger.class b/target/classes/org/jboss/logging/Log4j2Logger.class deleted file mode 100644 index 88f92707..00000000 Binary files a/target/classes/org/jboss/logging/Log4j2Logger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Log4j2LoggerProvider.class b/target/classes/org/jboss/logging/Log4j2LoggerProvider.class deleted file mode 100644 index 829c6a5b..00000000 Binary files a/target/classes/org/jboss/logging/Log4j2LoggerProvider.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Log4jLogger$1.class b/target/classes/org/jboss/logging/Log4jLogger$1.class deleted file mode 100644 index bd48a770..00000000 Binary files a/target/classes/org/jboss/logging/Log4jLogger$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Log4jLogger.class b/target/classes/org/jboss/logging/Log4jLogger.class deleted file mode 100644 index 831c9ab8..00000000 Binary files a/target/classes/org/jboss/logging/Log4jLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Log4jLoggerProvider.class b/target/classes/org/jboss/logging/Log4jLoggerProvider.class deleted file mode 100644 index b4f0f466..00000000 Binary files a/target/classes/org/jboss/logging/Log4jLoggerProvider.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/LogMessage.class b/target/classes/org/jboss/logging/LogMessage.class deleted file mode 100644 index 8d6e5807..00000000 Binary files a/target/classes/org/jboss/logging/LogMessage.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Logger$1.class b/target/classes/org/jboss/logging/Logger$1.class deleted file mode 100644 index 5e30ee8e..00000000 Binary files a/target/classes/org/jboss/logging/Logger$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Logger$Level.class b/target/classes/org/jboss/logging/Logger$Level.class deleted file mode 100644 index d66c3aa5..00000000 Binary files a/target/classes/org/jboss/logging/Logger$Level.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Logger.class b/target/classes/org/jboss/logging/Logger.class deleted file mode 100644 index c3d25a43..00000000 Binary files a/target/classes/org/jboss/logging/Logger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/LoggerProvider.class b/target/classes/org/jboss/logging/LoggerProvider.class deleted file mode 100644 index 50a85825..00000000 Binary files a/target/classes/org/jboss/logging/LoggerProvider.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/LoggerProviders$1.class b/target/classes/org/jboss/logging/LoggerProviders$1.class deleted file mode 100644 index 588ef6dd..00000000 Binary files a/target/classes/org/jboss/logging/LoggerProviders$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/LoggerProviders.class b/target/classes/org/jboss/logging/LoggerProviders.class deleted file mode 100644 index 59e1203e..00000000 Binary files a/target/classes/org/jboss/logging/LoggerProviders.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/LoggingClass.class b/target/classes/org/jboss/logging/LoggingClass.class deleted file mode 100644 index 0f901175..00000000 Binary files a/target/classes/org/jboss/logging/LoggingClass.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/MDC.class b/target/classes/org/jboss/logging/MDC.class deleted file mode 100644 index 72c02708..00000000 Binary files a/target/classes/org/jboss/logging/MDC.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Message$Format.class b/target/classes/org/jboss/logging/Message$Format.class deleted file mode 100644 index 37ad263e..00000000 Binary files a/target/classes/org/jboss/logging/Message$Format.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Message.class b/target/classes/org/jboss/logging/Message.class deleted file mode 100644 index 0275710a..00000000 Binary files a/target/classes/org/jboss/logging/Message.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/MessageBundle.class b/target/classes/org/jboss/logging/MessageBundle.class deleted file mode 100644 index 058ecde7..00000000 Binary files a/target/classes/org/jboss/logging/MessageBundle.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/MessageLogger.class b/target/classes/org/jboss/logging/MessageLogger.class deleted file mode 100644 index bcf13efd..00000000 Binary files a/target/classes/org/jboss/logging/MessageLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Messages$1.class b/target/classes/org/jboss/logging/Messages$1.class deleted file mode 100644 index 8615b2ad..00000000 Binary files a/target/classes/org/jboss/logging/Messages$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Messages.class b/target/classes/org/jboss/logging/Messages.class deleted file mode 100644 index aabd71e3..00000000 Binary files a/target/classes/org/jboss/logging/Messages.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/NDC.class b/target/classes/org/jboss/logging/NDC.class deleted file mode 100644 index 01554d25..00000000 Binary files a/target/classes/org/jboss/logging/NDC.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Param.class b/target/classes/org/jboss/logging/Param.class deleted file mode 100644 index e96d4990..00000000 Binary files a/target/classes/org/jboss/logging/Param.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/ParameterConverter.class b/target/classes/org/jboss/logging/ParameterConverter.class deleted file mode 100644 index 612620cf..00000000 Binary files a/target/classes/org/jboss/logging/ParameterConverter.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Property.class b/target/classes/org/jboss/logging/Property.class deleted file mode 100644 index d30cbf28..00000000 Binary files a/target/classes/org/jboss/logging/Property.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/SerializedLogger.class b/target/classes/org/jboss/logging/SerializedLogger.class deleted file mode 100644 index 609839de..00000000 Binary files a/target/classes/org/jboss/logging/SerializedLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Slf4jLocationAwareLogger$1.class b/target/classes/org/jboss/logging/Slf4jLocationAwareLogger$1.class deleted file mode 100644 index 715b0c2f..00000000 Binary files a/target/classes/org/jboss/logging/Slf4jLocationAwareLogger$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Slf4jLocationAwareLogger.class b/target/classes/org/jboss/logging/Slf4jLocationAwareLogger.class deleted file mode 100644 index 75e5703a..00000000 Binary files a/target/classes/org/jboss/logging/Slf4jLocationAwareLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Slf4jLogger$1.class b/target/classes/org/jboss/logging/Slf4jLogger$1.class deleted file mode 100644 index 73542b13..00000000 Binary files a/target/classes/org/jboss/logging/Slf4jLogger$1.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Slf4jLogger.class b/target/classes/org/jboss/logging/Slf4jLogger.class deleted file mode 100644 index 9be2c40b..00000000 Binary files a/target/classes/org/jboss/logging/Slf4jLogger.class and /dev/null differ diff --git a/target/classes/org/jboss/logging/Slf4jLoggerProvider.class b/target/classes/org/jboss/logging/Slf4jLoggerProvider.class deleted file mode 100644 index 40859201..00000000 Binary files a/target/classes/org/jboss/logging/Slf4jLoggerProvider.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Attr.class b/target/classes/org/w3c/dom/Attr.class deleted file mode 100644 index 30ea2987..00000000 Binary files a/target/classes/org/w3c/dom/Attr.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/CDATASection.class b/target/classes/org/w3c/dom/CDATASection.class deleted file mode 100644 index 1cf5e718..00000000 Binary files a/target/classes/org/w3c/dom/CDATASection.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/CharacterData.class b/target/classes/org/w3c/dom/CharacterData.class deleted file mode 100644 index 6b6b1900..00000000 Binary files a/target/classes/org/w3c/dom/CharacterData.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Comment.class b/target/classes/org/w3c/dom/Comment.class deleted file mode 100644 index b50288d1..00000000 Binary files a/target/classes/org/w3c/dom/Comment.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/DOMException.class b/target/classes/org/w3c/dom/DOMException.class deleted file mode 100644 index 2aabf50c..00000000 Binary files a/target/classes/org/w3c/dom/DOMException.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/DOMImplementation.class b/target/classes/org/w3c/dom/DOMImplementation.class deleted file mode 100644 index 3deea57a..00000000 Binary files a/target/classes/org/w3c/dom/DOMImplementation.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Document.class b/target/classes/org/w3c/dom/Document.class deleted file mode 100644 index 6f2ee48f..00000000 Binary files a/target/classes/org/w3c/dom/Document.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/DocumentFragment.class b/target/classes/org/w3c/dom/DocumentFragment.class deleted file mode 100644 index f198f277..00000000 Binary files a/target/classes/org/w3c/dom/DocumentFragment.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/DocumentType.class b/target/classes/org/w3c/dom/DocumentType.class deleted file mode 100644 index b855a7ea..00000000 Binary files a/target/classes/org/w3c/dom/DocumentType.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Element.class b/target/classes/org/w3c/dom/Element.class deleted file mode 100644 index b37575fb..00000000 Binary files a/target/classes/org/w3c/dom/Element.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Entity.class b/target/classes/org/w3c/dom/Entity.class deleted file mode 100644 index 24828dd7..00000000 Binary files a/target/classes/org/w3c/dom/Entity.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/EntityReference.class b/target/classes/org/w3c/dom/EntityReference.class deleted file mode 100644 index f8309b0b..00000000 Binary files a/target/classes/org/w3c/dom/EntityReference.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/NamedNodeMap.class b/target/classes/org/w3c/dom/NamedNodeMap.class deleted file mode 100644 index a669899d..00000000 Binary files a/target/classes/org/w3c/dom/NamedNodeMap.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Node.class b/target/classes/org/w3c/dom/Node.class deleted file mode 100644 index d8b931ee..00000000 Binary files a/target/classes/org/w3c/dom/Node.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/NodeList.class b/target/classes/org/w3c/dom/NodeList.class deleted file mode 100644 index e226035e..00000000 Binary files a/target/classes/org/w3c/dom/NodeList.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Notation.class b/target/classes/org/w3c/dom/Notation.class deleted file mode 100644 index 0cc2691e..00000000 Binary files a/target/classes/org/w3c/dom/Notation.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/ProcessingInstruction.class b/target/classes/org/w3c/dom/ProcessingInstruction.class deleted file mode 100644 index e69fad90..00000000 Binary files a/target/classes/org/w3c/dom/ProcessingInstruction.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/Text.class b/target/classes/org/w3c/dom/Text.class deleted file mode 100644 index a04f1988..00000000 Binary files a/target/classes/org/w3c/dom/Text.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSS2Properties.class b/target/classes/org/w3c/dom/css/CSS2Properties.class deleted file mode 100644 index 38546083..00000000 Binary files a/target/classes/org/w3c/dom/css/CSS2Properties.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSCharsetRule.class b/target/classes/org/w3c/dom/css/CSSCharsetRule.class deleted file mode 100644 index f9a50657..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSCharsetRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSFontFaceRule.class b/target/classes/org/w3c/dom/css/CSSFontFaceRule.class deleted file mode 100644 index ddae72bd..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSFontFaceRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSImportRule.class b/target/classes/org/w3c/dom/css/CSSImportRule.class deleted file mode 100644 index 1e164708..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSImportRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSMediaRule.class b/target/classes/org/w3c/dom/css/CSSMediaRule.class deleted file mode 100644 index 23c7ef43..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSMediaRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSPageRule.class b/target/classes/org/w3c/dom/css/CSSPageRule.class deleted file mode 100644 index 7fd245bf..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSPageRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSPrimitiveValue.class b/target/classes/org/w3c/dom/css/CSSPrimitiveValue.class deleted file mode 100644 index 19b5db64..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSPrimitiveValue.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSRule.class b/target/classes/org/w3c/dom/css/CSSRule.class deleted file mode 100644 index 8e79ff7f..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSRuleList.class b/target/classes/org/w3c/dom/css/CSSRuleList.class deleted file mode 100644 index 7acea0a9..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSRuleList.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSStyleDeclaration.class b/target/classes/org/w3c/dom/css/CSSStyleDeclaration.class deleted file mode 100644 index b1dbc4ca..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSStyleDeclaration.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSStyleRule.class b/target/classes/org/w3c/dom/css/CSSStyleRule.class deleted file mode 100644 index b7c3e5ed..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSStyleRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSStyleSheet.class b/target/classes/org/w3c/dom/css/CSSStyleSheet.class deleted file mode 100644 index cc01f4d6..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSStyleSheet.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSUnknownRule.class b/target/classes/org/w3c/dom/css/CSSUnknownRule.class deleted file mode 100644 index 186349ca..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSUnknownRule.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSValue.class b/target/classes/org/w3c/dom/css/CSSValue.class deleted file mode 100644 index c714377a..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSValue.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/CSSValueList.class b/target/classes/org/w3c/dom/css/CSSValueList.class deleted file mode 100644 index 040bcf64..00000000 Binary files a/target/classes/org/w3c/dom/css/CSSValueList.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/Counter.class b/target/classes/org/w3c/dom/css/Counter.class deleted file mode 100644 index 0f5db99c..00000000 Binary files a/target/classes/org/w3c/dom/css/Counter.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/DOMImplementationCSS.class b/target/classes/org/w3c/dom/css/DOMImplementationCSS.class deleted file mode 100644 index c73b0c98..00000000 Binary files a/target/classes/org/w3c/dom/css/DOMImplementationCSS.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/DocumentCSS.class b/target/classes/org/w3c/dom/css/DocumentCSS.class deleted file mode 100644 index 81327ded..00000000 Binary files a/target/classes/org/w3c/dom/css/DocumentCSS.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/ElementCSSInlineStyle.class b/target/classes/org/w3c/dom/css/ElementCSSInlineStyle.class deleted file mode 100644 index 5e14fb9e..00000000 Binary files a/target/classes/org/w3c/dom/css/ElementCSSInlineStyle.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/RGBColor.class b/target/classes/org/w3c/dom/css/RGBColor.class deleted file mode 100644 index cc67cdae..00000000 Binary files a/target/classes/org/w3c/dom/css/RGBColor.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/Rect.class b/target/classes/org/w3c/dom/css/Rect.class deleted file mode 100644 index 41f3b394..00000000 Binary files a/target/classes/org/w3c/dom/css/Rect.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/css/ViewCSS.class b/target/classes/org/w3c/dom/css/ViewCSS.class deleted file mode 100644 index 752c3434..00000000 Binary files a/target/classes/org/w3c/dom/css/ViewCSS.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/DocumentEvent.class b/target/classes/org/w3c/dom/events/DocumentEvent.class deleted file mode 100644 index edc1646f..00000000 Binary files a/target/classes/org/w3c/dom/events/DocumentEvent.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/Event.class b/target/classes/org/w3c/dom/events/Event.class deleted file mode 100644 index 0debc87d..00000000 Binary files a/target/classes/org/w3c/dom/events/Event.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/EventException.class b/target/classes/org/w3c/dom/events/EventException.class deleted file mode 100644 index 46e5d97f..00000000 Binary files a/target/classes/org/w3c/dom/events/EventException.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/EventListener.class b/target/classes/org/w3c/dom/events/EventListener.class deleted file mode 100644 index f3e9455e..00000000 Binary files a/target/classes/org/w3c/dom/events/EventListener.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/EventTarget.class b/target/classes/org/w3c/dom/events/EventTarget.class deleted file mode 100644 index d33b89e6..00000000 Binary files a/target/classes/org/w3c/dom/events/EventTarget.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/MouseEvent.class b/target/classes/org/w3c/dom/events/MouseEvent.class deleted file mode 100644 index c9f4032d..00000000 Binary files a/target/classes/org/w3c/dom/events/MouseEvent.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/MutationEvent.class b/target/classes/org/w3c/dom/events/MutationEvent.class deleted file mode 100644 index b2f53d18..00000000 Binary files a/target/classes/org/w3c/dom/events/MutationEvent.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/events/UIEvent.class b/target/classes/org/w3c/dom/events/UIEvent.class deleted file mode 100644 index 11f71490..00000000 Binary files a/target/classes/org/w3c/dom/events/UIEvent.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLAnchorElement.class b/target/classes/org/w3c/dom/html/HTMLAnchorElement.class deleted file mode 100644 index f4aed181..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLAnchorElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLAppletElement.class b/target/classes/org/w3c/dom/html/HTMLAppletElement.class deleted file mode 100644 index d6494fe4..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLAppletElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLAreaElement.class b/target/classes/org/w3c/dom/html/HTMLAreaElement.class deleted file mode 100644 index 9591a05c..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLAreaElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLBRElement.class b/target/classes/org/w3c/dom/html/HTMLBRElement.class deleted file mode 100644 index 34708f5b..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLBRElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLBaseElement.class b/target/classes/org/w3c/dom/html/HTMLBaseElement.class deleted file mode 100644 index 37780997..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLBaseElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLBaseFontElement.class b/target/classes/org/w3c/dom/html/HTMLBaseFontElement.class deleted file mode 100644 index 0d3b6cbc..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLBaseFontElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLBlockquoteElement.class b/target/classes/org/w3c/dom/html/HTMLBlockquoteElement.class deleted file mode 100644 index c3f35083..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLBlockquoteElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLBodyElement.class b/target/classes/org/w3c/dom/html/HTMLBodyElement.class deleted file mode 100644 index cc5cfcfe..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLBodyElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLButtonElement.class b/target/classes/org/w3c/dom/html/HTMLButtonElement.class deleted file mode 100644 index dd9e5ac3..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLButtonElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLCollection.class b/target/classes/org/w3c/dom/html/HTMLCollection.class deleted file mode 100644 index 290bf298..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLCollection.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLDListElement.class b/target/classes/org/w3c/dom/html/HTMLDListElement.class deleted file mode 100644 index bf0452a5..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLDListElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLDirectoryElement.class b/target/classes/org/w3c/dom/html/HTMLDirectoryElement.class deleted file mode 100644 index ffed2a7d..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLDirectoryElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLDivElement.class b/target/classes/org/w3c/dom/html/HTMLDivElement.class deleted file mode 100644 index de874f72..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLDivElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLDocument.class b/target/classes/org/w3c/dom/html/HTMLDocument.class deleted file mode 100644 index 1675a55d..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLDocument.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLElement.class b/target/classes/org/w3c/dom/html/HTMLElement.class deleted file mode 100644 index 6e03bc30..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLFieldSetElement.class b/target/classes/org/w3c/dom/html/HTMLFieldSetElement.class deleted file mode 100644 index ba1bc8b0..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLFieldSetElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLFontElement.class b/target/classes/org/w3c/dom/html/HTMLFontElement.class deleted file mode 100644 index 179bc23d..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLFontElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLFormElement.class b/target/classes/org/w3c/dom/html/HTMLFormElement.class deleted file mode 100644 index 2a5f5a5e..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLFormElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLFrameElement.class b/target/classes/org/w3c/dom/html/HTMLFrameElement.class deleted file mode 100644 index bd70b246..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLFrameElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLFrameSetElement.class b/target/classes/org/w3c/dom/html/HTMLFrameSetElement.class deleted file mode 100644 index 3be0945d..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLFrameSetElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLHRElement.class b/target/classes/org/w3c/dom/html/HTMLHRElement.class deleted file mode 100644 index f09ea46f..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLHRElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLHeadElement.class b/target/classes/org/w3c/dom/html/HTMLHeadElement.class deleted file mode 100644 index d0e5f938..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLHeadElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLHeadingElement.class b/target/classes/org/w3c/dom/html/HTMLHeadingElement.class deleted file mode 100644 index 43232c3f..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLHeadingElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLHtmlElement.class b/target/classes/org/w3c/dom/html/HTMLHtmlElement.class deleted file mode 100644 index d9853fcb..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLHtmlElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLIFrameElement.class b/target/classes/org/w3c/dom/html/HTMLIFrameElement.class deleted file mode 100644 index ee78cb7a..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLIFrameElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLImageElement.class b/target/classes/org/w3c/dom/html/HTMLImageElement.class deleted file mode 100644 index 17e606e6..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLImageElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLInputElement.class b/target/classes/org/w3c/dom/html/HTMLInputElement.class deleted file mode 100644 index 87ea85ac..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLInputElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLIsIndexElement.class b/target/classes/org/w3c/dom/html/HTMLIsIndexElement.class deleted file mode 100644 index 836e4d9e..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLIsIndexElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLLIElement.class b/target/classes/org/w3c/dom/html/HTMLLIElement.class deleted file mode 100644 index bd64d009..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLLIElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLLabelElement.class b/target/classes/org/w3c/dom/html/HTMLLabelElement.class deleted file mode 100644 index 7c39abd0..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLLabelElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLLegendElement.class b/target/classes/org/w3c/dom/html/HTMLLegendElement.class deleted file mode 100644 index 8fa26a6a..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLLegendElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLLinkElement.class b/target/classes/org/w3c/dom/html/HTMLLinkElement.class deleted file mode 100644 index e7307edc..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLLinkElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLMapElement.class b/target/classes/org/w3c/dom/html/HTMLMapElement.class deleted file mode 100644 index 05810d34..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLMapElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLMenuElement.class b/target/classes/org/w3c/dom/html/HTMLMenuElement.class deleted file mode 100644 index 2744521f..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLMenuElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLMetaElement.class b/target/classes/org/w3c/dom/html/HTMLMetaElement.class deleted file mode 100644 index dbba49c4..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLMetaElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLModElement.class b/target/classes/org/w3c/dom/html/HTMLModElement.class deleted file mode 100644 index 90b41dcb..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLModElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLOListElement.class b/target/classes/org/w3c/dom/html/HTMLOListElement.class deleted file mode 100644 index 9108475d..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLOListElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLObjectElement.class b/target/classes/org/w3c/dom/html/HTMLObjectElement.class deleted file mode 100644 index 1dedb3ef..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLObjectElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLOptGroupElement.class b/target/classes/org/w3c/dom/html/HTMLOptGroupElement.class deleted file mode 100644 index 43e73398..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLOptGroupElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLOptionElement.class b/target/classes/org/w3c/dom/html/HTMLOptionElement.class deleted file mode 100644 index 12b03af3..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLOptionElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLParagraphElement.class b/target/classes/org/w3c/dom/html/HTMLParagraphElement.class deleted file mode 100644 index 8902cc60..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLParagraphElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLParamElement.class b/target/classes/org/w3c/dom/html/HTMLParamElement.class deleted file mode 100644 index 73181ab7..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLParamElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLPreElement.class b/target/classes/org/w3c/dom/html/HTMLPreElement.class deleted file mode 100644 index b56272a1..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLPreElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLQuoteElement.class b/target/classes/org/w3c/dom/html/HTMLQuoteElement.class deleted file mode 100644 index 460326cd..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLQuoteElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLScriptElement.class b/target/classes/org/w3c/dom/html/HTMLScriptElement.class deleted file mode 100644 index 5c886873..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLScriptElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLSelectElement.class b/target/classes/org/w3c/dom/html/HTMLSelectElement.class deleted file mode 100644 index bb023017..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLSelectElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLStyleElement.class b/target/classes/org/w3c/dom/html/HTMLStyleElement.class deleted file mode 100644 index 82c283c3..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLStyleElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTableCaptionElement.class b/target/classes/org/w3c/dom/html/HTMLTableCaptionElement.class deleted file mode 100644 index 3be96eb7..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTableCaptionElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTableCellElement.class b/target/classes/org/w3c/dom/html/HTMLTableCellElement.class deleted file mode 100644 index f56f2a7c..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTableCellElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTableColElement.class b/target/classes/org/w3c/dom/html/HTMLTableColElement.class deleted file mode 100644 index ea4bd700..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTableColElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTableElement.class b/target/classes/org/w3c/dom/html/HTMLTableElement.class deleted file mode 100644 index 1b0ce22c..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTableElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTableRowElement.class b/target/classes/org/w3c/dom/html/HTMLTableRowElement.class deleted file mode 100644 index edbc330a..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTableRowElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTableSectionElement.class b/target/classes/org/w3c/dom/html/HTMLTableSectionElement.class deleted file mode 100644 index 91a3d52d..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTableSectionElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTextAreaElement.class b/target/classes/org/w3c/dom/html/HTMLTextAreaElement.class deleted file mode 100644 index 4a8feaae..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTextAreaElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLTitleElement.class b/target/classes/org/w3c/dom/html/HTMLTitleElement.class deleted file mode 100644 index 7b29eab4..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLTitleElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/html/HTMLUListElement.class b/target/classes/org/w3c/dom/html/HTMLUListElement.class deleted file mode 100644 index bef4676e..00000000 Binary files a/target/classes/org/w3c/dom/html/HTMLUListElement.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/ranges/DocumentRange.class b/target/classes/org/w3c/dom/ranges/DocumentRange.class deleted file mode 100644 index 1c67c770..00000000 Binary files a/target/classes/org/w3c/dom/ranges/DocumentRange.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/ranges/Range.class b/target/classes/org/w3c/dom/ranges/Range.class deleted file mode 100644 index e28e9aef..00000000 Binary files a/target/classes/org/w3c/dom/ranges/Range.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/ranges/RangeException.class b/target/classes/org/w3c/dom/ranges/RangeException.class deleted file mode 100644 index 67e7955b..00000000 Binary files a/target/classes/org/w3c/dom/ranges/RangeException.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/stylesheets/DocumentStyle.class b/target/classes/org/w3c/dom/stylesheets/DocumentStyle.class deleted file mode 100644 index bd1b33af..00000000 Binary files a/target/classes/org/w3c/dom/stylesheets/DocumentStyle.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/stylesheets/LinkStyle.class b/target/classes/org/w3c/dom/stylesheets/LinkStyle.class deleted file mode 100644 index dface1ad..00000000 Binary files a/target/classes/org/w3c/dom/stylesheets/LinkStyle.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/stylesheets/MediaList.class b/target/classes/org/w3c/dom/stylesheets/MediaList.class deleted file mode 100644 index a23ac0d0..00000000 Binary files a/target/classes/org/w3c/dom/stylesheets/MediaList.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/stylesheets/StyleSheet.class b/target/classes/org/w3c/dom/stylesheets/StyleSheet.class deleted file mode 100644 index d8ab9230..00000000 Binary files a/target/classes/org/w3c/dom/stylesheets/StyleSheet.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/stylesheets/StyleSheetList.class b/target/classes/org/w3c/dom/stylesheets/StyleSheetList.class deleted file mode 100644 index 8f94c02d..00000000 Binary files a/target/classes/org/w3c/dom/stylesheets/StyleSheetList.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/traversal/DocumentTraversal.class b/target/classes/org/w3c/dom/traversal/DocumentTraversal.class deleted file mode 100644 index c3ffa88e..00000000 Binary files a/target/classes/org/w3c/dom/traversal/DocumentTraversal.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/traversal/NodeFilter.class b/target/classes/org/w3c/dom/traversal/NodeFilter.class deleted file mode 100644 index 3e24d3a6..00000000 Binary files a/target/classes/org/w3c/dom/traversal/NodeFilter.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/traversal/NodeIterator.class b/target/classes/org/w3c/dom/traversal/NodeIterator.class deleted file mode 100644 index dd3ca155..00000000 Binary files a/target/classes/org/w3c/dom/traversal/NodeIterator.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/traversal/TreeWalker.class b/target/classes/org/w3c/dom/traversal/TreeWalker.class deleted file mode 100644 index b9a8591e..00000000 Binary files a/target/classes/org/w3c/dom/traversal/TreeWalker.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/views/AbstractView.class b/target/classes/org/w3c/dom/views/AbstractView.class deleted file mode 100644 index 5d04f510..00000000 Binary files a/target/classes/org/w3c/dom/views/AbstractView.class and /dev/null differ diff --git a/target/classes/org/w3c/dom/views/DocumentView.class b/target/classes/org/w3c/dom/views/DocumentView.class deleted file mode 100644 index 7c32b883..00000000 Binary files a/target/classes/org/w3c/dom/views/DocumentView.class and /dev/null differ diff --git a/target/classes/org/xml/sax/AttributeList.class b/target/classes/org/xml/sax/AttributeList.class deleted file mode 100644 index bbe3f1f6..00000000 Binary files a/target/classes/org/xml/sax/AttributeList.class and /dev/null differ diff --git a/target/classes/org/xml/sax/Attributes.class b/target/classes/org/xml/sax/Attributes.class deleted file mode 100644 index 67940d30..00000000 Binary files a/target/classes/org/xml/sax/Attributes.class and /dev/null differ diff --git a/target/classes/org/xml/sax/ContentHandler.class b/target/classes/org/xml/sax/ContentHandler.class deleted file mode 100644 index 0cff5aa1..00000000 Binary files a/target/classes/org/xml/sax/ContentHandler.class and /dev/null differ diff --git a/target/classes/org/xml/sax/DTDHandler.class b/target/classes/org/xml/sax/DTDHandler.class deleted file mode 100644 index b1154643..00000000 Binary files a/target/classes/org/xml/sax/DTDHandler.class and /dev/null differ diff --git a/target/classes/org/xml/sax/DocumentHandler.class b/target/classes/org/xml/sax/DocumentHandler.class deleted file mode 100644 index 34dc459b..00000000 Binary files a/target/classes/org/xml/sax/DocumentHandler.class and /dev/null differ diff --git a/target/classes/org/xml/sax/EntityResolver.class b/target/classes/org/xml/sax/EntityResolver.class deleted file mode 100644 index 1b3a3469..00000000 Binary files a/target/classes/org/xml/sax/EntityResolver.class and /dev/null differ diff --git a/target/classes/org/xml/sax/ErrorHandler.class b/target/classes/org/xml/sax/ErrorHandler.class deleted file mode 100644 index 64368517..00000000 Binary files a/target/classes/org/xml/sax/ErrorHandler.class and /dev/null differ diff --git a/target/classes/org/xml/sax/HandlerBase.class b/target/classes/org/xml/sax/HandlerBase.class deleted file mode 100644 index eaaeb39c..00000000 Binary files a/target/classes/org/xml/sax/HandlerBase.class and /dev/null differ diff --git a/target/classes/org/xml/sax/InputSource.class b/target/classes/org/xml/sax/InputSource.class deleted file mode 100644 index a04eca54..00000000 Binary files a/target/classes/org/xml/sax/InputSource.class and /dev/null differ diff --git a/target/classes/org/xml/sax/Locator.class b/target/classes/org/xml/sax/Locator.class deleted file mode 100644 index 99173c11..00000000 Binary files a/target/classes/org/xml/sax/Locator.class and /dev/null differ diff --git a/target/classes/org/xml/sax/Parser.class b/target/classes/org/xml/sax/Parser.class deleted file mode 100644 index e8f17b3f..00000000 Binary files a/target/classes/org/xml/sax/Parser.class and /dev/null differ diff --git a/target/classes/org/xml/sax/SAXException.class b/target/classes/org/xml/sax/SAXException.class deleted file mode 100644 index 4980c447..00000000 Binary files a/target/classes/org/xml/sax/SAXException.class and /dev/null differ diff --git a/target/classes/org/xml/sax/SAXNotRecognizedException.class b/target/classes/org/xml/sax/SAXNotRecognizedException.class deleted file mode 100644 index cfc69e52..00000000 Binary files a/target/classes/org/xml/sax/SAXNotRecognizedException.class and /dev/null differ diff --git a/target/classes/org/xml/sax/SAXNotSupportedException.class b/target/classes/org/xml/sax/SAXNotSupportedException.class deleted file mode 100644 index b8827aa2..00000000 Binary files a/target/classes/org/xml/sax/SAXNotSupportedException.class and /dev/null differ diff --git a/target/classes/org/xml/sax/SAXParseException.class b/target/classes/org/xml/sax/SAXParseException.class deleted file mode 100644 index bced54d4..00000000 Binary files a/target/classes/org/xml/sax/SAXParseException.class and /dev/null differ diff --git a/target/classes/org/xml/sax/XMLFilter.class b/target/classes/org/xml/sax/XMLFilter.class deleted file mode 100644 index 321f25f3..00000000 Binary files a/target/classes/org/xml/sax/XMLFilter.class and /dev/null differ diff --git a/target/classes/org/xml/sax/XMLReader.class b/target/classes/org/xml/sax/XMLReader.class deleted file mode 100644 index d25a707c..00000000 Binary files a/target/classes/org/xml/sax/XMLReader.class and /dev/null differ diff --git a/target/classes/org/xml/sax/ext/DeclHandler.class b/target/classes/org/xml/sax/ext/DeclHandler.class deleted file mode 100644 index da798a3d..00000000 Binary files a/target/classes/org/xml/sax/ext/DeclHandler.class and /dev/null differ diff --git a/target/classes/org/xml/sax/ext/LexicalHandler.class b/target/classes/org/xml/sax/ext/LexicalHandler.class deleted file mode 100644 index fc6ece80..00000000 Binary files a/target/classes/org/xml/sax/ext/LexicalHandler.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/AttributeListImpl.class b/target/classes/org/xml/sax/helpers/AttributeListImpl.class deleted file mode 100644 index d71b3887..00000000 Binary files a/target/classes/org/xml/sax/helpers/AttributeListImpl.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/AttributesImpl.class b/target/classes/org/xml/sax/helpers/AttributesImpl.class deleted file mode 100644 index 26849389..00000000 Binary files a/target/classes/org/xml/sax/helpers/AttributesImpl.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/DefaultHandler.class b/target/classes/org/xml/sax/helpers/DefaultHandler.class deleted file mode 100644 index e2aa981a..00000000 Binary files a/target/classes/org/xml/sax/helpers/DefaultHandler.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/LocatorImpl.class b/target/classes/org/xml/sax/helpers/LocatorImpl.class deleted file mode 100644 index 95b6bcb8..00000000 Binary files a/target/classes/org/xml/sax/helpers/LocatorImpl.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/NamespaceSupport$Context.class b/target/classes/org/xml/sax/helpers/NamespaceSupport$Context.class deleted file mode 100644 index e1ad3b3f..00000000 Binary files a/target/classes/org/xml/sax/helpers/NamespaceSupport$Context.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/NamespaceSupport.class b/target/classes/org/xml/sax/helpers/NamespaceSupport.class deleted file mode 100644 index 5c2475bb..00000000 Binary files a/target/classes/org/xml/sax/helpers/NamespaceSupport.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/NewInstance.class b/target/classes/org/xml/sax/helpers/NewInstance.class deleted file mode 100644 index 9658d4e7..00000000 Binary files a/target/classes/org/xml/sax/helpers/NewInstance.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/ParserAdapter$AttributeListAdapter.class b/target/classes/org/xml/sax/helpers/ParserAdapter$AttributeListAdapter.class deleted file mode 100644 index c59a74f8..00000000 Binary files a/target/classes/org/xml/sax/helpers/ParserAdapter$AttributeListAdapter.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/ParserAdapter.class b/target/classes/org/xml/sax/helpers/ParserAdapter.class deleted file mode 100644 index 5b8bbfd0..00000000 Binary files a/target/classes/org/xml/sax/helpers/ParserAdapter.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/ParserFactory.class b/target/classes/org/xml/sax/helpers/ParserFactory.class deleted file mode 100644 index 594fc257..00000000 Binary files a/target/classes/org/xml/sax/helpers/ParserFactory.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/XMLFilterImpl.class b/target/classes/org/xml/sax/helpers/XMLFilterImpl.class deleted file mode 100644 index c151e6bc..00000000 Binary files a/target/classes/org/xml/sax/helpers/XMLFilterImpl.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter.class b/target/classes/org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter.class deleted file mode 100644 index 7d3f3ea4..00000000 Binary files a/target/classes/org/xml/sax/helpers/XMLReaderAdapter$AttributesAdapter.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/XMLReaderAdapter.class b/target/classes/org/xml/sax/helpers/XMLReaderAdapter.class deleted file mode 100644 index d77730a3..00000000 Binary files a/target/classes/org/xml/sax/helpers/XMLReaderAdapter.class and /dev/null differ diff --git a/target/classes/org/xml/sax/helpers/XMLReaderFactory.class b/target/classes/org/xml/sax/helpers/XMLReaderFactory.class deleted file mode 100644 index 3585cab4..00000000 Binary files a/target/classes/org/xml/sax/helpers/XMLReaderFactory.class and /dev/null differ diff --git a/target/classes/styles/admin.css b/target/classes/styles/admin.css deleted file mode 100644 index a98b6f90..00000000 --- a/target/classes/styles/admin.css +++ /dev/null @@ -1,127 +0,0 @@ - -.search-field { - -fx-background-color: rgba(23, 169, 168, 1); - -fx-text-fill: rgba(255, 255, 247, 1); - - -fx-background-image: url('../images/search.png'); - -fx-background-repeat: no-repeat; - -fx-background-position: right center; - -fx-font-size: 18px; - -fx-background-size: 12%; -} - -.hbox-top-background { - - -fx-background-color: rgba(255, 255, 255, 1); -} - -.logo-background { - - -fx-background-color: rgba(28, 185, 176, 1); - -fx-border-style: solid; - -fx-border-width: 0 0 1px 0; - -fx-border-color: rgba(28, 185, 176, 1); -} - -.hbox-title { - -fx-text-fill: rgba(51, 51, 51, .8); - -fx-font-size: 15px; - -fx-font-family: cursive; -} - -.control-background { - - -fx-background-color: rgba(23, 169, 168, 1); - -fx-border-style: solid; - -fx-border-width: 0 0 1px 0; - -fx-border-color: rgba(23, 169, 168, 1); -} - -.hamburger-button { - -fx-background-image: url("../images/menu.png"); - -fx-background-color: rgba(23, 169, 168, 1); -} - -.open-menu { - -fx-background-image: url("../images/arrow.png"); - -fx-background-color: rgba(23, 169, 168, 1); -} - -.logout-button { - -fx-background-image: url("../images/logout.png"); -} - -.hamburger-button, .logout-button, .open-menu { - -fx-background-repeat: no-repeat; - -fx-background-size: 80%; - -fx-background-position: center; - -fx-background-color: rgba(23, 169, 168, 1); -} - -.hamburger-button:hover, .logout-button:hover, .open-menu:hover { - -fx-background-color: rgba(255, 255, 247, .2); -} - -.sidebar-menu { - - -fx-background-color: rgba(51, 50, 68, 1); -} - -.menu-buttons { - - -fx-text-fill: rgba(93, 93, 119, 1); - -fx-font-size: 16px; - -fx-background-color: rgba(51, 50, 68, 1); - -fx-border-color: transparent; - -fx-border-style: solid; - -fx-border-width: 0 0 0 5px; - -fx-border-radius: 0; - -fx-background-radius: 0; - -fx-background-insets: 0; - -fx-alignment: center-left; -} - -.menu-buttons:hover { - - -fx-text-fill: rgba(156, 156, 168, 1); - -fx-background-color: rgba(44, 43, 61, 1); - -fx-border-style: solid; - -fx-border-width: 0 0 0 5px; - -fx-border-color: transparent transparent transparent rgba(29, 114, 107, 1); -} - -.menu-buttons-selected { - - -fx-text-fill: rgba(156, 156, 168, 1); - -fx-background-color: rgba(44, 43, 61, 1); - -fx-border-style: solid; - -fx-border-width: 0 0 0 5px; - -fx-border-color: transparent transparent transparent rgba(29, 114, 107, 1); -} - -.pane-user { - - -fx-border-color: rgba(72, 78, 72, .5); - -fx-border-style: solid; - -fx-border-width: 0 0 1px 0; -} - -.pane-user-text { - - -fx-text-fill: #ffffff; - -fx-font-size: 16px; -} - -.pane-user-pic { - - -fx-background-radius: 5em; -} - -.vbox-panel { - - -fx-background-color: rgba(238, 238, 238, 1); -} - -.hbox-header { - -fx-background-color: rgba(250, 250, 250, 1); -} \ No newline at end of file diff --git a/target/classes/styles/confirm.css b/target/classes/styles/confirm.css deleted file mode 100644 index 07c1bf41..00000000 --- a/target/classes/styles/confirm.css +++ /dev/null @@ -1,21 +0,0 @@ - -.vBox-background { - -fx-background-color: rgba(0, 102, 102, 1); -} - -.retail{ - -fx-text-fill: rgba(255, 204, 51, 1); - -fx-font-size: 30px; -} - -.close-button { - -fx-background-image: url("../images/close.png"); - -fx-background-color: rgba(0, 102, 102, 1); - -fx-background-repeat: no-repeat; - -fx-background-size: 75%; - -fx-background-position: center center; -} - -.close-button:hover { - -fx-background-color: rgba(255, 255, 247, .3); -} \ No newline at end of file diff --git a/target/classes/styles/form.css b/target/classes/styles/form.css deleted file mode 100644 index 4541f5df..00000000 --- a/target/classes/styles/form.css +++ /dev/null @@ -1,25 +0,0 @@ - -.top-bar, .header, .bottom-bar { - -fx-background-color: #16A086; -} - -.header-label{ - -fx-text-fill: #ffffff; - -fx-font-size: 50; -} - -.close-button { - -fx-background-image: url("../images/close.png"); - -fx-background-color: #16A086; - -fx-background-repeat: no-repeat; - -fx-background-size: 75%; - -fx-background-position: center center; -} - -.close-button:hover { - -fx-background-color: rgba(255, 255, 247, .3); -} - -.vbox-body { - -fx-background-color: #1BBC9B; -} diff --git a/target/classes/styles/invoice.css b/target/classes/styles/invoice.css deleted file mode 100644 index e7837cf7..00000000 --- a/target/classes/styles/invoice.css +++ /dev/null @@ -1,25 +0,0 @@ - -.vBox-background { - -fx-background-color: rgba(102,102,255, 1);; -} - -.close-button { - -fx-background-image: url("../images/close.png"); - -fx-background-color: rgba(102,102,255, 1); - -fx-background-repeat: no-repeat; - -fx-background-size: 75%; - -fx-background-position: center center; -} - -.close-button:hover { - -fx-background-color: rgba(255, 255, 247, .3); -} - -.text-field { - -fx-font-size: 28; -} - -.buttons { - - -fx-font-size: 20; -} \ No newline at end of file diff --git a/target/classes/styles/login.css b/target/classes/styles/login.css deleted file mode 100644 index ec08abcf..00000000 --- a/target/classes/styles/login.css +++ /dev/null @@ -1,62 +0,0 @@ - -.minus-button { - -fx-background-image: url("../images/minus.png"); -} - -.close-button { - -fx-background-image: url("../images/close.png"); -} - -.minus-button, .close-button { - -fx-background-repeat: no-repeat; - -fx-background-size: 75%; - -fx-background-position: center center; - -fx-background-color: rgba(0, 88, 122, 1); -} - -.close-button:hover { - -fx-background-color: rgba(255, 255, 247, .3); -} - -.minus-button:hover { - -fx-background-color: rgba(255, 255, 247, .3); -} - -.left-box{ - -fx-background-color: rgba(0, 136, 145, 1); -} - -.right-box{ - -fx-background-color: rgba(0, 88, 122, 1); -} - -.tagline{ - -fx-font-family: Century Gothic; - -fx-text-fill: #ffffff; - -fx-font-size: 18px; -} - -.sign-in{ - -fx-font-family: Century Gothic; - -fx-text-fill: rgba(231,231,222,1); - -fx-font-size: 18; -} - -.error-message { - -fx-font-family: Century Gothic; - -fx-text-fill: #ff3333; - -fx-font-size: 18; -} - -.text-field { - -fx-font-family: Consolas; - -fx-text-fill: #ffffff; - -fx-font-size: 18; - -fx-background-color: rgba(0, 88, 122, 1); -} - -.buttons { - -fx-text-fill: #000000; - -fx-font-family: Verdana; - -fx-background-color: rgb(205,203,166); -} \ No newline at end of file diff --git a/target/classes/styles/pos.css b/target/classes/styles/pos.css deleted file mode 100644 index 70afa741..00000000 --- a/target/classes/styles/pos.css +++ /dev/null @@ -1,70 +0,0 @@ - -.header{ - -fx-background-color: #cc66ff; -} - -.header-label{ - -fx-text-fill: #ffffff; - -fx-font-size: 40px; -} - -.product-vbox{ - -fx-background-color: #ccccff; -} - -.search-field { - -fx-text-fill: #000000; - -fx-background-image: url('../images/search.png'); - -fx-background-repeat: no-repeat; - -fx-background-position: right center; - -fx-font-size: 17; - -fx-background-size: 12%; -} - -.menu-vbox{ - -fx-background-color: #ccccff; -} - -.selection-hbox{ - -fx-background-color: #ff99ff; -} - -.table { - -fx-font-size: 17; -} - -.left-product-vbox{ - -fx-background-color: #ffcc33; -} - -.left-grid { - -fx-font-size: 18; -} - -.left-hbox-buttons { - -fx-font-size: 15px; -} - -.right-product-vbox{ - -fx-background-color: #ff3333; -} - -.right-grid { - -fx-font-size: 18; -} - -.right-hbox-buttons { - -fx-font-size: 15px; -} - -.logout-button { - -fx-background-image: url("../images/logout.png"); - -fx-background-repeat: no-repeat; - -fx-background-size: 80%; - -fx-background-position: center; - -fx-background-color: #cc66ff; -} - -.logout-button:hover { - -fx-background-color: rgba(255, 255, 247, .2); -} \ No newline at end of file diff --git a/target/classes/styles/productAdd.css b/target/classes/styles/productAdd.css deleted file mode 100644 index 2da72385..00000000 --- a/target/classes/styles/productAdd.css +++ /dev/null @@ -1,13 +0,0 @@ - -.header{ - -fx-background-color: #ff3333; -} - -.header-label{ - -fx-text-fill: #ffffff; - -fx-font-size: 40px; -} - -*{ - -fx-font-size: 25px; -} diff --git a/target/classes/styles/purchase.css b/target/classes/styles/purchase.css deleted file mode 100644 index f28df142..00000000 --- a/target/classes/styles/purchase.css +++ /dev/null @@ -1,9 +0,0 @@ - -.header{ - -fx-background-color: #ff3333; -} - -.header-label{ - -fx-text-fill: #ffffff; - -fx-font-size: 40px; -} \ No newline at end of file diff --git a/target/dependency-maven-plugin-markers/antlr-antlr-jar-2.7.7.marker b/target/dependency-maven-plugin-markers/antlr-antlr-jar-2.7.7.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/com.fasterxml-classmate-jar-1.3.0.marker b/target/dependency-maven-plugin-markers/com.fasterxml-classmate-jar-1.3.0.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/com.itextpdf-itextpdf-jar-5.5.11.marker b/target/dependency-maven-plugin-markers/com.itextpdf-itextpdf-jar-5.5.11.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/commons-codec-commons-codec-jar-1.10.marker b/target/dependency-maven-plugin-markers/commons-codec-commons-codec-jar-1.10.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/dom4j-dom4j-jar-1.6.1.marker b/target/dependency-maven-plugin-markers/dom4j-dom4j-jar-1.6.1.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/mysql-mysql-connector-java-jar-5.1.39.marker b/target/dependency-maven-plugin-markers/mysql-mysql-connector-java-jar-5.1.39.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.apache.geronimo.specs-geronimo-jta_1.1_spec-jar-1.1.1.marker b/target/dependency-maven-plugin-markers/org.apache.geronimo.specs-geronimo-jta_1.1_spec-jar-1.1.1.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.hibernate-hibernate-core-jar-5.1.0.Final.marker b/target/dependency-maven-plugin-markers/org.hibernate-hibernate-core-jar-5.1.0.Final.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.hibernate-hibernate-entitymanager-jar-5.1.0.Final.marker b/target/dependency-maven-plugin-markers/org.hibernate-hibernate-entitymanager-jar-5.1.0.Final.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.hibernate-hibernate-java8-jar-5.1.0.Final.marker b/target/dependency-maven-plugin-markers/org.hibernate-hibernate-java8-jar-5.1.0.Final.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.hibernate.common-hibernate-commons-annotations-jar-5.0.1.Final.marker b/target/dependency-maven-plugin-markers/org.hibernate.common-hibernate-commons-annotations-jar-5.0.1.Final.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.hibernate.javax.persistence-hibernate-jpa-2.1-api-jar-1.0.0.Final.marker b/target/dependency-maven-plugin-markers/org.hibernate.javax.persistence-hibernate-jpa-2.1-api-jar-1.0.0.Final.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.javassist-javassist-jar-3.20.0-GA.marker b/target/dependency-maven-plugin-markers/org.javassist-javassist-jar-3.20.0-GA.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.jboss-jandex-jar-2.0.0.Final.marker b/target/dependency-maven-plugin-markers/org.jboss-jandex-jar-2.0.0.Final.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/org.jboss.logging-jboss-logging-jar-3.3.0.Final.marker b/target/dependency-maven-plugin-markers/org.jboss.logging-jboss-logging-jar-3.3.0.Final.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/dependency-maven-plugin-markers/xml-apis-xml-apis-jar-1.0.b2.marker b/target/dependency-maven-plugin-markers/xml-apis-xml-apis-jar-1.0.b2.marker deleted file mode 100644 index e69de29b..00000000 diff --git a/target/inventory-1.0.jar b/target/inventory-1.0.jar deleted file mode 100644 index 594e1bac..00000000 Binary files a/target/inventory-1.0.jar and /dev/null differ diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties deleted file mode 100644 index 77bda8c3..00000000 --- a/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Tue May 02 11:46:12 BDT 2017 -version=1.0 -groupId=com.rafsan -artifactId=inventory diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst deleted file mode 100644 index 59e9bf56..00000000 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst +++ /dev/null @@ -1,55 +0,0 @@ -com\rafsan\inventory\model\SalesModel.class -com\rafsan\inventory\dao\ProductDao.class -com\rafsan\inventory\controller\sales\SalesController.class -com\rafsan\inventory\entity\Purchase.class -com\rafsan\inventory\entity\Category.class -com\rafsan\inventory\HibernateUtil.class -com\rafsan\inventory\interfaces\ProductInterface.class -com\rafsan\inventory\entity\Item.class -com\rafsan\inventory\entity\Payment.class -com\rafsan\inventory\dao\InvoiceDao.class -com\rafsan\inventory\entity\Supplier.class -com\rafsan\inventory\controller\category\AddController.class -com\rafsan\inventory\interfaces\ReportInterface.class -com\rafsan\inventory\controller\pos\PosController.class -com\rafsan\inventory\dao\SupplierDao.class -com\rafsan\inventory\model\PurchaseModel.class -com\rafsan\inventory\pdf\PrintInvoice.class -com\rafsan\inventory\controller\pos\ConfirmController.class -com\rafsan\inventory\controller\product\EditController.class -com\rafsan\inventory\controller\employee\EmployeeController.class -com\rafsan\inventory\controller\report\ViewController.class -com\rafsan\inventory\controller\category\CategoryController.class -com\rafsan\inventory\controller\product\ProductController.class -com\rafsan\inventory\controller\supplier\EditController.class -com\rafsan\inventory\controller\employee\EditController.class -com\rafsan\inventory\controller\supplier\SupplierController.class -com\rafsan\inventory\controller\category\EditController.class -com\rafsan\inventory\model\CategoryModel.class -com\rafsan\inventory\interfaces\SaleInterface.class -com\rafsan\inventory\controller\supplier\AddController.class -com\rafsan\inventory\dao\CategoryDao.class -com\rafsan\inventory\dao\SaleDao.class -com\rafsan\inventory\controller\pos\InvoiceController.class -com\rafsan\inventory\interfaces\SupplierInterface.class -com\rafsan\inventory\dao\EmployeeDao.class -com\rafsan\inventory\dao\PurchaseDao.class -com\rafsan\inventory\model\EmployeeModel.class -com\rafsan\inventory\controller\report\ReportController.class -com\rafsan\inventory\entity\Product.class -com\rafsan\inventory\controller\product\AddController.class -com\rafsan\inventory\entity\Employee.class -com\rafsan\inventory\MainApp.class -com\rafsan\inventory\entity\Sale.class -com\rafsan\inventory\entity\Invoice.class -com\rafsan\inventory\model\SupplierModel.class -com\rafsan\inventory\controller\employee\AddController.class -com\rafsan\inventory\controller\login\LoginController.class -com\rafsan\inventory\model\InvoiceModel.class -com\rafsan\inventory\model\ProductModel.class -com\rafsan\inventory\interfaces\PurchaseInterface.class -com\rafsan\inventory\controller\admin\AdminController.class -com\rafsan\inventory\controller\purchase\PurchaseController.class -com\rafsan\inventory\interfaces\EmployeeInterface.class -com\rafsan\inventory\interfaces\CategoryInterface.class -com\rafsan\inventory\controller\purchase\AddController.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst deleted file mode 100644 index aabee905..00000000 --- a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst +++ /dev/null @@ -1,55 +0,0 @@ -E:\inventory\src\main\java\com\rafsan\inventory\entity\Supplier.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\pos\InvoiceController.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Employee.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\category\EditController.java -E:\inventory\src\main\java\com\rafsan\inventory\dao\EmployeeDao.java -E:\inventory\src\main\java\com\rafsan\inventory\dao\InvoiceDao.java -E:\inventory\src\main\java\com\rafsan\inventory\interfaces\SaleInterface.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Category.java -E:\inventory\src\main\java\com\rafsan\inventory\model\ProductModel.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\product\ProductController.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Product.java -E:\inventory\src\main\java\com\rafsan\inventory\dao\ProductDao.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\purchase\AddController.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Sale.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\report\ReportController.java -E:\inventory\src\main\java\com\rafsan\inventory\model\EmployeeModel.java -E:\inventory\src\main\java\com\rafsan\inventory\dao\SupplierDao.java -E:\inventory\src\main\java\com\rafsan\inventory\interfaces\CategoryInterface.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\category\AddController.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\login\LoginController.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\pos\PosController.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Invoice.java -E:\inventory\src\main\java\com\rafsan\inventory\model\InvoiceModel.java -E:\inventory\src\main\java\com\rafsan\inventory\dao\SaleDao.java -E:\inventory\src\main\java\com\rafsan\inventory\HibernateUtil.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\admin\AdminController.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Item.java -E:\inventory\src\main\java\com\rafsan\inventory\model\PurchaseModel.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\purchase\PurchaseController.java -E:\inventory\src\main\java\com\rafsan\inventory\interfaces\ReportInterface.java -E:\inventory\src\main\java\com\rafsan\inventory\MainApp.java -E:\inventory\src\main\java\com\rafsan\inventory\model\SupplierModel.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\supplier\AddController.java -E:\inventory\src\main\java\com\rafsan\inventory\interfaces\PurchaseInterface.java -E:\inventory\src\main\java\com\rafsan\inventory\interfaces\SupplierInterface.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\category\CategoryController.java -E:\inventory\src\main\java\com\rafsan\inventory\dao\PurchaseDao.java -E:\inventory\src\main\java\com\rafsan\inventory\interfaces\EmployeeInterface.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\pos\ConfirmController.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Purchase.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\employee\EditController.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\product\EditController.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\supplier\EditController.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\product\AddController.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\employee\AddController.java -E:\inventory\src\main\java\com\rafsan\inventory\model\CategoryModel.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\supplier\SupplierController.java -E:\inventory\src\main\java\com\rafsan\inventory\dao\CategoryDao.java -E:\inventory\src\main\java\com\rafsan\inventory\pdf\PrintInvoice.java -E:\inventory\src\main\java\com\rafsan\inventory\entity\Payment.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\report\ViewController.java -E:\inventory\src\main\java\com\rafsan\inventory\interfaces\ProductInterface.java -E:\inventory\src\main\java\com\rafsan\inventory\model\SalesModel.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\sales\SalesController.java -E:\inventory\src\main\java\com\rafsan\inventory\controller\employee\EmployeeController.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst deleted file mode 100644 index e69de29b..00000000