Datasets:
HTB v1: htb_dataset.tsv (400 prompts) + dataset card
Browse files- README.md +114 -0
- htb_dataset.tsv +401 -0
README.md
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: cc-by-4.0
|
| 5 |
+
task_categories:
|
| 6 |
+
- text-generation
|
| 7 |
+
tags:
|
| 8 |
+
- humor
|
| 9 |
+
- benchmark
|
| 10 |
+
- evaluation
|
| 11 |
+
pretty_name: Humor Transfer Bench (HTB)
|
| 12 |
+
size_categories:
|
| 13 |
+
- n<1K
|
| 14 |
+
dataset_info:
|
| 15 |
+
features:
|
| 16 |
+
- name: id
|
| 17 |
+
dtype: string
|
| 18 |
+
- name: domain
|
| 19 |
+
dtype: string
|
| 20 |
+
- name: prompt
|
| 21 |
+
dtype: string
|
| 22 |
+
config_name: default
|
| 23 |
+
splits:
|
| 24 |
+
- name: test
|
| 25 |
+
num_examples: 400
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
# Humor Transfer Bench (HTB)
|
| 29 |
+
|
| 30 |
+
**Full name:** Humor Transfer Bench
|
| 31 |
+
**Paper:** [HumorGen (Ajayi & Mitra, 2026)](https://arxiv.org/abs/2604.09629)
|
| 32 |
+
|
| 33 |
+
---
|
| 34 |
+
|
| 35 |
+
## What HTB is for
|
| 36 |
+
|
| 37 |
+
HTB is an **evaluation-only** set of **400 English input prompts** for testing **humor generation** in language models.
|
| 38 |
+
|
| 39 |
+
Each row gives you an **input prompt**. You pass it to your model with **your own** system/user template and decoding setup—HTB does not include or require a fixed generation instruction.
|
| 40 |
+
|
| 41 |
+
HTB is **not** for training. Use it to compare models on the same inputs across eight prompt categories.
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
## File: `htb_dataset.tsv`
|
| 46 |
+
|
| 47 |
+
| | |
|
| 48 |
+
|--|--|
|
| 49 |
+
| **Format** | TSV, UTF-8, tab-separated |
|
| 50 |
+
| **Rows** | 400 (+ header) |
|
| 51 |
+
| **Columns** | `id`, `domain`, `prompt` |
|
| 52 |
+
|
| 53 |
+
**`id` format:** `HTB_{A–H}_{001–050}` (e.g. `HTB_A_001`)
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
## Domains (as in the file)
|
| 58 |
+
|
| 59 |
+
50 prompts per domain. The **`domain`** column is the label stored in the dataset.
|
| 60 |
+
|
| 61 |
+
| ID letter | `domain` value | Example `prompt` |
|
| 62 |
+
|:---------:|----------------|------------------|
|
| 63 |
+
| **A** | Fun Facts | Apples float in water because they are 25 percent air. |
|
| 64 |
+
| **B** | Daily Life | My houseplant is judging my life choices. |
|
| 65 |
+
| **C** | Social Terms | Generational amnesia. |
|
| 66 |
+
| **D** | Object Voices | My calendar shrieked: You have no free time! |
|
| 67 |
+
| **E** | Fantasy Creatures | A genie grants a wish for more wishes. |
|
| 68 |
+
| **F** | Twisted Definitions | A game is a challenge you can accept. |
|
| 69 |
+
| **G** | Direct Prompts | Tell a joke about emojis. |
|
| 70 |
+
| **H** | News Headlines | Researchers find link between sleep quality and memory retention |
|
| 71 |
+
|
| 72 |
+
The HumorGen paper appendix discusses the design rationale for these eight categories in more detail.
|
| 73 |
+
|
| 74 |
+
---
|
| 75 |
+
|
| 76 |
+
## How to use
|
| 77 |
+
|
| 78 |
+
1. Load `htb_dataset.tsv`.
|
| 79 |
+
2. For each row, feed **`prompt`** to your model with whatever generation prompt / chat template you use.
|
| 80 |
+
3. Evaluate outputs with your chosen method (pairwise judging, human eval, etc.) and report your protocol.
|
| 81 |
+
|
| 82 |
+
The HumorGen paper reports one such setup (15 models, Llama-3.3-70B and Qwen-2.5-72B judges). That is **their** protocol, not a requirement of the benchmark.
|
| 83 |
+
|
| 84 |
+
---
|
| 85 |
+
|
| 86 |
+
## License
|
| 87 |
+
|
| 88 |
+
Domains **A–G:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) (HTB-authored prompts).
|
| 89 |
+
|
| 90 |
+
Domain **H (News Headlines):** Headlines sourced from publicly available BBC News text, with basic content filtering applied. Used as evaluation prompts only.
|
| 91 |
+
|
| 92 |
+
---
|
| 93 |
+
|
| 94 |
+
## Citation
|
| 95 |
+
|
| 96 |
+
If you use HTB, cite the HumorGen paper:
|
| 97 |
+
|
| 98 |
+
```bibtex
|
| 99 |
+
@misc{ajayi2026humorgen,
|
| 100 |
+
title = {HumorGen: Cognitive Synergy for Humor Generation in Large Language Models via Persona-Based Distillation},
|
| 101 |
+
author = {Ajayi, Edward and Mitra, Prasenjit},
|
| 102 |
+
year = {2026},
|
| 103 |
+
eprint = {2604.09629},
|
| 104 |
+
archivePrefix= {arXiv},
|
| 105 |
+
primaryClass = {cs.CL},
|
| 106 |
+
url = {https://arxiv.org/abs/2604.09629}
|
| 107 |
+
}
|
| 108 |
+
```
|
| 109 |
+
|
| 110 |
+
---
|
| 111 |
+
|
| 112 |
+
## Authors
|
| 113 |
+
|
| 114 |
+
Edward Ajayi, Prasenjit Mitra — Carnegie Mellon University Africa
|
htb_dataset.tsv
ADDED
|
@@ -0,0 +1,401 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id domain prompt
|
| 2 |
+
HTB_A_001 Fun Facts Apples float in water because they are 25 percent air.
|
| 3 |
+
HTB_A_002 Fun Facts Venus is the only planet that spins clockwise.
|
| 4 |
+
HTB_A_003 Fun Facts The unicorn is the national animal of Scotland.
|
| 5 |
+
HTB_A_004 Fun Facts The inventor of the frisbee was turned into a frisbee.
|
| 6 |
+
HTB_A_005 Fun Facts Wombat poop is cube-shaped.
|
| 7 |
+
HTB_A_006 Fun Facts Fingernails grow faster than toenails.
|
| 8 |
+
HTB_A_007 Fun Facts Peanuts aren't technically nuts.
|
| 9 |
+
HTB_A_008 Fun Facts Japanese macaques make snowballs for fun.
|
| 10 |
+
HTB_A_009 Fun Facts The letter Q doesn't appear in any US state name.
|
| 11 |
+
HTB_A_010 Fun Facts Penguins propose to their mates with a pebble.
|
| 12 |
+
HTB_A_011 Fun Facts It is physically impossible for pigs to look up into the sky.
|
| 13 |
+
HTB_A_012 Fun Facts An ostrich's eye is bigger than its brain.
|
| 14 |
+
HTB_A_013 Fun Facts Cows have best friends.
|
| 15 |
+
HTB_A_014 Fun Facts Octopuses have three hearts.
|
| 16 |
+
HTB_A_015 Fun Facts Movie trailers originally played after the movie.
|
| 17 |
+
HTB_A_016 Fun Facts Blood donors in Sweden receive a text when their blood is used.
|
| 18 |
+
HTB_A_017 Fun Facts Some cats are allergic to humans.
|
| 19 |
+
HTB_A_018 Fun Facts A chef's toque contains 100 folds.
|
| 20 |
+
HTB_A_019 Fun Facts The original name for the search engine Google was Backrub.
|
| 21 |
+
HTB_A_020 Fun Facts Bananas are technically berries.
|
| 22 |
+
HTB_A_021 Fun Facts Dead people can get goosebumps.
|
| 23 |
+
HTB_A_022 Fun Facts Tigers have striped skin, not just striped fur.
|
| 24 |
+
HTB_A_023 Fun Facts Snails can sleep for three years.
|
| 25 |
+
HTB_A_024 Fun Facts More people are allergic to cow's milk than any other food.
|
| 26 |
+
HTB_A_025 Fun Facts Nutmeg is extremely poisonous if injected intravenously.
|
| 27 |
+
HTB_A_026 Fun Facts A crocodile cannot stick its tongue out.
|
| 28 |
+
HTB_A_027 Fun Facts The shortest commercial flight in the world lasts 57 seconds.
|
| 29 |
+
HTB_A_028 Fun Facts Rabbits cannot vomit.
|
| 30 |
+
HTB_A_029 Fun Facts Humans share 50 percent of their DNA with bananas.
|
| 31 |
+
HTB_A_030 Fun Facts The world's oldest wooden wheel has been around for more than 5,000 years.
|
| 32 |
+
HTB_A_031 Fun Facts A sneeze travels about 100 miles per hour.
|
| 33 |
+
HTB_A_032 Fun Facts Cotton candy was invented by a dentist.
|
| 34 |
+
HTB_A_033 Fun Facts A shrimp's heart is in its head.
|
| 35 |
+
HTB_A_034 Fun Facts The human body contains enough carbon to make 9,000 pencils.
|
| 36 |
+
HTB_A_035 Fun Facts A flock of crows is called a murder.
|
| 37 |
+
HTB_A_036 Fun Facts Chewing gum burns about 11 calories per hour.
|
| 38 |
+
HTB_A_037 Fun Facts The average person spends six months of their lifetime waiting for red lights to turn green.
|
| 39 |
+
HTB_A_038 Fun Facts Honey never spoils.
|
| 40 |
+
HTB_A_039 Fun Facts Armadillo shells are bulletproof.
|
| 41 |
+
HTB_A_040 Fun Facts The longest English word without a vowel is rhythm.
|
| 42 |
+
HTB_A_041 Fun Facts A day on Venus is longer than a year on Venus.
|
| 43 |
+
HTB_A_042 Fun Facts Koalas sleep up to 22 hours a day.
|
| 44 |
+
HTB_A_043 Fun Facts Bananas grow pointing upwards.
|
| 45 |
+
HTB_A_044 Fun Facts A jiffy is an actual unit of time.
|
| 46 |
+
HTB_A_045 Fun Facts Butterflies taste with their feet.
|
| 47 |
+
HTB_A_046 Fun Facts Sloths can hold their breath longer than dolphins.
|
| 48 |
+
HTB_A_047 Fun Facts A group of flamingos is called a flamboyance.
|
| 49 |
+
HTB_A_048 Fun Facts Water expands when it freezes.
|
| 50 |
+
HTB_A_049 Fun Facts The Eiffel Tower can be 15 cm taller during the summer.
|
| 51 |
+
HTB_A_050 Fun Facts A completely blind chameleon still takes on the colors of its environment.
|
| 52 |
+
HTB_B_001 Daily Life My houseplant is judging my life choices.
|
| 53 |
+
HTB_B_002 Daily Life I tried a new recipe and now the kitchen is a disaster zone.
|
| 54 |
+
HTB_B_003 Daily Life I am currently trapped under a sleeping cat.
|
| 55 |
+
HTB_B_004 Daily Life I am engaged in a cold war with my thermostat.
|
| 56 |
+
HTB_B_005 Daily Life I have a drawer full of cables that belong to devices from 2008.
|
| 57 |
+
HTB_B_006 Daily Life I am convinced my washing machine eats socks.
|
| 58 |
+
HTB_B_007 Daily Life I just apologized to a mannequin.
|
| 59 |
+
HTB_B_008 Daily Life I put my keys in the fridge.
|
| 60 |
+
HTB_B_009 Daily Life I spend more time picking a movie than watching one.
|
| 61 |
+
HTB_B_010 Daily Life My printer hates me.
|
| 62 |
+
HTB_B_011 Daily Life I answered 'you too' when the waiter told me to enjoy my meal.
|
| 63 |
+
HTB_B_012 Daily Life I hit 'reply all' when I definitely shouldn't have.
|
| 64 |
+
HTB_B_013 Daily Life I buy books faster than I can read them.
|
| 65 |
+
HTB_B_014 Daily Life I pretend to text when I'm walking awkwardly.
|
| 66 |
+
HTB_B_015 Daily Life I sing in the shower like I'm performing at Madison Square Garden.
|
| 67 |
+
HTB_B_016 Daily Life I laughed at a joke I didn't understand to be polite.
|
| 68 |
+
HTB_B_017 Daily Life I open the fridge, lower my standards, and close it again.
|
| 69 |
+
HTB_B_018 Daily Life I talk to my pets in a voice I would never use with humans.
|
| 70 |
+
HTB_B_019 Daily Life I have a designated 'junk drawer' that contains my entire life.
|
| 71 |
+
HTB_B_020 Daily Life I spent twenty minutes looking for the phone I was holding.
|
| 72 |
+
HTB_B_021 Daily Life I hold my breath when walking past someone smoking.
|
| 73 |
+
HTB_B_022 Daily Life I have 500 emails in my inbox and respond to none of them.
|
| 74 |
+
HTB_B_023 Daily Life I bought vegetables with the best intentions.
|
| 75 |
+
HTB_B_024 Daily Life I have thirty tabs open and no idea where the music is coming from.
|
| 76 |
+
HTB_B_025 Daily Life I just tripped on flat ground.
|
| 77 |
+
HTB_B_026 Daily Life My alarm clock is just a suggestion.
|
| 78 |
+
HTB_B_027 Daily Life I turn down the radio when I'm looking for an address.
|
| 79 |
+
HTB_B_028 Daily Life I accidentally liked an old photo while stalking someone's profile.
|
| 80 |
+
HTB_B_029 Daily Life My dog thinks the delivery driver is an assassin.
|
| 81 |
+
HTB_B_030 Daily Life I have a designated chair for clothes that aren't quite clean but aren't dirty.
|
| 82 |
+
HTB_B_031 Daily Life I just remembered an embarrassing thing I did five years ago and now I can't sleep.
|
| 83 |
+
HTB_B_032 Daily Life I practice arguments in the shower.
|
| 84 |
+
HTB_B_033 Daily Life I rely on auto-correct more than my own brain.
|
| 85 |
+
HTB_B_034 Daily Life I start a diet every Monday morning and end it by Monday afternoon.
|
| 86 |
+
HTB_B_035 Daily Life I have a love-hate relationship with my snooze button.
|
| 87 |
+
HTB_B_036 Daily Life I checked my watch and immediately forgot the time.
|
| 88 |
+
HTB_B_037 Daily Life My car's check engine light has become part of the dashboard aesthetic.
|
| 89 |
+
HTB_B_038 Daily Life My WiFi only disconnects when I'm speaking on a video call.
|
| 90 |
+
HTB_B_039 Daily Life I carefully packed an umbrella and then left it on the train.
|
| 91 |
+
HTB_B_040 Daily Life I clicked 'remind me tomorrow' on a software update for the 400th day in a row.
|
| 92 |
+
HTB_B_041 Daily Life I am a hostage to my phone's battery percentage.
|
| 93 |
+
HTB_B_042 Daily Life I get irrationally angry when my headphones get snagged on a doorknob.
|
| 94 |
+
HTB_B_043 Daily Life I pushed a door that clearly said pull.
|
| 95 |
+
HTB_B_044 Daily Life I tried to assemble IKEA furniture without the manual.
|
| 96 |
+
HTB_B_045 Daily Life I have a playlist for a mood I've never experienced.
|
| 97 |
+
HTB_B_046 Daily Life I silently judge people's grammar on the internet.
|
| 98 |
+
HTB_B_047 Daily Life I waved back at someone who was waving at the person behind me.
|
| 99 |
+
HTB_B_048 Daily Life I always pick the shopping cart with the squeaky wheel.
|
| 100 |
+
HTB_B_049 Daily Life I walked into a room and forgot why I went in there.
|
| 101 |
+
HTB_B_050 Daily Life I bought a gym membership to use their showers.
|
| 102 |
+
HTB_C_001 Social Terms Generational amnesia.
|
| 103 |
+
HTB_C_002 Social Terms Artificial stupidity.
|
| 104 |
+
HTB_C_003 Social Terms Retroactive continuity.
|
| 105 |
+
HTB_C_004 Social Terms Digital hoarding.
|
| 106 |
+
HTB_C_005 Social Terms Imposter syndrome.
|
| 107 |
+
HTB_C_006 Social Terms Institutional memory loss.
|
| 108 |
+
HTB_C_007 Social Terms Confirmation bias.
|
| 109 |
+
HTB_C_008 Social Terms Performative authenticity.
|
| 110 |
+
HTB_C_009 Social Terms Weaponized incompetence.
|
| 111 |
+
HTB_C_010 Social Terms Strategic vulnerability.
|
| 112 |
+
HTB_C_011 Social Terms Emotional outsourcing.
|
| 113 |
+
HTB_C_012 Social Terms Virtual reality.
|
| 114 |
+
HTB_C_013 Social Terms Girlboss.
|
| 115 |
+
HTB_C_014 Social Terms Manufactured serendipity.
|
| 116 |
+
HTB_C_015 Social Terms Mandatory fun.
|
| 117 |
+
HTB_C_016 Social Terms Intellectual fast food.
|
| 118 |
+
HTB_C_017 Social Terms Synthetic nature.
|
| 119 |
+
HTB_C_018 Social Terms Vindictive politeness.
|
| 120 |
+
HTB_C_019 Social Terms Cognitive dissonance.
|
| 121 |
+
HTB_C_020 Social Terms Suburban camouflage.
|
| 122 |
+
HTB_C_021 Social Terms Recreational outrage.
|
| 123 |
+
HTB_C_022 Social Terms Tone policing.
|
| 124 |
+
HTB_C_023 Social Terms Great resignation.
|
| 125 |
+
HTB_C_024 Social Terms Competitive grieving.
|
| 126 |
+
HTB_C_025 Social Terms Gaslighting.
|
| 127 |
+
HTB_C_026 Social Terms Casual nihilism.
|
| 128 |
+
HTB_C_027 Social Terms Corporate spirituality.
|
| 129 |
+
HTB_C_028 Social Terms Aesthetic starvation.
|
| 130 |
+
HTB_C_029 Social Terms Micro-aggressions.
|
| 131 |
+
HTB_C_030 Social Terms Quiet quitting.
|
| 132 |
+
HTB_C_031 Social Terms Gatekeeping.
|
| 133 |
+
HTB_C_032 Social Terms Filter bubble.
|
| 134 |
+
HTB_C_033 Social Terms Surveillance capitalism.
|
| 135 |
+
HTB_C_034 Social Terms Tactical napping.
|
| 136 |
+
HTB_C_035 Social Terms Cancel culture.
|
| 137 |
+
HTB_C_036 Social Terms Bureaucratic nostalgia.
|
| 138 |
+
HTB_C_037 Social Terms Hustle culture.
|
| 139 |
+
HTB_C_038 Social Terms Burnout.
|
| 140 |
+
HTB_C_039 Social Terms Virtue signaling.
|
| 141 |
+
HTB_C_040 Social Terms Attention economy.
|
| 142 |
+
HTB_C_041 Social Terms Gig economy.
|
| 143 |
+
HTB_C_042 Social Terms Aggressive relaxation.
|
| 144 |
+
HTB_C_043 Social Terms Chronological snobbery.
|
| 145 |
+
HTB_C_044 Social Terms Existential dread.
|
| 146 |
+
HTB_C_045 Social Terms Toxic positivity.
|
| 147 |
+
HTB_C_046 Social Terms Artisanal depression.
|
| 148 |
+
HTB_C_047 Social Terms Optimistic pessimism.
|
| 149 |
+
HTB_C_048 Social Terms Mansplaining.
|
| 150 |
+
HTB_C_049 Social Terms Echo chamber.
|
| 151 |
+
HTB_C_050 Social Terms Macro-aggressions.
|
| 152 |
+
HTB_D_001 Object Voices My calendar shrieked: You have no free time!
|
| 153 |
+
HTB_D_002 Object Voices The sunglasses shaded: Too bright.
|
| 154 |
+
HTB_D_003 Object Voices The tape dispenser screeched: I'm stuck.
|
| 155 |
+
HTB_D_004 Object Voices The shower head cried: I'm dripping wet.
|
| 156 |
+
HTB_D_005 Object Voices The boots stomped: Walk all over me.
|
| 157 |
+
HTB_D_006 Object Voices The bookmark saved: I'll hold your place.
|
| 158 |
+
HTB_D_007 Object Voices The fridge said: I'm judging you.
|
| 159 |
+
HTB_D_008 Object Voices The printer jammed: Paper jam!
|
| 160 |
+
HTB_D_009 Object Voices The calendar flipped: Another day gone.
|
| 161 |
+
HTB_D_010 Object Voices The phone vibrated: Pay attention to me.
|
| 162 |
+
HTB_D_011 Object Voices The ruler measured: You fall short.
|
| 163 |
+
HTB_D_012 Object Voices The microwave beeped: I'm done with your cold pizza.
|
| 164 |
+
HTB_D_013 Object Voices The door squeaked: Close me gently.
|
| 165 |
+
HTB_D_014 Object Voices The keyboard clattered: Type faster.
|
| 166 |
+
HTB_D_015 Object Voices The battery died: I have no energy left.
|
| 167 |
+
HTB_D_016 Object Voices The mouse clicked: Select me.
|
| 168 |
+
HTB_D_017 Object Voices The book opened: Read me.
|
| 169 |
+
HTB_D_018 Object Voices The hat covered: Protect my head.
|
| 170 |
+
HTB_D_019 Object Voices The laundry basket groaned: I am overflowing.
|
| 171 |
+
HTB_D_020 Object Voices The alarm clock mocked: You thought you could sleep?
|
| 172 |
+
HTB_D_021 Object Voices The glasses focused: I see you clearly.
|
| 173 |
+
HTB_D_022 Object Voices The sink gurgled: I'm choking on your hair.
|
| 174 |
+
HTB_D_023 Object Voices The charger begged: Plug me in.
|
| 175 |
+
HTB_D_024 Object Voices The raincoat shielded: Let it rain.
|
| 176 |
+
HTB_D_025 Object Voices The light bulb buzzed: I'm having a bright idea.
|
| 177 |
+
HTB_D_026 Object Voices The oven yelled: It's getting hot in here!
|
| 178 |
+
HTB_D_027 Object Voices The WiFi router screamed: I need a vacation!
|
| 179 |
+
HTB_D_028 Object Voices The stapler snapped: I need more staples.
|
| 180 |
+
HTB_D_029 Object Voices My coffee whispered: You're still going to be tired.
|
| 181 |
+
HTB_D_030 Object Voices The floorboard creaked: Step carefully.
|
| 182 |
+
HTB_D_031 Object Voices The window rattled: Let me in.
|
| 183 |
+
HTB_D_032 Object Voices The eraser rubbed: Let me fix that.
|
| 184 |
+
HTB_D_033 Object Voices My bed pleaded: Don't leave me.
|
| 185 |
+
HTB_D_034 Object Voices The laptop overheated: Give me a break.
|
| 186 |
+
HTB_D_035 Object Voices The toilet demanded: Give me your waste.
|
| 187 |
+
HTB_D_036 Object Voices The calculator computed: Error.
|
| 188 |
+
HTB_D_037 Object Voices My bank account laughed: Nice try.
|
| 189 |
+
HTB_D_038 Object Voices The television judged: Are you still watching?
|
| 190 |
+
HTB_D_039 Object Voices The GPS commanded: Turn your life around.
|
| 191 |
+
HTB_D_040 Object Voices The umbrella opened: Keep me dry.
|
| 192 |
+
HTB_D_041 Object Voices The socks warmed: Keep my feet cozy.
|
| 193 |
+
HTB_D_042 Object Voices The trash can mumbled: Feed me.
|
| 194 |
+
HTB_D_043 Object Voices The pencil snapped: I'm broken.
|
| 195 |
+
HTB_D_044 Object Voices The pen leaked: I'm out of ink.
|
| 196 |
+
HTB_D_045 Object Voices The scissors snipped: Cut it out.
|
| 197 |
+
HTB_D_046 Object Voices The clock ticked: Time is running out.
|
| 198 |
+
HTB_D_047 Object Voices The scarf wrapped: Keep me warm.
|
| 199 |
+
HTB_D_048 Object Voices The mirror sighed: Is that what we're wearing today?
|
| 200 |
+
HTB_D_049 Object Voices The ceiling fan whirred: I'm dizzy.
|
| 201 |
+
HTB_D_050 Object Voices The shoes tied: Don't trip.
|
| 202 |
+
HTB_E_001 Fantasy Creatures A genie grants a wish for more wishes.
|
| 203 |
+
HTB_E_002 Fantasy Creatures A troll gets bullied by a bridge inspector.
|
| 204 |
+
HTB_E_003 Fantasy Creatures A sasquatch tries to buy shoes.
|
| 205 |
+
HTB_E_004 Fantasy Creatures A bunyip tries to swim in a kiddie pool.
|
| 206 |
+
HTB_E_005 Fantasy Creatures A griffin tries to order a chicken sandwich.
|
| 207 |
+
HTB_E_006 Fantasy Creatures A minotaur gets lost in a corn maze.
|
| 208 |
+
HTB_E_007 Fantasy Creatures A dragon tries to blow out birthday candles.
|
| 209 |
+
HTB_E_008 Fantasy Creatures A zombie goes on a vegan diet.
|
| 210 |
+
HTB_E_009 Fantasy Creatures A basilisk tries to have a staring contest.
|
| 211 |
+
HTB_E_010 Fantasy Creatures A cryptid tries to prove it exists.
|
| 212 |
+
HTB_E_011 Fantasy Creatures A harpy tries to work as a flight attendant.
|
| 213 |
+
HTB_E_012 Fantasy Creatures An elf tries to assemble IKEA furniture.
|
| 214 |
+
HTB_E_013 Fantasy Creatures A fairy gets stuck in a spider web.
|
| 215 |
+
HTB_E_014 Fantasy Creatures A wendigo tries to go on a diet.
|
| 216 |
+
HTB_E_015 Fantasy Creatures A mummy tries to unwrap a Christmas present.
|
| 217 |
+
HTB_E_016 Fantasy Creatures A gorgon tries to get a haircut.
|
| 218 |
+
HTB_E_017 Fantasy Creatures A snipe tries to go on a scavenger hunt.
|
| 219 |
+
HTB_E_018 Fantasy Creatures A goblin tries to open a bank account.
|
| 220 |
+
HTB_E_019 Fantasy Creatures A leprechaun loses his pot of gold in a casino.
|
| 221 |
+
HTB_E_020 Fantasy Creatures A chimera tries to decide what to eat.
|
| 222 |
+
HTB_E_021 Fantasy Creatures A superhero forgets their own secret identity.
|
| 223 |
+
HTB_E_022 Fantasy Creatures A manticore tries to brush its teeth.
|
| 224 |
+
HTB_E_023 Fantasy Creatures A hoop snake tries to bite its own tail.
|
| 225 |
+
HTB_E_024 Fantasy Creatures A cyclops tries to wear 3D glasses.
|
| 226 |
+
HTB_E_025 Fantasy Creatures An alien tries to understand a cricket match.
|
| 227 |
+
HTB_E_026 Fantasy Creatures A werewolf goes to a dog groomer.
|
| 228 |
+
HTB_E_027 Fantasy Creatures A grim reaper tries to hail a cab.
|
| 229 |
+
HTB_E_028 Fantasy Creatures A mothman tries to buy a lamp.
|
| 230 |
+
HTB_E_029 Fantasy Creatures A pegasus tries to fit in a parking space.
|
| 231 |
+
HTB_E_030 Fantasy Creatures A hydra tries to wear a turtleneck.
|
| 232 |
+
HTB_E_031 Fantasy Creatures A kraken tries to play the piano.
|
| 233 |
+
HTB_E_032 Fantasy Creatures A jersey devil tries to go to a hockey game.
|
| 234 |
+
HTB_E_033 Fantasy Creatures A skeleton tries to donate blood.
|
| 235 |
+
HTB_E_034 Fantasy Creatures A drop bear tries to climb a greased pole.
|
| 236 |
+
HTB_E_035 Fantasy Creatures A mermaid tries to ride a bicycle.
|
| 237 |
+
HTB_E_036 Fantasy Creatures A fearsome critter tries to act tough.
|
| 238 |
+
HTB_E_037 Fantasy Creatures A jackalope tries to put on headphones.
|
| 239 |
+
HTB_E_038 Fantasy Creatures A squonk tries to stop crying.
|
| 240 |
+
HTB_E_039 Fantasy Creatures A loch ness monster tries to take a selfie.
|
| 241 |
+
HTB_E_040 Fantasy Creatures A siren tries to sing karaoke.
|
| 242 |
+
HTB_E_041 Fantasy Creatures A time traveler gets stuck in a DMV line.
|
| 243 |
+
HTB_E_042 Fantasy Creatures A chupacabra tries to pet a goat.
|
| 244 |
+
HTB_E_043 Fantasy Creatures A centaur tries to buy pants.
|
| 245 |
+
HTB_E_044 Fantasy Creatures A ghost gets scared of a vacuum cleaner.
|
| 246 |
+
HTB_E_045 Fantasy Creatures A wizard forgets the WiFi password.
|
| 247 |
+
HTB_E_046 Fantasy Creatures A vampire is working in HR.
|
| 248 |
+
HTB_E_047 Fantasy Creatures A mythical creature tries to get a real job.
|
| 249 |
+
HTB_E_048 Fantasy Creatures A sphinx forgets the answer to her own riddle.
|
| 250 |
+
HTB_E_049 Fantasy Creatures A fur-bearing trout tries to go ice fishing.
|
| 251 |
+
HTB_E_050 Fantasy Creatures A yeti tries to buy sunscreen.
|
| 252 |
+
HTB_F_001 Twisted Definitions A game is a challenge you can accept.
|
| 253 |
+
HTB_F_002 Twisted Definitions A movie theater is a place where you pay to sit in the dark.
|
| 254 |
+
HTB_F_003 Twisted Definitions A scale is a device that tells you how much you weigh.
|
| 255 |
+
HTB_F_004 Twisted Definitions A poem is a feeling you can read.
|
| 256 |
+
HTB_F_005 Twisted Definitions A compass is a device that tells you which way is north.
|
| 257 |
+
HTB_F_006 Twisted Definitions A life is a journey you experience.
|
| 258 |
+
HTB_F_007 Twisted Definitions A barometer is a device that tells you when it's going to rain.
|
| 259 |
+
HTB_F_008 Twisted Definitions Meetings are the human equivalent of a loading screen.
|
| 260 |
+
HTB_F_009 Twisted Definitions My brain is a web browser with 3,000 tabs open.
|
| 261 |
+
HTB_F_010 Twisted Definitions A smartphone is a device that keeps you connected to people you don't want to talk to.
|
| 262 |
+
HTB_F_011 Twisted Definitions A painting is a window to the artist's soul.
|
| 263 |
+
HTB_F_012 Twisted Definitions Coffee is just a socially acceptable form of magic potion.
|
| 264 |
+
HTB_F_013 Twisted Definitions A bed is a time machine to breakfast.
|
| 265 |
+
HTB_F_014 Twisted Definitions A house is a box you live in to protect your stuff.
|
| 266 |
+
HTB_F_015 Twisted Definitions A hobby is an activity you can enjoy.
|
| 267 |
+
HTB_F_016 Twisted Definitions A car is a machine that turns money into noise.
|
| 268 |
+
HTB_F_017 Twisted Definitions A restaurant is a place where you pay someone else to cook for you.
|
| 269 |
+
HTB_F_018 Twisted Definitions A grocery store is a place where you go to buy food you won't eat.
|
| 270 |
+
HTB_F_019 Twisted Definitions A library is a quiet place where books go to socialize.
|
| 271 |
+
HTB_F_020 Twisted Definitions A book is a journey you can take without leaving home.
|
| 272 |
+
HTB_F_021 Twisted Definitions A mirror is a piece of glass that shows you what you look like.
|
| 273 |
+
HTB_F_022 Twisted Definitions Life is basically a subscription service you didn't read the terms for.
|
| 274 |
+
HTB_F_023 Twisted Definitions A pillow is a cloud for your head.
|
| 275 |
+
HTB_F_024 Twisted Definitions A photograph is a memory you can hold.
|
| 276 |
+
HTB_F_025 Twisted Definitions A school is a place where you go to forget things.
|
| 277 |
+
HTB_F_026 Twisted Definitions A song is a story you can listen to.
|
| 278 |
+
HTB_F_027 Twisted Definitions A play is a performance you can see.
|
| 279 |
+
HTB_F_028 Twisted Definitions A bank is a place that will lend you money if you can prove you don't need it.
|
| 280 |
+
HTB_F_029 Twisted Definitions A thermometer is a device that tells you how hot you feel.
|
| 281 |
+
HTB_F_030 Twisted Definitions A watch is a device that tells you how late you are.
|
| 282 |
+
HTB_F_031 Twisted Definitions A passion is a fire inside you.
|
| 283 |
+
HTB_F_032 Twisted Definitions A clock is a device that tells you how much time you have left.
|
| 284 |
+
HTB_F_033 Twisted Definitions A calling is a purpose you find.
|
| 285 |
+
HTB_F_034 Twisted Definitions A shopping mall is a place where you go to buy things you don't need.
|
| 286 |
+
HTB_F_035 Twisted Definitions A hospital is a place where you go to get sick.
|
| 287 |
+
HTB_F_036 Twisted Definitions A sculpture is a piece of art you can touch.
|
| 288 |
+
HTB_F_037 Twisted Definitions A blanket is a hug from the fabric.
|
| 289 |
+
HTB_F_038 Twisted Definitions A calendar is a device that tells you what you missed.
|
| 290 |
+
HTB_F_039 Twisted Definitions A career is a path you choose.
|
| 291 |
+
HTB_F_040 Twisted Definitions A map is a piece of paper that tells you where you are not.
|
| 292 |
+
HTB_F_041 Twisted Definitions A job is a way to make money.
|
| 293 |
+
HTB_F_042 Twisted Definitions A camera is a device that captures a moment in time.
|
| 294 |
+
HTB_F_043 Twisted Definitions A couch is a magnet for loose change.
|
| 295 |
+
HTB_F_044 Twisted Definitions A gym is a place where you pay to lift heavy objects you don't own.
|
| 296 |
+
HTB_F_045 Twisted Definitions A dream is a goal you strive for.
|
| 297 |
+
HTB_F_046 Twisted Definitions A television is a window to a world you can't reach.
|
| 298 |
+
HTB_F_047 Twisted Definitions A movie is a dream you can watch.
|
| 299 |
+
HTB_F_048 Twisted Definitions A computer is a machine that helps you make mistakes faster.
|
| 300 |
+
HTB_F_049 Twisted Definitions A sport is a competition you can watch.
|
| 301 |
+
HTB_F_050 Twisted Definitions Adulthood is a group project where no one knows what they're doing.
|
| 302 |
+
HTB_G_001 Direct Prompts Tell a joke about emojis.
|
| 303 |
+
HTB_G_002 Direct Prompts Tell a joke about printer ink.
|
| 304 |
+
HTB_G_003 Direct Prompts Write a funny joke about parallel parking.
|
| 305 |
+
HTB_G_004 Direct Prompts Write a joke about flat earthers.
|
| 306 |
+
HTB_G_005 Direct Prompts Tell me a joke about passwords.
|
| 307 |
+
HTB_G_006 Direct Prompts Write a joke about x-ray vision.
|
| 308 |
+
HTB_G_007 Direct Prompts Tell a joke about social media influencers.
|
| 309 |
+
HTB_G_008 Direct Prompts Write a joke about memes.
|
| 310 |
+
HTB_G_009 Direct Prompts Tell a joke about stepping on a Lego.
|
| 311 |
+
HTB_G_010 Direct Prompts Make a joke about freeze breath.
|
| 312 |
+
HTB_G_011 Direct Prompts Make a joke about forgetting someone's name.
|
| 313 |
+
HTB_G_012 Direct Prompts Make a joke about GIFs.
|
| 314 |
+
HTB_G_013 Direct Prompts Tell a joke about fake news.
|
| 315 |
+
HTB_G_014 Direct Prompts Make a joke about unread emails.
|
| 316 |
+
HTB_G_015 Direct Prompts Make a joke about Monday mornings.
|
| 317 |
+
HTB_G_016 Direct Prompts Tell a joke about aliens.
|
| 318 |
+
HTB_G_017 Direct Prompts Tell a joke about autocorrect.
|
| 319 |
+
HTB_G_018 Direct Prompts Write a joke about immortality.
|
| 320 |
+
HTB_G_019 Direct Prompts Write a joke about spell check.
|
| 321 |
+
HTB_G_020 Direct Prompts Write a joke about hitting reply all.
|
| 322 |
+
HTB_G_021 Direct Prompts Make a joke about telekinesis.
|
| 323 |
+
HTB_G_022 Direct Prompts Make a joke about assembling furniture.
|
| 324 |
+
HTB_G_023 Direct Prompts Tell a joke about viral videos.
|
| 325 |
+
HTB_G_024 Direct Prompts Write a joke about capitalization.
|
| 326 |
+
HTB_G_025 Direct Prompts Make a joke about stubbing your toe.
|
| 327 |
+
HTB_G_026 Direct Prompts Write a joke about self-checkout machines.
|
| 328 |
+
HTB_G_027 Direct Prompts Make a joke about trending topics.
|
| 329 |
+
HTB_G_028 Direct Prompts Make a joke about UFOs.
|
| 330 |
+
HTB_G_029 Direct Prompts Tell a joke about internet history.
|
| 331 |
+
HTB_G_030 Direct Prompts Make a joke about super strength.
|
| 332 |
+
HTB_G_031 Direct Prompts Write a joke about time travel.
|
| 333 |
+
HTB_G_032 Direct Prompts Tell a joke about grammar police.
|
| 334 |
+
HTB_G_033 Direct Prompts Make a joke about punctuation.
|
| 335 |
+
HTB_G_034 Direct Prompts Tell a joke about teleportation.
|
| 336 |
+
HTB_G_035 Direct Prompts Make a joke about mind reading.
|
| 337 |
+
HTB_G_036 Direct Prompts Make a joke about dictation.
|
| 338 |
+
HTB_G_037 Direct Prompts Write a joke about buying avocados.
|
| 339 |
+
HTB_G_038 Direct Prompts Write a joke about super speed.
|
| 340 |
+
HTB_G_039 Direct Prompts Make a joke about flying.
|
| 341 |
+
HTB_G_040 Direct Prompts Tell a joke about heat vision.
|
| 342 |
+
HTB_G_041 Direct Prompts Write a joke about clickbait.
|
| 343 |
+
HTB_G_042 Direct Prompts Make a joke about conspiracy theories.
|
| 344 |
+
HTB_G_043 Direct Prompts Tell a joke about voice-to-text.
|
| 345 |
+
HTB_G_044 Direct Prompts Write a joke about invisibility.
|
| 346 |
+
HTB_G_045 Direct Prompts Make a joke about autocorrect fails.
|
| 347 |
+
HTB_G_046 Direct Prompts Write a joke about predictive text.
|
| 348 |
+
HTB_G_047 Direct Prompts Write a joke about hashtags.
|
| 349 |
+
HTB_G_048 Direct Prompts Make a joke about sponsored posts.
|
| 350 |
+
HTB_G_049 Direct Prompts Tell a joke about shapeshifting.
|
| 351 |
+
HTB_G_050 Direct Prompts Write a joke about awkward silences.
|
| 352 |
+
HTB_H_001 News Headlines Researchers find link between sleep quality and memory retention
|
| 353 |
+
HTB_H_002 News Headlines New fitness trend sweeps the nation's gyms
|
| 354 |
+
HTB_H_003 News Headlines Biologists observe rare bird species returning to historic habitat
|
| 355 |
+
HTB_H_004 News Headlines Researchers develop new sustainable alternative to plastic
|
| 356 |
+
HTB_H_005 News Headlines Astronomers capture clearest image yet of distant galaxy
|
| 357 |
+
HTB_H_006 News Headlines Researchers develop new method for extending shelf life of produce
|
| 358 |
+
HTB_H_007 News Headlines Local bakery goes viral after introducing giant croissant
|
| 359 |
+
HTB_H_008 News Headlines Major airline introduces new boarding process to save time
|
| 360 |
+
HTB_H_009 News Headlines Scientists successfully grow plants in lunar soil
|
| 361 |
+
HTB_H_010 News Headlines City council approves funding for new public park project
|
| 362 |
+
HTB_H_011 News Headlines New study challenges previous assumptions about dinosaur diets
|
| 363 |
+
HTB_H_012 News Headlines Engineers design robot capable of navigating complex terrain
|
| 364 |
+
HTB_H_013 News Headlines Classic 1980s video game makes unexpected comeback
|
| 365 |
+
HTB_H_014 News Headlines New study shows houseplants can improve office productivity
|
| 366 |
+
HTB_H_015 News Headlines Local community rallies to save historic neighborhood theater
|
| 367 |
+
HTB_H_016 News Headlines Tech company announces major update to its flagship operating system
|
| 368 |
+
HTB_H_017 News Headlines Tech giant unveils ambitious plan for carbon neutrality
|
| 369 |
+
HTB_H_018 News Headlines Automaker recalls thousands of vehicles over software glitch
|
| 370 |
+
HTB_H_019 News Headlines Popular coffee chain introduces new seasonal beverage
|
| 371 |
+
HTB_H_020 News Headlines Scientists discover new species of deep-sea jellyfish
|
| 372 |
+
HTB_H_021 News Headlines Automaker unveils concept car featuring radical new design
|
| 373 |
+
HTB_H_022 News Headlines Popular social media app rolls out new privacy features
|
| 374 |
+
HTB_H_023 News Headlines Renowned artist opens new exhibition focusing on climate change
|
| 375 |
+
HTB_H_024 News Headlines Major fashion brand pledges to use only sustainable materials
|
| 376 |
+
HTB_H_025 News Headlines Major sporting event expected to draw thousands of tourists
|
| 377 |
+
HTB_H_026 News Headlines Major music festival announces highly anticipated lineup
|
| 378 |
+
HTB_H_027 News Headlines Tech startup secures major funding for artificial intelligence project
|
| 379 |
+
HTB_H_028 News Headlines Major retailer announces plans to open 50 new locations
|
| 380 |
+
HTB_H_029 News Headlines Historic lighthouse undergoes massive restoration effort
|
| 381 |
+
HTB_H_030 News Headlines New study suggests regular exercise can boost creativity
|
| 382 |
+
HTB_H_031 News Headlines Popular podcast reaches significant milestone in listener numbers
|
| 383 |
+
HTB_H_032 News Headlines City's new public transit system sees massive ridership on opening day
|
| 384 |
+
HTB_H_033 News Headlines Global shipping delays continue to impact supply chains
|
| 385 |
+
HTB_H_034 News Headlines City council debates proposed changes to zoning laws
|
| 386 |
+
HTB_H_035 News Headlines Central bank holds interest rates steady for third consecutive month
|
| 387 |
+
HTB_H_036 News Headlines Local animal shelter reports record number of adoptions
|
| 388 |
+
HTB_H_037 News Headlines Scientists discover new type of crystal with unique properties
|
| 389 |
+
HTB_H_038 News Headlines Global coffee prices surge amid unexpected weather patterns
|
| 390 |
+
HTB_H_039 News Headlines City implements new recycling program to reduce waste
|
| 391 |
+
HTB_H_040 News Headlines Researchers discover potential new treatment for hair loss
|
| 392 |
+
HTB_H_041 News Headlines Electric vehicle sales reach record high this quarter
|
| 393 |
+
HTB_H_042 News Headlines Engineers develop innovative solution for purifying seawater
|
| 394 |
+
HTB_H_043 News Headlines Popular streaming service announces price hike for next month
|
| 395 |
+
HTB_H_044 News Headlines Archaeologists uncover ancient Roman bakery in Pompeii
|
| 396 |
+
HTB_H_045 News Headlines New solar panel technology promises increased efficiency
|
| 397 |
+
HTB_H_046 News Headlines Chef's innovative fusion restaurant wins prestigious culinary award
|
| 398 |
+
HTB_H_047 News Headlines Meteorologists predict unusually mild winter for the region
|
| 399 |
+
HTB_H_048 News Headlines Apple announces changes to upcoming iPhone software
|
| 400 |
+
HTB_H_049 News Headlines Local marathon sees record number of participants
|
| 401 |
+
HTB_H_050 News Headlines Scientists find evidence of ancient riverbed on Mars
|