diff --git a/Products.java b/Products.java
index 7b4e6310e5d0865a7407a84867e90c78a6ef08d1..e54f6533704cda055d73048fc0b77a573ac34360 100644
--- a/Products.java
+++ b/Products.java
@@ -1,5 +1,14 @@
 /* check out these products! */
 public class Products { /* a good class, but not as good as cse391 */
+    public Product rairai77sProudct() {
+        return new Product(
+            "Cheeto Dust",
+            "Just the good part (spicy)",
+            "cheetos.png",
+            "News about cheeto dust taking over",
+            42.024
+        );
+    }
     public Product joshsProduct() {
         return new Product(
             "Dirt",
@@ -68,5 +77,14 @@ public class Products { /* a good class, but not as good as cse391 */
 	    "rolling grass fields, blue skies, white clouds",
 	    100000
         );
+    
+    public Product aamangusProduct() {
+    	return new Product(
+		"Broody Chicken",
+		"It screams!",
+		"Discord Chicken.PNG",
+		"image of a broody chicken",
+		1.01
+	);
     }
 }
diff --git a/Staff.java b/Staff.java
index 60cb3747fafbf9c96540a8ed1907f745caaa8b75..ca20104978f224712ca88501eab3699ccd514ffa 100644
--- a/Staff.java
+++ b/Staff.java
@@ -1,5 +1,13 @@
 public class Staff {
-
+    public Employee rairai77() {
+        return new Employee(
+            "Raahil Jain",
+            "Student",
+            "Sleepy",
+            "snorlax.png",
+            "A snorlax sitting"
+        );
+    } 
     public Employee faangPup() {
         return new Employee(
           "Steve",
@@ -20,6 +28,16 @@ public class Staff {
       );
     }
 
+    public Employee mxw() {
+      return new Employee(
+          "Matt",
+          "candy thrower",
+          "tired",
+          "matt.png",
+          "matt smiling in front of a polka-dotted wall."
+      );
+    }
+
     public Employee antonio6() {
 	    return new Employee(
         "Antonio",
@@ -77,6 +95,14 @@ public class Staff {
 	    "Can I go to sleep now?",
 	    "icon.jpeg",
 	    "angrily studying"
+    
+    public Employee aamangus() {
+    	return new Employee(
+		"Anthony",
+		"Student",
+		"studies",
+		"Discord Chicken.PNG",
+		"funny chicken"
 	);
     }
 }	
diff --git a/images/products/cheeto.png b/images/products/cheeto.png
new file mode 100644
index 0000000000000000000000000000000000000000..f214c70fcccebf9da799deb04e4eec6b267a4d3e
Binary files /dev/null and b/images/products/cheeto.png differ
diff --git a/images/staff/Discord Chicken.PNG b/images/staff/Discord Chicken.PNG
new file mode 100644
index 0000000000000000000000000000000000000000..96fa649a65daa0aaeed5458cda9263a9edf28d21
Binary files /dev/null and b/images/staff/Discord Chicken.PNG differ
diff --git a/images/staff/matt.png b/images/staff/matt.png
new file mode 100644
index 0000000000000000000000000000000000000000..dd8176989ab173e9dc41568f7e4c3d4a69dc95b0
Binary files /dev/null and b/images/staff/matt.png differ
diff --git a/images/staff/snorlax.png b/images/staff/snorlax.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e4cb191089d41cc90ff14d6422c5bd421877da3
Binary files /dev/null and b/images/staff/snorlax.png differ