
Generating Memes
- 43 installs
- 30 repo stars
- Updated February 8, 2026
- geekjourneyx/meme-generator-skill
Create memes with the meme CLI across 298+ templates, generating, previewing, searching, and listing templates such as petpet, slap, hug, and rub.
About
Generates memes using a CLI tool backed by 298+ templates, with commands to preview, search, and list available templates. A developer uses it to make memes or work with specific named meme templates.
- 298+ meme templates via the meme CLI
- Supports generate, preview, search, and list operations
Generating Memes by the numbers
- 43 all-time installs (skills.sh)
- Ranked #912 of 1,335 Generative Media skills by installs in the Skillselion catalog
- Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/geekjourneyx/meme-generator-skill --skill generating-memesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 43 |
|---|---|
| repo stars | ★ 30 |
| Last updated | February 8, 2026 |
| Repository | geekjourneyx/meme-generator-skill ↗ |
What it does
Create memes with the meme CLI across 298+ templates, generating, previewing, searching, and listing templates such as petpet, slap, hug, and rub.
Files
Generating Memes
Creates memes using the meme CLI tool with 298+ templates.
Quick Start
List all templates:
meme listSearch templates by keyword:
meme search <keyword>Generate a meme:
meme generate <template> --images <paths> --texts <texts>Popular Templates
Most commonly used templates:
| Template | Description | Type |
|---|---|---|
petpet | Petting animation (摸/摸摸) | Image |
slap | Slapping animation (一巴掌) | Image |
hug | Hugging animation (抱/抱抱) | Image |
rub | Nuzzling animation (贴/贴贴) | Image |
pat | Patting animation (拍) | Image |
kiss | Kissing animation (亲/亲亲) | Image |
pinch | Pinching face (捏/捏脸) | Image |
5000choyen | Big/small text contrast | Text |
always | "Always" format meme | Text |
shock | Shocked reaction (震惊) | Text |
clown | Clown meme (小丑) | Image |
stare_at_you | Staring at you (盯着你) | Image |
loading | Loading animation | Text |
good_news | Good news header (喜报) | Text |
bad_news | Bad news header (悲报) | Text |
applaud | Applause (鼓掌) | Image |
praise | Praise (表扬) | Text |
speechless | Speechless (无语) | Image |
run_away | Run away (快逃) | Image |
suck | Suck/Sip animation (吸/嗦) | Image |
See full template list
Usage Patterns
Image-based Memes
Templates requiring one or more images:
# Single image
meme generate petpet --images /path/to/photo.jpg
# Save to file
meme generate petpet --images /path/to/photo.jpg > output.gifText-based Memes
Templates using only text:
# 5000兆 (big/small contrast)
meme generate 5000choyen --texts "IMPORTANT" "ignore this"
# Always meme
meme generate always --texts "the answer is 42"Mixed (Images + Text)
Recommended Workflow
1. Search for a template: meme search <keyword> 2. Preview the template: meme preview <template> 3. Check requirements: meme info <template> 4. Generate the meme: meme generate <template> [options]
Example: Create a Petpet Meme
# 1. Verify template exists
meme search pet
# 2. See what it needs
meme info petpet
# Output: needs 1 image, 0 text
# 3. Generate
meme generate petpet --images friend.jpg > petpet.gifCommands Reference
| Command | Description |
|---|---|
meme list | List all 298 templates |
meme search <keyword> | Search templates by keyword |
meme info <template> | Show template requirements (images, texts, params) |
meme preview <template> | Generate template preview |
meme generate <template> | Create meme |
meme download | Download required resources |
See more examples
Troubleshooting
"meme: command not found"
The meme CLI is not installed. Install it from GitHub:
# Download the binary
curl -L https://github.com/MemeCrafters/meme-generator-rs/releases/latest/download/meme-x86_64-unknown-linux-gnu -o meme
# Make executable and install
chmod +x meme
sudo mv meme /usr/local/bin/
# Download required resources
meme downloadGitHub: https://github.com/MemeCrafters/meme-generator-rs
Alternative: Build from source with Rust:
cargo install meme-generator
meme downloadTemplate Not Found
If generation fails with "unknown template" error:
# Verify template name
meme list | grep <template>
# Search for similar templates
meme search <keyword>
# Check template info
meme info <template>Missing Resources
If images or templates are missing:
meme downloadThis downloads all required template assets.
Network Issues (Download Failed)
If meme download fails with connection timeout:
# Error example:
# WARN Failed to download: Connection timed out (os error 110)
# The CLI cannot reach cdn.jsdelivr.net
# Solution: Download resources manually from GitHub releases
# Visit: https://github.com/MemeCrafters/meme-generator-rs/releasesNote: Some templates may work without downloaded resources if they have built-in assets.
Tips
- Use
meme info <template>before generating to understand requirements - Redirect output to save:
> output.gif - Many templates support both images and text
- Some templates have optional parameters (like
--circlefor petpet) - Use
meme searchfor discovery when unsure of template name
Meme Generation Examples
Practical examples for creating memes with various templates.
Table of Contents
---
Basic Examples
Petpet Meme (Most Popular)
The petpet template creates a petting animation.
# Using a local image
meme generate petpet --images avatar.jpg
# Save to file
meme generate petpet --images avatar.jpg > petpet.gif
# With circular crop
meme generate petpet --images avatar.jpg --circle > petpet_circle.gifRequirements: 1 image, 0 text Optional: --circle flag for circular image
---
Slap Meme
Creates a slapping animation.
meme generate slap --images target.jpg > slap.gifRequirements: 1 image, 0 text
---
Hug Meme
Creates a hugging animation.
meme generate hug --images friend.jpg > hug.gifRequirements: 1 image, 0 text
---
Rub/Nuzzle Meme
Creates a nuzzling animation.
meme generate rub --images person.jpg > rub.gifRequirements: 1 image, 0 text
---
Text-Only Memes
5000兆 (Big/Small Contrast)
Creates a big/small text contrast meme.
meme generate 5000choyen --texts "IMPORTANT" "ignore this"Requirements: 0 images, 2 text (big, small)
Example output:
IMPORTANT
ignore this---
Always Meme
Creates an "always" format meme.
meme generate always --texts "the answer is 42"Requirements: 0 images, 1 text
---
YouTube Style
Creates a YouTube-style thumbnail.
meme generate youtube --texts "Video Title" "Channel Name"Requirements: 0 images, 2 text
---
Good News Header
Creates a "good news" header.
meme generate good_news --texts "Project completed!"Requirements: 0 images, 1 text
---
Bad News Header
Creates a "bad news" header.
meme generate bad_news --emails "Deployment failed"Requirements: 0 images, 1 text
---
Shock Meme
Creates a shocked reaction.
meme generate shock --texts "What?!"Requirements: 0 images, 1 text
---
Image-Based Memes
Petpet (Multiple Variants)
# Standard petpet
meme generate petpet --images photo.jpg
# Circular crop
meme generate petpet --images photo.jpg --circle
# With custom output name
meme generate petpet --images photo.jpg > my_petpet.gif---
Slap
meme generate slap --images target.jpg---
Pat
meme generate pat --images head.jpg---
Pinch
meme generate pinch --images face.jpg---
Kiss
meme generate kiss --images partner.jpg---
Hug
meme generate hug --images friend.jpg---
Stare
meme generate stare_at_you --images person.jpg---
Advanced Usage
Batch Processing
Generate multiple memes at once:
# Create petpet variants for all images
for img in *.jpg; do
meme generate petpet --images "$img" > "petpet_$(basename $img .jpg).gif"
done
# Create slap variants
for img in faces/*.jpg; do
meme generate slap --images "$img" > "slap_$(basename $img .jpg).gif"
done---
Custom Parameters (Abstinence Example)
Some templates have optional parameters:
# Check available parameters
meme info abstinence
# Generate with time parameter
meme generate abstinence --images user.jpg --time "30d"---
Multiple Images
Some templates accept multiple images:
# Check template requirements first
meme info <template>
# Generate with multiple images (if supported)
meme generate <template> --images img1.jpg img2.jpg img3.jpg---
Text + Image Templates
Templates that accept both images and text:
# Check requirements
meme info high_eq
# Generate with both
meme generate high_eq --images reaction.jpg --texts "Low EQ" "High EQ description"---
Common Workflows
Workflow 1: Discovery -> Preview -> Generate
When you don't know which template to use:
# 1. Search for templates by keyword
meme search "pet"
# 2. Preview the template to see what it looks like
meme preview petpet
# 3. Check requirements
meme info petpet
# 4. Generate the meme
meme generate petpet --images photo.jpg > output.gif---
Workflow 2: List -> Filter -> Generate
When browsing all templates:
# 1. List all templates and filter
meme list | grep -i "hug"
# 2. Get detailed info
meme info hug
# 3. Generate
meme generate hug --images friend.jpg > hug.gif---
Workflow 3: Quick Generate (Known Template)
When you already know the template:
# Generate directly
meme generate petpet --images photo.jpg > petpet.gif---
Workflow 4: Text Meme Generation
For text-based memes:
# 1. Find a text template
meme search "text"
# 2. Check if it needs images
meme info 5000choyen
# 3. Generate with text
meme generate 5000choyen --texts "BIG" "small"---
Template-Specific Examples
Anime/Game Characters
# Anya likes
meme generate anya_suki --images photo.jpg
# Genshin eating
meme generate genshin_eat --images character.jpg
# Lu Xun quote
meme generate luxun_say --texts "鲁迅说过"---
Reactions/Emotions
# Applause
meme generate applaud --images clapping.jpg
# Shocked
meme generate shock --texts "震惊!"
# Speechless
meme generate speechless --images expression.jpg
# Clown
meme generate clown --images face.jpg---
Visual Effects
# Pixelate
meme generate pixelate --images photo.jpg
# 3D Rotate
meme generate rotate_3d --images object.jpg
# Symmetric
meme generate symmetric --images face.jpg
# Kaleidoscope
meme generate kaleidoscope --images pattern.jpg---
Tips and Tricks
Saving Output
Always redirect output to save the file:
# Good - saves to file
meme generate petpet --images photo.jpg > output.gif
# Bad - outputs to terminal (binary garbage)
meme generate petpet --images photo.jpg---
Checking Requirements First
Always check template info before generating:
# See what the template needs
meme info <template>
# This tells you:
# - How many images are required
# - How many text arguments are needed
# - What optional parameters are available---
Using Preview
Preview templates before committing:
# Generate a preview to see the template structure
meme preview petpet---
Downloading Resources
If templates are missing resources:
# Download all required assets
meme download---
Troubleshooting Examples
Template Not Found
# Verify template exists
meme list | grep petpet
# Search for similar templates
meme search "pet"
# Case matters - use lowercase
meme generate PetPet --images photo.jpg # Wrong
meme generate petpet --images photo.jpg # Correct---
Missing Images
# Verify image exists
ls -la photo.jpg
# Use absolute path if needed
meme generate petpet --images /full/path/to/photo.jpg---
Network Issues (Download Failed)
If meme download fails:
# Typical error:
# WARN Failed to download: Connection timed out (os error 110)
# The CLI cannot reach cdn.jsdelivr.net
# Solution: Try generating directly - some templates work offline
meme generate petpet --images photo.jpg > test.gif
# Alternative: Download resources manually from GitHub releases
# https://github.com/MemeCrafters/meme-generator-rs/releasesNote: Some templates have built-in assets and work without downloading resources.
---
Output Format
Generated memes are typically in GIF format for animations and PNG for static images.
Meme Templates Reference
Complete list of 298 meme templates organized by category.
Contents
Search Tips
Use grep to find templates:
grep -i "pet" references/templates.md
grep -i "hug" references/templates.mdOr use the CLI search:
meme search <keyword>---
Action/Animation
Physical actions and animations.
Hand/Touch Actions
| Template | Description | Keywords |
|---|---|---|
petpet | Petting animation | 摸, 摸摸, 摸头, rua |
pat | Patting animation | 拍 |
slap | Slapping animation | 一巴掌 |
rub | Rubbing/nuzzling | 贴, 贴贴, 蹭, 蹭蹭 |
pinch | Pinching face | 捏, 捏脸 |
flick | Flicking forehead | 弹, 脑瓜崩 |
thump | Thumping/hitting | 捶 |
thump_wildly | Wild thumping | 捶爆, 爆捶 |
beat_head | Hitting head | 拍头 |
beat_up | Beating up | 揍 |
pound | Pounding | 捣 |
Holding/Lifting
| Template | Description | Keywords |
|---|---|---|
hug | Hugging animation | 抱, 抱抱 |
hold_tight | Holding tight | 抱紧 |
hug_leg | Hugging leg | 抱大腿 |
raise_sign | Holding sign | 举牌 |
raise_image | Raising image | 举 |
pepe_raise | Pepe raising | 佩佩举 |
haruhi_raise | Haruhi raising | 凉宫春日举 |
tankunku_raisesign | Tunkuku holding sign | 唐可可举牌 |
Throwing/ Dropping
| Template | Description | Keywords |
|---|---|---|
throw | Throwing | 丢, 扔 |
throw_gif | Throwing (gif) | 抛, 掷 |
chino_throw | Chino throwing | 智乃扔, 智乃抛 |
arona_throw | Arona throwing | 阿罗娜扔 |
gorilla_throw | Gorilla throwing | 猩猩扔 |
capoo_rip | Capoo ripping | 咖波撕 |
Movement
| Template | Description | Keywords |
|---|---|---|
run | Running | 快跑 |
run_away | Running away | 快逃 |
jump | Jumping | 跳 |
backflip | Backflip | 后空翻 |
crawl | Crawling | 爬 |
roll | Rolling | 滚 |
Other Actions
| Template | Description | Keywords |
|---|---|---|
kiss | Kissing | 亲, 亲亲 |
lick_candy | Licking candy | 舔糖, 舔棒棒糖 |
suck | Sucking | 吸, 嗦 |
bite | Biting | 啃, 胡桃啃, 纳西妲啃 |
kick_ball | Kicking ball | 踢球 |
play_baseball | Playing baseball | 打棒球 |
play_basketball | Playing basketball | 打篮球 |
stickman_dancing | Stickman dancing | 跳舞, 火柴人跳舞 |
subject3 | Subject 3 dance | 科目三 |
wave | Waving | 波纹 |
---
Character/Anime
Anime, game, and character-based templates.
Anime Characters
| Template | Description | Keywords |
|---|---|---|
anya_suki | Anya likes | 阿尼亚喜欢 |
luotianyi_say | Luo Tianyi says | 洛天依说, 天依说 |
luotianyi_need | Luo Tianyi wants | 洛天依要, 天依要 |
mahiro_readbook | Mahiro reading | 真寻看书 |
blamed_mahiro | Mahiro blamed | 真寻挨骂 |
bocchi_draft | Bocchi draft | 波奇手稿 |
nijika_holdsign | Nijika holding sign | 虹夏举牌 |
karyl_point | Karyl pointing | 凯露指 |
shiroko_pero | Shiroko licking | 白子舔 |
kokona_seal | Kokona seal | 心奈印章 |
ayachi_holdsign | Ayachi holding sign | 宁宁举牌 |
atri_pillow | Atri pillow | 亚托莉枕头 |
frieren_take | Frieren taking | 芙莉莲拿 |
konata_watch | Konata watching | 泉此方看 |
Game Characters (Genshin)
| Template | Description | Keywords |
|---|---|---|
genshin_eat | Genshin eating | 原神吃 |
genshin_start | Genshin startup | 原神启动 |
klee_eat | Klee eating | 可莉吃 |
nahida_bite | Nahida biting | 纳西妲啃, 草神啃 |
hutao_bite | Hu Tao biting | 胡桃啃 |
walnut_pad | Walnut pad | 胡桃平板 |
walnut_zoom | Walnut zoom | 胡桃放大 |
Game Characters (Other)
| Template | Description | Keywords |
|---|---|---|
bronya_holdsign | Bronya holding sign | 布洛妮娅举牌, 大鸭鸭举牌 |
firefly_holdsign | Firefly holding sign | 流萤举牌 |
nekoha_holdsign | Nekoha holding sign | 猫羽雫举牌, 猫猫举牌 |
ba_say | BA saying | ba说, 碧蓝档案, 蔚蓝档案 |
batitle | Blue Archive title | 蔚蓝档案标题 |
plana_eat | Plana eating | 普拉娜吃, 普拉娜舔 |
tease | Teasing | 拿捏, 戏弄 |
jinhsi | Jinhsi | 汐汐, 今汐 |
jiamianqishi | Kamen Rider | 假面骑士 |
Capoo Series
| Template | Description | Keywords |
|---|---|---|
capoo_draw | Capoo drawing | 咖波画 |
capoo_point | Capoo pointing | 咖波指 |
capoo_rip | Capoo ripping | 咖波撕 |
capoo_rub | Capoo rubbing | 咖波蹭, 咖波贴 |
capoo_say | Capoo saying | 咖波说 |
capoo_stew | Capoo stewing | 咖波炖 |
capoo_strike | Capoo striking | 咖波撞, 咖波头槌 |
---
Emotion/Reaction
Emotional reactions and expressions.
Positive
| Template | Description | Keywords |
|---|---|---|
applaud | Applause | 鼓掌 |
praise | Praise | 表扬 |
perfect | Perfect | 完美 |
good_news | Good news | 喜报 |
love_you | Love you | 永远爱你 |
always_like | Always like | 我永远喜欢 |
little_angel | Little angel | 小天使 |
sekaiichi_kawaii | World's cutest | 世界第一可爱 |
wakeup | Getting better | 好起来了 |
safe_sense | Safety sense | 安全感 |
Negative
| Template | Description | Keywords |
|---|---|---|
slap | Slap | 一巴掌 |
speechless | Speechless | 无语 |
bad_news | Bad news | 悲报 |
clown | Clown | 小丑 |
clown_mask | Clown mask | 小丑面具 |
confuse | Confused | 迷惑 |
angry | Angry | 愤怒 |
shutup | Shut up | 别说了 |
sad | Sad | 悲伤 |
cry | Crying | 哭泣 |
despair | Despair | 绝望 |
Shock/Surprise
| Template | Description | Keywords |
|---|---|---|
shock | Shocked | 震惊 |
surprise | Surprised | 惊讶 |
stare_at_you | Staring at you | 盯着你 |
jerry_stare | Jerry staring | 杰瑞盯 |
flush | Flush/red | 红温 |
flash_blind | Flash blind | 闪瞎 |
ascension | Ascension | 升天 |
Neutral/Subtle
| Template | Description | Keywords |
|---|---|---|
stare | Staring | 盯 |
look_flat | Look down on | 看扁 |
think_what | Thinking | 想什么 |
no_response | No response | 无响应 |
silence | Silence | 沉默 |
murmur | Murmur | 低语 |
trance | Trance | 恍惚 |
---
Game/Media
Game, anime, and media references.
Games
| Template | Description | Keywords |
|---|---|---|
genshin_start | Genshin startup | 原神启动 |
genshin_eat | Genshin eating | 原神吃 |
pjsk | Project Sekai | pjsk, 世界计划 |
osu | osu! game | osu |
mihoyo | miHoYo | 米哈游 |
maimai_awaken | MaiMai awaken | 旅行伙伴觉醒 |
maimai_join | MaiMai join | 旅行伙伴加入 |
Social Media/Platforms
| Template | Description | Keywords |
|---|---|---|
youtube | YouTube style | yt, youtube |
pornhub | Pornhub style | ph, pornhub |
google | Google style | |
google_captcha | Google captcha | 谷歌验证码 |
douyin | Douyin style | douyin |
steam_message | Steam message | steam消息 |
nokia | Nokia style | 诺基亚, 有内鬼 |
Movies/TV
| Template | Description | Keywords |
|---|---|---|
fight_with_sunuo | Fighting Sukuna | 我打宿傩 |
oshi_no_ko | Oshi no Ko | 我推的网友 |
ace_attorney_dialog | Ace Attorney | 逆转裁判气泡 |
---
Text/Quote
Text-based memes and quotes.
Text Styles
| Template | Description | Keywords |
|---|---|---|
5000choyen | 5000 yen (big/small) | 5000兆 |
always | Always format | 一直 |
youtube | YouTube style | yt |
pornhub | Pornhub style | ph |
google | Google style | |
douyin | Douyin style | douyin |
Quote/Speech
| Template | Description | Keywords |
|---|---|---|
luxun_say | Lu Xun says | 鲁迅说, 鲁迅说过 |
luoyonghao_say | Luo Yonghao says | 罗永浩说 |
maikease | MacArthur says | 麦克阿瑟说 |
my_friend_say | My friend says | 我朋友说 |
doraemon_say | Doraemon says | 哆啦A梦说 |
ba_say | BA says | ba说 |
capoo_say | Capoo says | 咖波说 |
ask | Asking | 问问 |
Statements
| Template | Description | Keywords |
|---|---|---|
my_opinion | My opinion | 我的意见如下, 我的意见是 |
what_i_want_to_do | What I want | 我想上的 |
what_he_wants | What he wants | 最想要的东西 |
this_chicken | This is chicken | 这是鸡, 🐔 |
need | Need | 需要, 你可能需要 |
---
Utility/Tools
Utility and tool-based templates.
Documents/Certificates
| Template | Description | Keywords |
|---|---|---|
certificate | Certificate | 奖状, 证书 |
note_for_leave | Leave note | 请假条 |
marriage | Marriage | 结婚申请, 结婚登记 |
divorce | Divorce | 离婚协议, 离婚申请 |
coupon | Coupon | 兑换券 |
slogan | Slogan | 口号 |
Status/Loading
| Template | Description | Keywords |
|---|---|---|
loading | Loading | 加载中 |
printing | Printing | 打印 |
vibrate | Vibrate | 震动 |
Visual Effects
| Template | Description | Keywords |
|---|---|---|
pixelate | Pixelate | 像素化 |
rotate_3d | 3D rotate | 三维旋转 |
sphere_rotate | Sphere rotate | 球面旋转 |
swirl_turn | Swirl turn | 回旋转, 旋风转 |
windmill_turn | Windmill turn | 风车转 |
symmetric | Symmetric | 对称 |
kaleidoscope | Kaleidoscope | 万花筒, 万花镜 |
fogging | Fogging | 回南天, 水雾 |
daynight | Day/night | 白天黑夜, 白天晚上 |
Other Utilities
| Template | Description | Keywords |
|---|---|---|
charpic | ASCII art | 字符画 |
name_generator | Name generator | 亚文化取名机, 亚名 |
operator_generator | Operator generator | 合成大干员 |
p5letter | P5 letter | p5预告信 |
---
Full Alphabetical List
For quick reference, all templates alphabetically:
5000choyen, abstinence, ace_attorney_dialog, acg_entrance, add_chaos,
addiction, alike, alipay, always, always_like, anti_kidnap, anya_suki,
applaud, arona_throw, ascension, ask, atri_pillow, ayachi_holdsign,
ba_say, back_to_work, backflip, bad_news, batitle, beat_head, beat_up,
blamed_mahiro, blood_pressure, bocchi_draft, bronya_holdsign, bubble_tea,
call_110, capoo_draw, capoo_point, capoo_rip, capoo_rub, capoo_say,
capoo_stew, capoo_strike, captain, caused_by_this, certificate, chanshenzi,
charpic, chase_train, china_flag, chino_throw, clauvio_twist, clown,
clown_mask, confuse, coupon, cover_face, crawl, cyan, daynight, decent_kiss,
dianzhongdian, dinosaur, distracted, divorce, dog_dislike, dog_of_vtb,
dont_go_near, dont_press, dont_touch, doraemon_say, douyin, eat,
emperor_dragon, erised_mirror, fade_away, fanatic, father_work, fencing,
fight_with_sunuo, fill_head, find_chips, firefly_holdsign, flash_blind,
flick, flush, fogging, follow, forbid, frieren_take, funny_mirror, garbage,
genshin_eat, genshin_start, good_news, google, google_captcha, gorilla_throw,
grab, grab_both_hands, guichu, gun, hammer, haruhi_raise, head_butt,
high_eq, hit_screen, hold_grudge, hold_tight, hug, hug_leg, hutao_bite,
imprison, incivilization, intel_inside, interview, jerry_stare, jiamianqishi,
jiji_king, jinhsi, jiubingfufa, jiujiu, jump, kaleidoscope, karyl_point,
keep_away, keep_your_money, kick_ball, kirby_hammer, kiss, klee_eat, knock,
kokona_seal, konata_watch, learn, left_right_jump, let_me_in, lick_candy,
lim_x_0, listen_music, little_angel, loading, look_flat, look_this_icon,
loop, lost_dog, love_you, luotianyi_need, luotianyi_say, luoyonghao_say,
luxun_say, mahiro_readbook, maikease, maimai_awaken, maimai_join, make_friend,
marriage, meteor, mihoyo, mourning, murmur, my_friend_say, my_opinion, my_wife,
nahida_bite, name_generator, need, nekoha_holdsign, nihaosaoa, nijika_holdsign,
no_response, nokia, note_for_leave, operator_generator, oshi_no_ko, osu, out,
overtime, p5letter, paint, painter, panda_dragon_figure, pass_the_buck, pat,
pepe_raise, perfect, petpet, pinch, pixelate, pjsk, plana_eat, play_baseball,
play_basketball, play_game, play_together, police, policeman, pornhub, potato,
pound, praise, printing, prpr, psyduck, punch, pyramid, qiegewala, raise_image,
raise_sign, read_book, remote_control, repeat, rip, rip_angrily, rip_clothes,
rise_dead, roll, rotate_3d, rub, run, run_away, safe_sense, saimin_app,
scratch_head, scratchcard, scroll, seal, sekaiichi_kawaii, shake_head,
shiroko_pero, shishilani, shock, shuifandui, shutup, sit_still, slap, slogan,
smash, sold_out, speechless, sphere_rotate, spider, stare_at_you, steam_message,
step_on, stew, stickman_dancing, subject3, suck, support, swirl_turn, symmetric,
tankunku_raisesign, taunt, teach, tease, telescope, thermometer_gun, think_what,
this_chicken, throw, throw_gif, thump, thump_wildly, tightly, time_to_go, together,
tom_tease, tomb_yeah, trance, trolley, turn, twist, universal, upside_down,
vibrate, wakeup, wallpaper, walnut_pad, walnut_zoom, wangjingze, washer, wave,
wechat_pay, weisuoyuwei, what_he_wants, what_i_want_to_do, why_at_me,
why_have_hands, windmill_turn, wish_fail, wooden_fish, worship, wujing, wunian,
wuyage, yalidaye, yeshu, you_dont_get, you_should_call, your_new_years_eve,
youtube, zengxiaoxian