Spaces:
Sleeping
Sleeping
Add application file
Browse files- README.md +4 -4
- app.py +35 -0
- data +25 -0
- fantastic.yaml +3 -0
- fashion.yaml +1453 -0
- index.html +36 -0
- test.yaml +1173 -0
README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.24.1
|
| 8 |
app_file: app.py
|
|
|
|
| 1 |
---
|
| 2 |
+
title: StableDiffution
|
| 3 |
+
emoji: π
|
| 4 |
+
colorFrom: gray
|
| 5 |
+
colorTo: yellow
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.24.1
|
| 8 |
app_file: app.py
|
app.py
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import random
|
| 2 |
+
import yaml
|
| 3 |
+
import gradio as gr
|
| 4 |
+
|
| 5 |
+
def generate_text():
|
| 6 |
+
input_data = get_options('test.yaml')
|
| 7 |
+
command = input_data['command']
|
| 8 |
+
for key in input_data.keys():
|
| 9 |
+
if key != 'command':
|
| 10 |
+
command = command.replace(f'[{key}]', input_data[key][random.randint(0, len(input_data[key]) - 1)])
|
| 11 |
+
return command
|
| 12 |
+
|
| 13 |
+
def get_options(file_path):
|
| 14 |
+
with open(file_path, 'r') as file:
|
| 15 |
+
options = yaml.load(file, Loader=yaml.FullLoader)
|
| 16 |
+
return options
|
| 17 |
+
|
| 18 |
+
iface = gr.Interface(
|
| 19 |
+
fn=generate_text,
|
| 20 |
+
inputs=None,
|
| 21 |
+
outputs=gr.outputs.Textbox(label="Generated Text"),
|
| 22 |
+
title="Beautiful Fantastic AI Generator Prompts",
|
| 23 |
+
description="Generates a random text prompt for a female by AI ",
|
| 24 |
+
allow_flagging=False,
|
| 25 |
+
theme="compact",
|
| 26 |
+
examples=[
|
| 27 |
+
["Generate"],
|
| 28 |
+
["Generate"],
|
| 29 |
+
["Generate"]
|
| 30 |
+
],
|
| 31 |
+
# Add image to the interface
|
| 32 |
+
image="https://iraqprogrammer.files.wordpress.com/2023/03/00045-3227812873.png?w=1400&h="
|
| 33 |
+
)
|
| 34 |
+
|
| 35 |
+
iface.launch()
|
data
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This is a sample text file.
|
| 2 |
+
|
| 3 |
+
[style]modern
|
| 4 |
+
[emotion]happy
|
| 5 |
+
|
| 6 |
+
[style]classic
|
| 7 |
+
[emotion]sad
|
| 8 |
+
|
| 9 |
+
[style]retro
|
| 10 |
+
[emotion]angry
|
| 11 |
+
|
| 12 |
+
[style]minimal
|
| 13 |
+
[emotion]calm
|
| 14 |
+
|
| 15 |
+
[style]bohemian
|
| 16 |
+
[emotion]excited
|
| 17 |
+
|
| 18 |
+
[style]industrial
|
| 19 |
+
[emotion]fearful
|
| 20 |
+
|
| 21 |
+
[style]rustic
|
| 22 |
+
[emotion]peaceful
|
| 23 |
+
|
| 24 |
+
[style]futuristic
|
| 25 |
+
[emotion]surprised
|
fantastic.yaml
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
command: a [gender],[emotion],[style], [subject],[medium] ,[websites], [Resolution], [details_female], [colors] ,[lighting], [landmark], [camera], [landscape].
|
| 2 |
+
gender:
|
| 3 |
+
- Cinematic
|
fashion.yaml
ADDED
|
@@ -0,0 +1,1453 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
command: a [gender],[emotion],[style], [subject],[medium] ,[websites], [Resolution], [details_female], [colors] ,[lighting], [landmark], [camera], [landscape].
|
| 2 |
+
gender:
|
| 3 |
+
- male
|
| 4 |
+
- female
|
| 5 |
+
- transgender
|
| 6 |
+
- genderqueer
|
| 7 |
+
- nonbinary
|
| 8 |
+
- bigender
|
| 9 |
+
- androgynous
|
| 10 |
+
- two- spirit
|
| 11 |
+
- agender
|
| 12 |
+
- pangender
|
| 13 |
+
- intersex
|
| 14 |
+
- genderfluid
|
| 15 |
+
- gender non- conforming
|
| 16 |
+
- cisgender
|
| 17 |
+
- demigender
|
| 18 |
+
- neutrois
|
| 19 |
+
- third gender
|
| 20 |
+
- queer
|
| 21 |
+
- multigender
|
| 22 |
+
- fluid
|
| 23 |
+
- hermaphrodite
|
| 24 |
+
- gender questioning
|
| 25 |
+
- intergender
|
| 26 |
+
- poligender
|
| 27 |
+
- omnigender
|
| 28 |
+
- pansexual
|
| 29 |
+
- homosexual
|
| 30 |
+
- bisexual
|
| 31 |
+
- asexual
|
| 32 |
+
- demisexual
|
| 33 |
+
- graysexual
|
| 34 |
+
- heterosexual
|
| 35 |
+
- lesbian
|
| 36 |
+
- gay
|
| 37 |
+
- queerplatonic
|
| 38 |
+
- aromantic
|
| 39 |
+
- demiromantic
|
| 40 |
+
- grayromantic
|
| 41 |
+
- biromantic
|
| 42 |
+
- heteroromantic
|
| 43 |
+
- panromantic
|
| 44 |
+
- omniromantic
|
| 45 |
+
- polyamorous
|
| 46 |
+
- monogamous
|
| 47 |
+
- sapiosexual
|
| 48 |
+
- skoliosexual
|
| 49 |
+
- autosexual
|
| 50 |
+
- gynesexual
|
| 51 |
+
- androphilic
|
| 52 |
+
- gynephilic
|
| 53 |
+
- egalitarian
|
| 54 |
+
- gender abolitionist
|
| 55 |
+
- gender apathetic
|
| 56 |
+
- gender critical
|
| 57 |
+
- gender nihilist
|
| 58 |
+
- genderqueer affirmative
|
| 59 |
+
- intersex rights activist
|
| 60 |
+
- LGBTQIA+ ally
|
| 61 |
+
- transfeminist
|
| 62 |
+
- transhumanist
|
| 63 |
+
- womxnist
|
| 64 |
+
- queer feminist
|
| 65 |
+
- radical feminist
|
| 66 |
+
- LGBTQIA+ rights activist
|
| 67 |
+
- sex positive
|
| 68 |
+
- sex worker rights activist
|
| 69 |
+
- gender creative
|
| 70 |
+
- gender diverse
|
| 71 |
+
- gender expansive
|
| 72 |
+
- gender independent
|
| 73 |
+
- gender variant
|
| 74 |
+
- intersex justice
|
| 75 |
+
- intersex inclusion
|
| 76 |
+
- intersex positive
|
| 77 |
+
- intersex awareness
|
| 78 |
+
- trans affirmative
|
| 79 |
+
- trans positive
|
| 80 |
+
- trans visibility
|
| 81 |
+
- trans inclusion
|
| 82 |
+
- trans rights
|
| 83 |
+
- trans liberation
|
| 84 |
+
- trans solidarity
|
| 85 |
+
- trans empowerment
|
| 86 |
+
- transgender ally
|
| 87 |
+
- nonbinary affirmative
|
| 88 |
+
- nonbinary positive
|
| 89 |
+
- nonbinary visibility
|
| 90 |
+
- nonbinary inclusion
|
| 91 |
+
- nonbinary rights
|
| 92 |
+
- nonbinary liberation
|
| 93 |
+
- nonbinary solidarity
|
| 94 |
+
- nonbinary empowerment
|
| 95 |
+
- nonbinary ally
|
| 96 |
+
- genderqueer affirmative
|
| 97 |
+
- genderqueer positive
|
| 98 |
+
- genderqueer visibility
|
| 99 |
+
- genderqueer inclusion
|
| 100 |
+
- genderqueer rights
|
| 101 |
+
- genderqueer liberation
|
| 102 |
+
- genderqueer empowerment
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
|
| 106 |
+
subject:
|
| 107 |
+
- minimal fashion style clothes for a short- haired Latina girl
|
| 108 |
+
- white snowflakes leather jacket for a Cyberpunk style outfit
|
| 109 |
+
- long leather skirt with a touch of carbonfiber detailing
|
| 110 |
+
- battle status- inspired outfit with hyper- detailed design
|
| 111 |
+
- digital art- themed clothing for a futuristic look
|
| 112 |
+
- cybercinematic lighting- inspired fashion style
|
| 113 |
+
- studio quality clothing with smooth render and intricate details
|
| 114 |
+
- unreal engine 5- rendered outfit for a unique look
|
| 115 |
+
- octane- rendered clothes with a high- tech feel
|
| 116 |
+
- art style by Klimt- inspired clothing with a modern twist
|
| 117 |
+
- transparent lace outfit for an ethereal look
|
| 118 |
+
- Cyberpunk style clothes with a touch of - leather detailing
|
| 119 |
+
- add in front of the list- inspired clothing with a futuristic twist
|
| 120 |
+
- snowflakes leather jacket with cybercinematic lighting- inspired detailing
|
| 121 |
+
- long leather skirt with carbonfiber and digital art- inspired accents
|
| 122 |
+
- battle status- inspired outfit with smooth render and intricate details
|
| 123 |
+
- hyper- detailed clothing for a high- tech look
|
| 124 |
+
- Cyberpunk style clothes with a touch of Klimt- inspired design
|
| 125 |
+
- transparent lace dress with a modern twist
|
| 126 |
+
- studio quality clothing with unreal engine 5- rendered detailing
|
| 127 |
+
- octane- rendered outfit for a sleek and futuristic look
|
| 128 |
+
- art style by Nixeu- inspired clothing with a unique touch
|
| 129 |
+
- long leather skirt with digital art- inspired detailing
|
| 130 |
+
- add in front of the list- themed outfit with a modern feel
|
| 131 |
+
- cybercinematic lighting- inspired outfit with a touch of carbonfiber
|
| 132 |
+
- hyper- detailed clothing for a Cyberpunk- inspired look
|
| 133 |
+
- battle status- inspired clothes with a futuristic twist
|
| 134 |
+
- transparent lace top with intricate details
|
| 135 |
+
- studio quality clothing with a modern touch
|
| 136 |
+
- unreal engine 5- rendered outfit with smooth render and high- tech accents
|
| 137 |
+
- octane- rendered clothing for a sleek and stylish look
|
| 138 |
+
- art style by Ian Sprigger- inspired outfit with a unique twist
|
| 139 |
+
- long leather skirt with carbonfiber detailing and cybercinematic lighting- inspired accents
|
| 140 |
+
- add in front of the list- inspired clothing for a futuristic feel
|
| 141 |
+
- hyper- detailed outfit for a Cyberpunk- inspired look
|
| 142 |
+
- battle status- inspired clothing with a modern twist
|
| 143 |
+
- transparent lace dress with smooth render and intricate details
|
| 144 |
+
- studio quality clothing with a touch of digital art- inspired design
|
| 145 |
+
- unreal engine 5- rendered clothes for a sleek and high- tech look
|
| 146 |
+
- octane- rendered outfit with a Cyberpunk feel
|
| 147 |
+
- art style by Wlop- inspired clothing with a modern twist
|
| 148 |
+
- long leather skirt with carbonfiber and cybercinematic lighting- inspired accents
|
| 149 |
+
- add in front of the list- themed outfit for a futuristic touch
|
| 150 |
+
- hyper- detailed clothes for a Cyberpunk- inspired look
|
| 151 |
+
- battle status- inspired outfit with smooth render and intricate details
|
| 152 |
+
- transparent lace top with a touch of digital art- inspired design
|
| 153 |
+
- studio quality clothing with a high- tech feel
|
| 154 |
+
- unreal engine 5- rendered outfit with a Cyberpunk twist
|
| 155 |
+
- octane- rendered clothes with a modern touch
|
| 156 |
+
- art style by Krenz Cush
|
| 157 |
+
- minimal fashion style clothes with cybercinematic lighting- inspired detailing
|
| 158 |
+
- white snowflakes leather jacket with a touch of carbonfiber and digital art- inspired design
|
| 159 |
+
- long leather skirt with smooth render and intricate details
|
| 160 |
+
- battle status- inspired outfit with a modern feel
|
| 161 |
+
- hyper- detailed clothing for a Cyberpunk twist
|
| 162 |
+
- digital art- themed outfit with a futuristic touch
|
| 163 |
+
- cybercinematic lighting- inspired clothing with a high- tech look
|
| 164 |
+
- studio quality clothes with unreal engine 5- rendered detailing
|
| 165 |
+
- octane- rendered outfit for a sleek and stylish appearance
|
| 166 |
+
- art style by Klimt and Nixeu and Ian Sprigger and Wlop and Krenz Cushark- inspired clothing with a unique touch.
|
| 167 |
+
- modern witch- inspired clothing for a young blond woman in a coat
|
| 168 |
+
- full- length coat with high detail and a gloomy feel
|
| 169 |
+
- psychic- themed outfit for a woman with superpowers
|
| 170 |
+
- dark clothing for a night city setting
|
| 171 |
+
- ghost hunting- inspired clothes with a high- tech twist
|
| 172 |
+
- medium- inspired outfit with a touch of supernatural design
|
| 173 |
+
- full- length coat with a modern witch- inspired touch
|
| 174 |
+
- gloomy clothing for a dark and eerie look
|
| 175 |
+
- high detail outfit with intricate designs and accents
|
| 176 |
+
- superpower- themed clothing for a young blond woman
|
| 177 |
+
- dark clothes with a ghost hunting- inspired feel
|
| 178 |
+
- night city- inspired outfit with a high- tech twist
|
| 179 |
+
- modern witch- inspired clothing with psychic accents
|
| 180 |
+
- full- length coat with a touch of supernatural design
|
| 181 |
+
- gloomy outfit for a dark and moody appearance
|
| 182 |
+
- high detail clothing with intricate supernatural- inspired accents
|
| 183 |
+
- superpower- themed outfit with a modern feel
|
| 184 |
+
- dark clothes with a touch of ghost hunting- inspired detailing
|
| 185 |
+
- night city- inspired clothing with a high- tech twist
|
| 186 |
+
- modern witch- inspired outfit with a gloomy feel
|
| 187 |
+
- full- length coat with intricate designs and high detail
|
| 188 |
+
- psychic- themed clothing with supernatural accents
|
| 189 |
+
- dark outfit with a touch of high- tech design
|
| 190 |
+
- ghost hunting- inspired clothes for a night city setting
|
| 191 |
+
- medium- inspired clothing for a young blond woman with superpowers
|
| 192 |
+
- gloomy outfit with a modern twist
|
| 193 |
+
- high detail clothing with a supernatural feel
|
| 194 |
+
- superpower- themed outfit with ghost hunting- inspired detailing
|
| 195 |
+
- dark clothes with a high- tech touch
|
| 196 |
+
- night city- inspired clothing with a supernatural twist
|
| 197 |
+
- modern witch- inspired clothing with a touch of psychic design
|
| 198 |
+
- full- length coat with supernatural- inspired detailing
|
| 199 |
+
- psychic- themed outfit with a modern twist
|
| 200 |
+
- dark clothing for a gloomy and eerie look
|
| 201 |
+
- ghost hunting- inspired outfit with high- tech accents
|
| 202 |
+
- medium- inspired clothes with a touch of supernatural design
|
| 203 |
+
- gloomy outfit with intricate detailing and accents
|
| 204 |
+
- high detail clothing for a modern witch- inspired look
|
| 205 |
+
- superpower- themed outfit with a dark and moody feel
|
| 206 |
+
- night city- inspired clothing with a touch of supernatural design.
|
| 207 |
+
- beautiful fashion model in a sharp and high- detail outfit for a photoshoot in the Poland city centre.
|
| 208 |
+
- bokeh- inspired clothing for a fashion model in the city.
|
| 209 |
+
- Vogue- style outfit with high- detail design and accents.
|
| 210 |
+
- sharp clothing with intricate detailing and sharp lines.
|
| 211 |
+
- high- detail outfit for a fashion model with a modern look.
|
| 212 |
+
- 85mm lenses- inspired clothing with intricate designs and accents.
|
| 213 |
+
- Nikon DSLR camera photography- inspired clothing for a high- fashion look.
|
| 214 |
+
- bokeh- inspired outfit with a touch of sharp design.
|
| 215 |
+
- Vogue- style clothing with high- detail accents and intricate patterns.
|
| 216 |
+
- beautiful fashion model in a sharp and modern outfit.
|
| 217 |
+
- high- detail clothing for a photoshoot in the Poland city centre.
|
| 218 |
+
- 85mm lenses- inspired outfit for a high- fashion look.
|
| 219 |
+
- Nikon DSLR camera photography- inspired clothing with intricate designs and details.
|
| 220 |
+
- bokeh- inspired clothing with a modern twist.
|
| 221 |
+
- Vogue- style outfit with sharp lines and high- detail patterns.
|
| 222 |
+
- sharp clothing with intricate detailing and high- quality design.
|
| 223 |
+
- high- detail outfit for a beautiful fashion model in the city.
|
| 224 |
+
- 85mm lenses- inspired clothing with a touch of modern design.
|
| 225 |
+
- Nikon DSLR camera photography- inspired outfit with intricate patterns and high- detail design.
|
| 226 |
+
- bokeh- inspired clothing for a high- fashion look.
|
| 227 |
+
- Vogue- style outfit with sharp lines and intricate detailing.
|
| 228 |
+
- beautiful fashion model in a sharp and modern outfit for a city centre photoshoot.
|
| 229 |
+
- high- detail clothing with intricate designs and patterns.
|
| 230 |
+
- 85mm lenses- inspired outfit with a modern touch.
|
| 231 |
+
- Nikon DSLR camera photography- inspired clothing with high- quality design and accents.
|
| 232 |
+
- bokeh- inspired outfit with a touch of modern style.
|
| 233 |
+
- Vogue- style clothing with sharp lines and high- detail accents.
|
| 234 |
+
- sharp clothing with intricate designs and patterns.
|
| 235 |
+
- high- detail outfit for a beautiful fashion model in the city centre.
|
| 236 |
+
- 85mm lenses- inspired clothing with intricate detailing and accents.
|
| 237 |
+
- Nikon DSLR camera photography- inspired outfit with a modern twist.
|
| 238 |
+
- bokeh- inspired clothing with a high- fashion look.
|
| 239 |
+
- Vogue- style outfit with intricate patterns and sharp lines.
|
| 240 |
+
- beautiful fashion model in a sharp and high- detail outfit for a photoshoot.
|
| 241 |
+
- high- detail clothing with a touch of modern design.
|
| 242 |
+
- 85mm lenses- inspired outfit with intricate detailing and patterns.
|
| 243 |
+
- Nikon DSLR camera photography- inspired clothing with a touch of modern design.
|
| 244 |
+
- bokeh- inspired outfit with high- quality design and intricate patterns.
|
| 245 |
+
- Vogue- style clothing with a modern twist and sharp lines.
|
| 246 |
+
- sharp clothing with intricate detailing and high- quality design for a fashion model in the city centre.
|
| 247 |
+
|
| 248 |
+
|
| 249 |
+
|
| 250 |
+
|
| 251 |
+
|
| 252 |
+
|
| 253 |
+
|
| 254 |
+
|
| 255 |
+
|
| 256 |
+
medium:
|
| 257 |
+
- Acrylic painting
|
| 258 |
+
- Oil painting
|
| 259 |
+
- Watercolor painting
|
| 260 |
+
- Charcoal drawing
|
| 261 |
+
- Ink drawing
|
| 262 |
+
- Pencil sketch
|
| 263 |
+
- Digital art
|
| 264 |
+
- Mixed media
|
| 265 |
+
- Collage
|
| 266 |
+
- Sculpture
|
| 267 |
+
- Ceramics
|
| 268 |
+
- Printmaking
|
| 269 |
+
- Textile art
|
| 270 |
+
- Embroidery
|
| 271 |
+
- Quilting
|
| 272 |
+
- Knitting
|
| 273 |
+
- Crochet
|
| 274 |
+
- Weaving
|
| 275 |
+
- Beadwork
|
| 276 |
+
- Jewelry making
|
| 277 |
+
- Woodworking
|
| 278 |
+
- Glass blowing
|
| 279 |
+
- Pottery
|
| 280 |
+
- Mosaic
|
| 281 |
+
- Metalwork
|
| 282 |
+
- Paper cutting
|
| 283 |
+
- Calligraphy
|
| 284 |
+
- Graffiti art
|
| 285 |
+
- Street art
|
| 286 |
+
- Installation art
|
| 287 |
+
- Performance art
|
| 288 |
+
- Video art
|
| 289 |
+
- Photography
|
| 290 |
+
- Landscape photography
|
| 291 |
+
- Portrait photography
|
| 292 |
+
- Fashion photography
|
| 293 |
+
- Documentary photography
|
| 294 |
+
- Black and white photography
|
| 295 |
+
- Sepia photography
|
| 296 |
+
- Polaroid photography
|
| 297 |
+
- Instant film photography
|
| 298 |
+
- Pinhole photography
|
| 299 |
+
- Cyanotype photography
|
| 300 |
+
- Tintype photography
|
| 301 |
+
- Wet plate photography
|
| 302 |
+
- 360- degree photography
|
| 303 |
+
- Underwater photography
|
| 304 |
+
- Aerial photography
|
| 305 |
+
- Astrophotography
|
| 306 |
+
- Macro photography
|
| 307 |
+
- Micro photography
|
| 308 |
+
- High- speed photography
|
| 309 |
+
- Infrared photography
|
| 310 |
+
- Ultraviolet photography
|
| 311 |
+
- Time- lapse photography
|
| 312 |
+
- HDR photography
|
| 313 |
+
- Panoramic photography
|
| 314 |
+
- Stereo photography
|
| 315 |
+
- Light painting
|
| 316 |
+
- Kinetic art
|
| 317 |
+
- Land art
|
| 318 |
+
- Environmental art
|
| 319 |
+
- Sound art
|
| 320 |
+
- Interactive art
|
| 321 |
+
- Virtual reality art
|
| 322 |
+
- Video game art
|
| 323 |
+
- Conceptual art
|
| 324 |
+
- Minimalism
|
| 325 |
+
- Abstract art
|
| 326 |
+
- Cubism
|
| 327 |
+
- Expressionism
|
| 328 |
+
- Impressionism
|
| 329 |
+
- Pop art
|
| 330 |
+
- Surrealism
|
| 331 |
+
- Art Nouveau
|
| 332 |
+
- Art Deco
|
| 333 |
+
- Baroque art
|
| 334 |
+
- Gothic art
|
| 335 |
+
- Renaissance art
|
| 336 |
+
- Rococo art
|
| 337 |
+
- Romanticism
|
| 338 |
+
- Realism
|
| 339 |
+
- Contemporary art
|
| 340 |
+
- Outsider art
|
| 341 |
+
- Streetwear art
|
| 342 |
+
- Fan art
|
| 343 |
+
- Cartooning
|
| 344 |
+
- Comics
|
| 345 |
+
- Graphic novels
|
| 346 |
+
- Manga
|
| 347 |
+
- Anime
|
| 348 |
+
- Illustration
|
| 349 |
+
- Concept art
|
| 350 |
+
- Storyboarding
|
| 351 |
+
- 3D modeling
|
| 352 |
+
- Character design
|
| 353 |
+
- Background design
|
| 354 |
+
- Matte painting
|
| 355 |
+
- Motion graphics
|
| 356 |
+
- Typography
|
| 357 |
+
style:
|
| 358 |
+
- Abstract Expressionism
|
| 359 |
+
- Art Deco
|
| 360 |
+
- Art Nouveau
|
| 361 |
+
- Baroque
|
| 362 |
+
- Byzantine
|
| 363 |
+
- Classicism
|
| 364 |
+
- Cubism
|
| 365 |
+
- Dadaism
|
| 366 |
+
- Expressionism
|
| 367 |
+
- Fauvism
|
| 368 |
+
- Futurism
|
| 369 |
+
- Gothic
|
| 370 |
+
- Impressionism
|
| 371 |
+
- Mannerism
|
| 372 |
+
- Medieval
|
| 373 |
+
- Minimalism
|
| 374 |
+
- Modernism
|
| 375 |
+
- Neoclassicism
|
| 376 |
+
- Op Art
|
| 377 |
+
- Pointillism
|
| 378 |
+
- Pop Art
|
| 379 |
+
- Post- Impressionism
|
| 380 |
+
- Realism
|
| 381 |
+
- Rococo
|
| 382 |
+
- Romanticism
|
| 383 |
+
- Surrealism
|
| 384 |
+
- Abstract Art
|
| 385 |
+
- Action Painting
|
| 386 |
+
- African Art
|
| 387 |
+
- Art Brut
|
| 388 |
+
- Art Informel
|
| 389 |
+
- Art Photography
|
| 390 |
+
- Art Povera
|
| 391 |
+
- Arte Povera
|
| 392 |
+
- Arts and Crafts
|
| 393 |
+
- Assemblage Art
|
| 394 |
+
- Bauhaus
|
| 395 |
+
- Body Art
|
| 396 |
+
- Chinese Painting
|
| 397 |
+
- Collage Art
|
| 398 |
+
- Color Field Painting
|
| 399 |
+
- Computer Art
|
| 400 |
+
- Conceptual Art
|
| 401 |
+
- Constructivism
|
| 402 |
+
- Contemporary Art
|
| 403 |
+
- Drip Painting
|
| 404 |
+
- Engraving
|
| 405 |
+
- Environmental Art
|
| 406 |
+
- Etching
|
| 407 |
+
- Figurative Art
|
| 408 |
+
- Fluxus
|
| 409 |
+
- Folk Art
|
| 410 |
+
- Graffiti Art
|
| 411 |
+
- Happening
|
| 412 |
+
- Hard Edge Painting
|
| 413 |
+
- Installation Art
|
| 414 |
+
- Kinetic Art
|
| 415 |
+
- Land Art
|
| 416 |
+
- Light and Space Art
|
| 417 |
+
- Mail Art
|
| 418 |
+
- Mosaic Art
|
| 419 |
+
- Naive Art
|
| 420 |
+
- Neo- Expressionism
|
| 421 |
+
- Neue Sachlichkeit
|
| 422 |
+
- New Media Art
|
| 423 |
+
- Outsider Art
|
| 424 |
+
- Performance Art
|
| 425 |
+
- Photorealism
|
| 426 |
+
- Postmodern Art
|
| 427 |
+
- Printmaking
|
| 428 |
+
- Public Art
|
| 429 |
+
- Silk Painting
|
| 430 |
+
- Sound Art
|
| 431 |
+
- Stained Glass
|
| 432 |
+
- Street Art
|
| 433 |
+
- Superflat
|
| 434 |
+
- Symbolism
|
| 435 |
+
- Textile Art
|
| 436 |
+
- Video Art
|
| 437 |
+
- Visionary Art
|
| 438 |
+
- Watercolor
|
| 439 |
+
- Woodcut
|
| 440 |
+
- Calligraphy
|
| 441 |
+
- Celtic Art
|
| 442 |
+
- Chiaroscuro
|
| 443 |
+
- Contemporary Realism
|
| 444 |
+
- Divisionism
|
| 445 |
+
- Expressionist Portraiture
|
| 446 |
+
- Fantasy Art
|
| 447 |
+
- Figurative Realism
|
| 448 |
+
- Geometric Abstraction
|
| 449 |
+
- Hyperrealism
|
| 450 |
+
- Illusionistic
|
| 451 |
+
- Indian Miniature Painting
|
| 452 |
+
- Interior Painting
|
| 453 |
+
- Japanese Painting
|
| 454 |
+
- Magic Realism
|
| 455 |
+
- Mexican Muralism
|
| 456 |
+
- Mixed Media
|
| 457 |
+
- Neo- Expressionism
|
| 458 |
+
- Baroque
|
| 459 |
+
- Pointillism
|
| 460 |
+
- Cubism
|
| 461 |
+
- Dada
|
| 462 |
+
- Surrealism
|
| 463 |
+
- Abstract Expressionism
|
| 464 |
+
- Pop Art
|
| 465 |
+
- Fauvism
|
| 466 |
+
- Rococo
|
| 467 |
+
- Pre- Raphaelite
|
| 468 |
+
- Minimalism
|
| 469 |
+
- Op Art
|
| 470 |
+
- Post- Impressionism
|
| 471 |
+
- Constructivism
|
| 472 |
+
- Futurism
|
| 473 |
+
- Art Nouveau
|
| 474 |
+
- Photorealism
|
| 475 |
+
- Precisionism
|
| 476 |
+
- Romanticism
|
| 477 |
+
- Social Realism
|
| 478 |
+
- Abstract Art
|
| 479 |
+
- Art Deco
|
| 480 |
+
- Magic Realism
|
| 481 |
+
- New Objectivity
|
| 482 |
+
- Hard- edge Painting
|
| 483 |
+
- Superflat
|
| 484 |
+
- Syn- tic Cubism
|
| 485 |
+
- Tonalism
|
| 486 |
+
- Video Art
|
| 487 |
+
- Ashcan School
|
| 488 |
+
- Impressionism
|
| 489 |
+
- Installation Art
|
| 490 |
+
- Fluxus
|
| 491 |
+
- Kinetic Art
|
| 492 |
+
- Land Art
|
| 493 |
+
- Body Art
|
| 494 |
+
- Graffiti Art
|
| 495 |
+
- Digital Art
|
| 496 |
+
- Postmodern Art
|
| 497 |
+
- Contemporary Art
|
| 498 |
+
- Hyperrealism
|
| 499 |
+
- Street Art
|
| 500 |
+
- Conceptual Art
|
| 501 |
+
- Light and Space Art
|
| 502 |
+
- Art Brut
|
| 503 |
+
- Environmental Art
|
| 504 |
+
- Outsider Art
|
| 505 |
+
- Interactive Art
|
| 506 |
+
- Performance Art
|
| 507 |
+
- Artgerm
|
| 508 |
+
websites:
|
| 509 |
+
- Artstation
|
| 510 |
+
- DeviantArt
|
| 511 |
+
- Behance
|
| 512 |
+
- Dribbble
|
| 513 |
+
- Coroflot
|
| 514 |
+
- 99designs
|
| 515 |
+
- DesignCrowd
|
| 516 |
+
- Creative Market
|
| 517 |
+
- Envato Elements
|
| 518 |
+
- Canva
|
| 519 |
+
- Adobe Creative Cloud
|
| 520 |
+
- Sketch
|
| 521 |
+
- Figma
|
| 522 |
+
- InVision
|
| 523 |
+
- Gravit Designer
|
| 524 |
+
- Affinity Designer
|
| 525 |
+
- CorelDRAW
|
| 526 |
+
- GIMP
|
| 527 |
+
- Krita
|
| 528 |
+
- Blender
|
| 529 |
+
- Cinema 4D
|
| 530 |
+
- 3ds Max
|
| 531 |
+
- Unity
|
| 532 |
+
- Unreal Engine
|
| 533 |
+
- Substance Painter
|
| 534 |
+
- Procreate
|
| 535 |
+
- Clip Studio Paint
|
| 536 |
+
- Painter
|
| 537 |
+
- ArtRage
|
| 538 |
+
- MediBang Paint
|
| 539 |
+
- PaintTool SAI
|
| 540 |
+
- Wacom
|
| 541 |
+
- Huion
|
| 542 |
+
- XP- Pen
|
| 543 |
+
- Cintiq
|
| 544 |
+
- Intuos
|
| 545 |
+
- Bamboo
|
| 546 |
+
- GraphicRiver
|
| 547 |
+
- Creative Fabrica
|
| 548 |
+
- Freepik
|
| 549 |
+
- Shutterstock
|
| 550 |
+
- iStock
|
| 551 |
+
- Getty Images
|
| 552 |
+
- Pond5
|
| 553 |
+
- MotionElements
|
| 554 |
+
- VideoHive
|
| 555 |
+
- AudioJungle
|
| 556 |
+
- SoundCloud
|
| 557 |
+
- Bandcamp
|
| 558 |
+
- Mixcloud
|
| 559 |
+
Resolution:
|
| 560 |
+
- High Resolution
|
| 561 |
+
- Ultra HD
|
| 562 |
+
- 4K
|
| 563 |
+
- Retina Display
|
| 564 |
+
- Pixel Perfect
|
| 565 |
+
- Highly Detailed
|
| 566 |
+
- Sharp Focus
|
| 567 |
+
- Crystal Clear
|
| 568 |
+
- Super Fine
|
| 569 |
+
- High DPI
|
| 570 |
+
- True to Life
|
| 571 |
+
- Razor Sharp
|
| 572 |
+
- Ultra Sharp
|
| 573 |
+
- High Clarity
|
| 574 |
+
- Maximum Definition
|
| 575 |
+
- Pin- sharp
|
| 576 |
+
- Hyper- realistic
|
| 577 |
+
- Precision Imaging
|
| 578 |
+
- Detail- Oriented
|
| 579 |
+
- Crisp Visuals
|
| 580 |
+
- Extreme Detail
|
| 581 |
+
- Superb Clarity
|
| 582 |
+
- Unmatched Precision
|
| 583 |
+
- Perfectly Clear
|
| 584 |
+
- Unbeatable Detail
|
| 585 |
+
- Flawlessly Detailed
|
| 586 |
+
- Masterfully Crafted
|
| 587 |
+
- Highly Accurate
|
| 588 |
+
- Incredibly Sharp
|
| 589 |
+
- Uncompromising Detail
|
| 590 |
+
- Impeccable Quality
|
| 591 |
+
- Laser- focused Detail
|
| 592 |
+
- Exceptionally Clear
|
| 593 |
+
- Perfectly Focused
|
| 594 |
+
- Utterly Detailed
|
| 595 |
+
- Absolute Clarity
|
| 596 |
+
- Highly Refined
|
| 597 |
+
- Unmistakable Quality
|
| 598 |
+
- Top- notch Detail
|
| 599 |
+
- Unmatched Clarity
|
| 600 |
+
- Precision- focused
|
| 601 |
+
- Expertly Crafted
|
| 602 |
+
- Intensely Focused
|
| 603 |
+
- Incredible Detail
|
| 604 |
+
- Remarkable Clarity
|
| 605 |
+
- Exquisitely Detailed
|
| 606 |
+
- High- definition
|
| 607 |
+
- Immaculately Clear
|
| 608 |
+
- Expertly Detailed
|
| 609 |
+
- Unrivalled Quality
|
| 610 |
+
- Unwavering Clarity
|
| 611 |
+
- Uncompromising Precision
|
| 612 |
+
- Unsurpassed Detail
|
| 613 |
+
- Magnificent Quality
|
| 614 |
+
- Impeccable Detailing
|
| 615 |
+
- Unmatched Focus
|
| 616 |
+
- Perfection in Detail
|
| 617 |
+
- Ultra- sharp Detailing
|
| 618 |
+
- Flawlessly Crafted
|
| 619 |
+
- Brilliantly Sharp
|
| 620 |
+
- Pinpoint Clarity
|
| 621 |
+
- Unquestionable Quality
|
| 622 |
+
- Perfectly Focused Detail
|
| 623 |
+
- Picture- perfect Quality
|
| 624 |
+
- Flawless Detailing
|
| 625 |
+
- Peerless Clarity
|
| 626 |
+
- Precisely Crafted
|
| 627 |
+
- Masterful Detailing
|
| 628 |
+
- Intensely Detailed
|
| 629 |
+
- Intensely Sharp
|
| 630 |
+
- Perfectly Detailed
|
| 631 |
+
- Ultra- realistic Detailing
|
| 632 |
+
- Exceptionally Detailed
|
| 633 |
+
- Expertly Refined
|
| 634 |
+
- Super- detailed
|
| 635 |
+
- Impeccable Clarity
|
| 636 |
+
- Exquisitely Crafted
|
| 637 |
+
- Flawless Clarity
|
| 638 |
+
- Impeccable Detail Quality
|
| 639 |
+
- Phenomenal Detailing
|
| 640 |
+
- Ultimate Sharpness
|
| 641 |
+
- Masterfully Detailed
|
| 642 |
+
- Meticulously Crafted
|
| 643 |
+
- Superb Detailing
|
| 644 |
+
- Unrivaled Clarity
|
| 645 |
+
- Impeccable Focus
|
| 646 |
+
details_female:
|
| 647 |
+
- Bright Smile
|
| 648 |
+
- Rosy Cheeks
|
| 649 |
+
- Sparkling Eyes
|
| 650 |
+
- Glossy Lips
|
| 651 |
+
- Flowing Hair
|
| 652 |
+
- Delicate Jewelry
|
| 653 |
+
- Elegant Dress
|
| 654 |
+
- Glittering Nails
|
| 655 |
+
- Floral Accessories
|
| 656 |
+
- Soft Skin
|
| 657 |
+
- Freckles
|
| 658 |
+
- Dimples
|
| 659 |
+
- Glowing Skin
|
| 660 |
+
- Curled Eyelashes
|
| 661 |
+
- Shapely Brows
|
| 662 |
+
- Wavy Hair
|
| 663 |
+
- Radiant Complexion
|
| 664 |
+
- Luscious Curls
|
| 665 |
+
- Thin Bangs
|
| 666 |
+
- Thick Bangs
|
| 667 |
+
- Updo Hairstyle
|
| 668 |
+
- Loose Hairstyle
|
| 669 |
+
- Cute Bow
|
| 670 |
+
- Embroidered Scarf
|
| 671 |
+
- Oversized Sunglasses
|
| 672 |
+
- High Heels
|
| 673 |
+
- Frilly Socks
|
| 674 |
+
- Polka Dot Skirt
|
| 675 |
+
- Striped Shirt
|
| 676 |
+
- Chunky Boots
|
| 677 |
+
- Fluffy Coat
|
| 678 |
+
- Furry Hat
|
| 679 |
+
- Patterned Tights
|
| 680 |
+
- Flowy Skirt
|
| 681 |
+
- Puffy Sleeves
|
| 682 |
+
- Ruffled Dress
|
| 683 |
+
- Lace Trim
|
| 684 |
+
- Elegant Gloves
|
| 685 |
+
- Bow Tie
|
| 686 |
+
- Chic Beret
|
| 687 |
+
- Pointed Shoes
|
| 688 |
+
- Wide Brim Hat
|
| 689 |
+
- Embellished Purse
|
| 690 |
+
- Fea- red Hair Accessory
|
| 691 |
+
- Bohemian Jewelry
|
| 692 |
+
- Boho Chic Clothing
|
| 693 |
+
- Dainty Necklace
|
| 694 |
+
- Oversized Earrings
|
| 695 |
+
- Stylish Belt
|
| 696 |
+
- Ripped Jeans
|
| 697 |
+
- Lea- r Jacket
|
| 698 |
+
- Braided Hair
|
| 699 |
+
- Headband
|
| 700 |
+
- Peplum Top
|
| 701 |
+
- Statement Necklace
|
| 702 |
+
- Fur Trimmed Coat
|
| 703 |
+
- Fringe Details
|
| 704 |
+
- Cropped Top
|
| 705 |
+
- Off- Shoulder Dress
|
| 706 |
+
- Sheer Fabric
|
| 707 |
+
- Tulle Skirt
|
| 708 |
+
- Metallic Accents
|
| 709 |
+
- Embroidered Denim
|
| 710 |
+
- Lace- Up Boots
|
| 711 |
+
- High- Waisted Skirt
|
| 712 |
+
- Crop Flare Jeans
|
| 713 |
+
- Patterned Blouse
|
| 714 |
+
- Bell Sleeve Top
|
| 715 |
+
- Wide Leg Pants
|
| 716 |
+
- Pencil Skirt
|
| 717 |
+
- Pointed Toe Flats
|
| 718 |
+
- Floral Maxi Dress
|
| 719 |
+
- Bold Prints
|
| 720 |
+
- Bright Colors
|
| 721 |
+
- Matching Set
|
| 722 |
+
- Polished Nails
|
| 723 |
+
- Printed Scarf
|
| 724 |
+
- Knit Sweater
|
| 725 |
+
- Oversized Cardigan
|
| 726 |
+
- Fitted Blazer
|
| 727 |
+
- Layered Necklaces
|
| 728 |
+
- Printed Leggings
|
| 729 |
+
- Embellished Sandals
|
| 730 |
+
- Strappy Heels
|
| 731 |
+
- Printed Skirt
|
| 732 |
+
- Slouchy Boots
|
| 733 |
+
- Colored Denim
|
| 734 |
+
- Sporty Sneakers
|
| 735 |
+
- Crochet Details
|
| 736 |
+
- Boho Maxi Dress
|
| 737 |
+
- Sleek Ponytail
|
| 738 |
+
- Top Knot
|
| 739 |
+
- French Braid
|
| 740 |
+
- Elegant Chignon
|
| 741 |
+
- Braided Crown
|
| 742 |
+
- Classic Bun
|
| 743 |
+
- Half- Up Hairdo
|
| 744 |
+
- Side- Swept Bangs
|
| 745 |
+
- Braided Bangs
|
| 746 |
+
- Wispy
|
| 747 |
+
colors:
|
| 748 |
+
- Crimson
|
| 749 |
+
- Sky Blue
|
| 750 |
+
- Goldenrod
|
| 751 |
+
- Navy
|
| 752 |
+
- Lavender
|
| 753 |
+
- Olive
|
| 754 |
+
- Burnt Sienna
|
| 755 |
+
- Salmon
|
| 756 |
+
- Coral
|
| 757 |
+
- Aquamarine
|
| 758 |
+
- Slate
|
| 759 |
+
- Mauve
|
| 760 |
+
- Sienna
|
| 761 |
+
- Magenta
|
| 762 |
+
- Turquoise
|
| 763 |
+
- Plum
|
| 764 |
+
- Maroon
|
| 765 |
+
- Azure
|
| 766 |
+
- Beige
|
| 767 |
+
- Cobalt
|
| 768 |
+
- Peach
|
| 769 |
+
- Lilac
|
| 770 |
+
- Khaki
|
| 771 |
+
- Brick Red
|
| 772 |
+
- Teal
|
| 773 |
+
- Silver
|
| 774 |
+
- Mustard
|
| 775 |
+
- Violet
|
| 776 |
+
- Fuchsia
|
| 777 |
+
- Tan
|
| 778 |
+
- Indigo
|
| 779 |
+
- Bronze
|
| 780 |
+
- Olive Green
|
| 781 |
+
- Rose
|
| 782 |
+
- Chartreuse
|
| 783 |
+
- Burgundy
|
| 784 |
+
- Orchid
|
| 785 |
+
- Tangerine
|
| 786 |
+
- Turmeric
|
| 787 |
+
- Scarlet
|
| 788 |
+
- Chocolate
|
| 789 |
+
- Rust
|
| 790 |
+
- Eggplant
|
| 791 |
+
- Lemon
|
| 792 |
+
- Pine
|
| 793 |
+
- Rusty Orange
|
| 794 |
+
- Cream
|
| 795 |
+
- Baby Blue
|
| 796 |
+
- Deep Purple
|
| 797 |
+
- Powder Blue
|
| 798 |
+
- Lime
|
| 799 |
+
- Jade
|
| 800 |
+
- Ash
|
| 801 |
+
- Kelly Green
|
| 802 |
+
- Charcoal
|
| 803 |
+
- Khaki Green
|
| 804 |
+
- Royal Blue
|
| 805 |
+
- Sepia
|
| 806 |
+
- Light Pink
|
| 807 |
+
- Steel Blue
|
| 808 |
+
- Neon Green
|
| 809 |
+
- Bronze Brown
|
| 810 |
+
- Deep Blue
|
| 811 |
+
- Ivory
|
| 812 |
+
- Bright Red
|
| 813 |
+
- Dark Green
|
| 814 |
+
- Off- White
|
| 815 |
+
- Yellow Green
|
| 816 |
+
- Cinnamon
|
| 817 |
+
- Light Purple
|
| 818 |
+
- Aqua
|
| 819 |
+
- Muted Green
|
| 820 |
+
- Navy Blue
|
| 821 |
+
- Coral Pink
|
| 822 |
+
- Sand
|
| 823 |
+
- Slate Gray
|
| 824 |
+
- Olive Drab
|
| 825 |
+
- Deep Red
|
| 826 |
+
- Turquoise Blue
|
| 827 |
+
- Light Green
|
| 828 |
+
- Vermilion
|
| 829 |
+
- Mahogany
|
| 830 |
+
- Teal Blue
|
| 831 |
+
- Forest Green
|
| 832 |
+
- Salmon Pink
|
| 833 |
+
- Wheat
|
| 834 |
+
- Medium Blue
|
| 835 |
+
- Mint Green
|
| 836 |
+
- Garnet
|
| 837 |
+
- Gunmetal
|
| 838 |
+
- Light Gray
|
| 839 |
+
- Beige Brown
|
| 840 |
+
- Light Blue
|
| 841 |
+
- Grass Green
|
| 842 |
+
- Deep Pink
|
| 843 |
+
- Slate Blue
|
| 844 |
+
- Dark Brown
|
| 845 |
+
- Soft Pink
|
| 846 |
+
- Olive Brown
|
| 847 |
+
- Light Brown
|
| 848 |
+
lighting:
|
| 849 |
+
- Soft light
|
| 850 |
+
- Hard light
|
| 851 |
+
- Natural light
|
| 852 |
+
- Studio light
|
| 853 |
+
- Low key lighting
|
| 854 |
+
- High key lighting
|
| 855 |
+
- Rim light
|
| 856 |
+
- Side lighting
|
| 857 |
+
- Top lighting
|
| 858 |
+
- Bottom lighting
|
| 859 |
+
- Backlighting
|
| 860 |
+
- Front lighting
|
| 861 |
+
- Mood lighting
|
| 862 |
+
- Ambient lighting
|
| 863 |
+
- Colored lighting
|
| 864 |
+
- Directional lighting
|
| 865 |
+
- Diffused lighting
|
| 866 |
+
- Spot lighting
|
| 867 |
+
- Point source lighting
|
| 868 |
+
- Flood lighting
|
| 869 |
+
- Neon lighting
|
| 870 |
+
- Strobe lighting
|
| 871 |
+
- Candle light
|
| 872 |
+
- Fire light
|
| 873 |
+
- Torch light
|
| 874 |
+
- Overhead lighting
|
| 875 |
+
- Reflected light
|
| 876 |
+
- Shadow play
|
| 877 |
+
- Halogen lighting
|
| 878 |
+
- LED lighting
|
| 879 |
+
- Bright lighting
|
| 880 |
+
- Dim lighting
|
| 881 |
+
- Natural sunlight
|
| 882 |
+
- Sunrise lighting
|
| 883 |
+
- Sunset lighting
|
| 884 |
+
- Golden hour lighting
|
| 885 |
+
- Blue hour lighting
|
| 886 |
+
- Twilight lighting
|
| 887 |
+
- Moonlight
|
| 888 |
+
- Starlight
|
| 889 |
+
- Candlelit
|
| 890 |
+
- Sunrise/sunset lighting
|
| 891 |
+
- Foggy lighting
|
| 892 |
+
- Misty lighting
|
| 893 |
+
- Hazy lighting
|
| 894 |
+
- Rainy lighting
|
| 895 |
+
- Snowy lighting
|
| 896 |
+
- Stormy lighting
|
| 897 |
+
- Thunderstorm lighting
|
| 898 |
+
- Cloudy lighting
|
| 899 |
+
- Sunny lighting
|
| 900 |
+
- Bright and sunny lighting
|
| 901 |
+
- Clear sky lighting
|
| 902 |
+
- Dappled lighting
|
| 903 |
+
- Softbox lighting
|
| 904 |
+
- Umbrella lighting
|
| 905 |
+
- Beauty lighting
|
| 906 |
+
- Glamour lighting
|
| 907 |
+
- Vintage lighting
|
| 908 |
+
- Film noir lighting
|
| 909 |
+
- Fantasy lighting
|
| 910 |
+
- Science fiction lighting
|
| 911 |
+
- Cyberpunk lighting
|
| 912 |
+
- Steampunk lighting
|
| 913 |
+
- Gothic lighting
|
| 914 |
+
- Horror lighting
|
| 915 |
+
- Suspenseful lighting
|
| 916 |
+
- Romantic lighting
|
| 917 |
+
- Dreamy lighting
|
| 918 |
+
- Magical lighting
|
| 919 |
+
- Whimsical lighting
|
| 920 |
+
- Playful lighting
|
| 921 |
+
- Happy lighting
|
| 922 |
+
- Cheerful lighting
|
| 923 |
+
- Joyful lighting
|
| 924 |
+
- Peaceful lighting
|
| 925 |
+
- Calm lighting
|
| 926 |
+
- Relaxing lighting
|
| 927 |
+
- Serene lighting
|
| 928 |
+
- Tranquil lighting
|
| 929 |
+
- Mystical lighting
|
| 930 |
+
- E- real lighting
|
| 931 |
+
- Moody lighting
|
| 932 |
+
- Brooding lighting
|
| 933 |
+
- Mysterious lighting
|
| 934 |
+
- Enigmatic lighting
|
| 935 |
+
- Thought- provoking lighting
|
| 936 |
+
- Inspiring lighting
|
| 937 |
+
- Motivational lighting
|
| 938 |
+
- Energetic lighting
|
| 939 |
+
- Dynamic lighting
|
| 940 |
+
- Vibrant lighting
|
| 941 |
+
- Bold lighting
|
| 942 |
+
- Dramatic lighting
|
| 943 |
+
- Intense lighting
|
| 944 |
+
- Fiery lighting
|
| 945 |
+
- Cool lighting
|
| 946 |
+
- Futuristic lighting
|
| 947 |
+
- Cyber lighting
|
| 948 |
+
- Geometric lighting
|
| 949 |
+
- cinematic lighting
|
| 950 |
+
- Bright
|
| 951 |
+
- Dim
|
| 952 |
+
- Shadow
|
| 953 |
+
- Backlight
|
| 954 |
+
- Side light
|
| 955 |
+
- Natural light
|
| 956 |
+
- Artificial light
|
| 957 |
+
- Candlelight
|
| 958 |
+
- Sunrise
|
| 959 |
+
- Sunset
|
| 960 |
+
- Golden Hour
|
| 961 |
+
- Blue Hour
|
| 962 |
+
- Overhead light
|
| 963 |
+
- Spotlights
|
| 964 |
+
- Fluorescent
|
| 965 |
+
- Neon
|
| 966 |
+
- Colored light
|
| 967 |
+
- Soft light
|
| 968 |
+
- Hard light
|
| 969 |
+
- Rim light
|
| 970 |
+
- Top light
|
| 971 |
+
- Bottom light
|
| 972 |
+
- Silhouette
|
| 973 |
+
- Lens flare
|
| 974 |
+
- Bokeh
|
| 975 |
+
- Firelight
|
| 976 |
+
- Moonlight
|
| 977 |
+
- Starlight
|
| 978 |
+
- Storm light
|
| 979 |
+
- Lightning
|
| 980 |
+
- Haze
|
| 981 |
+
- Misty light
|
| 982 |
+
- Foggy light
|
| 983 |
+
- Cloudy light
|
| 984 |
+
- Rainy light
|
| 985 |
+
- Snowy light
|
| 986 |
+
- Sunny light
|
| 987 |
+
- Gloomy light
|
| 988 |
+
- Moody light
|
| 989 |
+
- Dramatic light
|
| 990 |
+
- Mysterious light
|
| 991 |
+
- Romantic light
|
| 992 |
+
- E- real light
|
| 993 |
+
- Heavenly light
|
| 994 |
+
- Angelic light
|
| 995 |
+
- Divine light
|
| 996 |
+
- Hellish light
|
| 997 |
+
- Sinister light
|
| 998 |
+
- Spooky light
|
| 999 |
+
- Halloween light
|
| 1000 |
+
- Festive light
|
| 1001 |
+
- Christmas light
|
| 1002 |
+
- Holiday light
|
| 1003 |
+
- Easter light
|
| 1004 |
+
- Spring light
|
| 1005 |
+
- Summer light
|
| 1006 |
+
- Autumn light
|
| 1007 |
+
- Winter light
|
| 1008 |
+
- Beach light
|
| 1009 |
+
- Ocean light
|
| 1010 |
+
- Underwater light
|
| 1011 |
+
- Forest light
|
| 1012 |
+
- Jungle light
|
| 1013 |
+
- Desert light
|
| 1014 |
+
- Mountain light
|
| 1015 |
+
- City light
|
| 1016 |
+
- Urban light
|
| 1017 |
+
- Rural light
|
| 1018 |
+
- Countryside light
|
| 1019 |
+
- Historical light
|
| 1020 |
+
- Vintage light
|
| 1021 |
+
- Retro light
|
| 1022 |
+
- Futuristic light
|
| 1023 |
+
- Sci- fi light
|
| 1024 |
+
- Cyberpunk light
|
| 1025 |
+
- Steampunk light
|
| 1026 |
+
- Gothic light
|
| 1027 |
+
- Renaissance light
|
| 1028 |
+
- Baroque light
|
| 1029 |
+
- Classical light
|
| 1030 |
+
- Modern light
|
| 1031 |
+
- Contemporary light
|
| 1032 |
+
- Minimalist light
|
| 1033 |
+
- Abstract light
|
| 1034 |
+
- Realistic light
|
| 1035 |
+
- Surreal light
|
| 1036 |
+
- Dreamy light
|
| 1037 |
+
- Fantasy light
|
| 1038 |
+
- Mythical light
|
| 1039 |
+
- Magical light
|
| 1040 |
+
- Enchanted light
|
| 1041 |
+
- Fairytale light
|
| 1042 |
+
- Whimsical light
|
| 1043 |
+
- Playful light
|
| 1044 |
+
- Serious light
|
| 1045 |
+
- Happy light
|
| 1046 |
+
- Sad light
|
| 1047 |
+
- Nostalgic light
|
| 1048 |
+
- Hopeful light
|
| 1049 |
+
- Inspiring light
|
| 1050 |
+
landmark:
|
| 1051 |
+
- Louvre Museum
|
| 1052 |
+
- Colosseum
|
| 1053 |
+
- Eiffel Tower
|
| 1054 |
+
- Taj Mahal
|
| 1055 |
+
- Great Wall of China
|
| 1056 |
+
- Statue of Liberty
|
| 1057 |
+
- Big Ben Clock Tower
|
| 1058 |
+
- Golden Gate Bridge
|
| 1059 |
+
- Sydney Opera House
|
| 1060 |
+
- Vatican City
|
| 1061 |
+
- Palace of Versailles
|
| 1062 |
+
- Sistine Chapel
|
| 1063 |
+
- Christ - Redeemer statue
|
| 1064 |
+
- Arc de Triomphe
|
| 1065 |
+
- Burj Khalifa
|
| 1066 |
+
- ChΓ’teau de Chambord
|
| 1067 |
+
- Machu Picchu
|
| 1068 |
+
- Saint Peter Square
|
| 1069 |
+
- Tower Bridge
|
| 1070 |
+
- Neuschwanstein Castle
|
| 1071 |
+
- Acropolis
|
| 1072 |
+
- Mont Saint- Michel
|
| 1073 |
+
- Charles Bridge
|
| 1074 |
+
- Westminster Abbey
|
| 1075 |
+
- Palace of Westminster
|
| 1076 |
+
- Petronas Twin Towers
|
| 1077 |
+
- Alhambra
|
| 1078 |
+
- Leaning Tower of Pisa
|
| 1079 |
+
- Tower of London
|
| 1080 |
+
- Sagrada Familia
|
| 1081 |
+
- Brandenburg Gate
|
| 1082 |
+
- Forbidden City
|
| 1083 |
+
- Golden Temple
|
| 1084 |
+
- Great Sphinx of Giza
|
| 1085 |
+
- Hollywood Sign
|
| 1086 |
+
- Kremlin
|
| 1087 |
+
- Red Square
|
| 1088 |
+
- Roman Forum
|
| 1089 |
+
- Saint Mark Basilica
|
| 1090 |
+
- Saint Vitus Ca- dral
|
| 1091 |
+
- Saint Basil Ca- dral
|
| 1092 |
+
- Temple of Heaven
|
| 1093 |
+
- Uffizi Gallery
|
| 1094 |
+
- USS Arizona Memorial
|
| 1095 |
+
- Zion National Park
|
| 1096 |
+
- Yosemite National Park
|
| 1097 |
+
- Grand Canyon National Park
|
| 1098 |
+
- Yellowstone National Park
|
| 1099 |
+
- Niagara Falls
|
| 1100 |
+
- Mount Everest
|
| 1101 |
+
- Victoria Falls
|
| 1102 |
+
- Bagan Archaeological Zone
|
| 1103 |
+
- Blue Lagoon
|
| 1104 |
+
- Cappadocia
|
| 1105 |
+
- Dead Sea
|
| 1106 |
+
- Grand Mosque of Mecca
|
| 1107 |
+
- Petra
|
| 1108 |
+
- Plitvice Lakes National Park
|
| 1109 |
+
- Preikestolen
|
| 1110 |
+
- Uluru
|
| 1111 |
+
- Wailing Wall
|
| 1112 |
+
- Wat Arun
|
| 1113 |
+
- Wawel Castle
|
| 1114 |
+
- Windmills of Kinderdijk
|
| 1115 |
+
- Alcatraz Island
|
| 1116 |
+
- Devil Tower National Monument
|
| 1117 |
+
- Edinburgh Castle
|
| 1118 |
+
- Great Ocean Road
|
| 1119 |
+
- Machu Picchu
|
| 1120 |
+
- Mount Rushmore
|
| 1121 |
+
- Ngorongoro Crater
|
| 1122 |
+
- Pompeii Archaeological Site
|
| 1123 |
+
- Potala Palace
|
| 1124 |
+
- Rock of Gibraltar
|
| 1125 |
+
- Seljalandsfoss waterfall
|
| 1126 |
+
- Stirling Castle
|
| 1127 |
+
- Ulm Minster
|
| 1128 |
+
- Valletta
|
| 1129 |
+
- Victoria Memorial
|
| 1130 |
+
- Volubilis Archaeological Site
|
| 1131 |
+
- Table Mountain
|
| 1132 |
+
- White Cliffs of Dover
|
| 1133 |
+
- Cango Caves
|
| 1134 |
+
- Ha Long Bay
|
| 1135 |
+
- Khajuraho Group of Monuments
|
| 1136 |
+
- Mount Fuji
|
| 1137 |
+
- Palais Garnier
|
| 1138 |
+
- Redwood National Park
|
| 1139 |
+
- Banaue Rice Terraces
|
| 1140 |
+
- Lake District National Park
|
| 1141 |
+
- Angkor Wat
|
| 1142 |
+
- Mont Blanc
|
| 1143 |
+
- Borobudur
|
| 1144 |
+
- Jeju Island
|
| 1145 |
+
- Pitons
|
| 1146 |
+
- Cusco
|
| 1147 |
+
- Tikal
|
| 1148 |
+
- Lofoten Islands
|
| 1149 |
+
- Amalfi Coast
|
| 1150 |
+
- Blue Mountains National Park
|
| 1151 |
+
camera:
|
| 1152 |
+
- Cam
|
| 1153 |
+
- Pix
|
| 1154 |
+
- Capture
|
| 1155 |
+
- Lens
|
| 1156 |
+
- Snap
|
| 1157 |
+
- Shutter
|
| 1158 |
+
- Frame
|
| 1159 |
+
- View
|
| 1160 |
+
- Scope
|
| 1161 |
+
- Shot
|
| 1162 |
+
- Vision
|
| 1163 |
+
- Focus
|
| 1164 |
+
- Zoom
|
| 1165 |
+
- Click
|
| 1166 |
+
- CaptureX
|
| 1167 |
+
- HD
|
| 1168 |
+
- Pro
|
| 1169 |
+
- Light
|
| 1170 |
+
- Steady
|
| 1171 |
+
- Motion
|
| 1172 |
+
- ShotX
|
| 1173 |
+
- VisionX
|
| 1174 |
+
- 360
|
| 1175 |
+
- Cam360
|
| 1176 |
+
- CamPro
|
| 1177 |
+
- Action
|
| 1178 |
+
- Sport
|
| 1179 |
+
- SportX
|
| 1180 |
+
- CapturePro
|
| 1181 |
+
- Capture360
|
| 1182 |
+
- CamAction
|
| 1183 |
+
- CamSport
|
| 1184 |
+
- CamProX
|
| 1185 |
+
- 360Pro
|
| 1186 |
+
- VisionHD
|
| 1187 |
+
- HDPro
|
| 1188 |
+
- CaptureHD
|
| 1189 |
+
- ScopePro
|
| 1190 |
+
- SteadyPro
|
| 1191 |
+
- MotionPro
|
| 1192 |
+
- ShotHD
|
| 1193 |
+
- ZoomHD
|
| 1194 |
+
- Capture360Pro
|
| 1195 |
+
- Cam360Pro
|
| 1196 |
+
- ActionX
|
| 1197 |
+
- SportPro
|
| 1198 |
+
- CaptureXPro
|
| 1199 |
+
- CamSportX
|
| 1200 |
+
- VisionXPro
|
| 1201 |
+
- 360X
|
| 1202 |
+
- Cam360X
|
| 1203 |
+
- CamPro360
|
| 1204 |
+
- CapturePro360
|
| 1205 |
+
- Vision360
|
| 1206 |
+
- HD360
|
| 1207 |
+
- Sport360
|
| 1208 |
+
- CamActionX
|
| 1209 |
+
- CaptureHDPro
|
| 1210 |
+
- ScopeHD
|
| 1211 |
+
- SteadyHD
|
| 1212 |
+
- MotionHD
|
| 1213 |
+
- ShotHDPro
|
| 1214 |
+
- ZoomHDPro
|
| 1215 |
+
- Capture360X
|
| 1216 |
+
- Cam360XPro
|
| 1217 |
+
- CamPro360X
|
| 1218 |
+
- CapturePro360X
|
| 1219 |
+
- Vision360X
|
| 1220 |
+
- HD360X
|
| 1221 |
+
- Sport360X
|
| 1222 |
+
- CamAction360
|
| 1223 |
+
- CaptureHD360
|
| 1224 |
+
- Scope360
|
| 1225 |
+
- Steady360
|
| 1226 |
+
- Motion360
|
| 1227 |
+
- ShotHD360
|
| 1228 |
+
- ZoomHD360
|
| 1229 |
+
- Capture360XPro
|
| 1230 |
+
- Cam360XPro360
|
| 1231 |
+
- CapturePro360XPro
|
| 1232 |
+
- Vision360XPro
|
| 1233 |
+
- HD360XPro
|
| 1234 |
+
- Sport360XPro
|
| 1235 |
+
- CamAction360X
|
| 1236 |
+
- CaptureHD360X
|
| 1237 |
+
- Scope360X
|
| 1238 |
+
- Steady360X
|
| 1239 |
+
- Motion360X
|
| 1240 |
+
- ShotHD360X
|
| 1241 |
+
- ZoomHD360X
|
| 1242 |
+
- Cam360Pro360X
|
| 1243 |
+
- CapturePro360XPro
|
| 1244 |
+
- HD360XPro360
|
| 1245 |
+
- Sport360XPro360
|
| 1246 |
+
- CaptureHD360XPro
|
| 1247 |
+
- Scope360XPro
|
| 1248 |
+
- Steady360XPro
|
| 1249 |
+
- Motion360XPro
|
| 1250 |
+
- ShotHD360XPro
|
| 1251 |
+
- ZoomHD360XPro
|
| 1252 |
+
landscape:
|
| 1253 |
+
- Alpine Mountain Landscape
|
| 1254 |
+
- Desert Oasis
|
| 1255 |
+
- Tropical Beach
|
| 1256 |
+
- Snowy Forest
|
| 1257 |
+
- Rocky Coastline
|
| 1258 |
+
- City Skyline
|
| 1259 |
+
- Countryside Sunset
|
| 1260 |
+
- Ocean Horizon
|
| 1261 |
+
- Foggy Forest
|
| 1262 |
+
- Mountain Peak
|
| 1263 |
+
- Autumn Forest
|
| 1264 |
+
- Summer Meadow
|
| 1265 |
+
- River Rapids
|
| 1266 |
+
- Jungle Canopy
|
| 1267 |
+
- Winter Wonderland
|
| 1268 |
+
- Sunset Over Mountains
|
| 1269 |
+
- Rural Farmstead
|
| 1270 |
+
- Cloudy Skyline
|
| 1271 |
+
- Coastal Cliffs
|
| 1272 |
+
- Volcanic Terrain
|
| 1273 |
+
- Canyon View
|
| 1274 |
+
- Green Hills
|
| 1275 |
+
- Rainforest Canopy
|
| 1276 |
+
- Winter Mountain Range
|
| 1277 |
+
- Beach Sunset
|
| 1278 |
+
- Starry Night Sky
|
| 1279 |
+
- Tropical Island
|
| 1280 |
+
- Cherry Blossom Garden
|
| 1281 |
+
- Autumn Lake
|
| 1282 |
+
- Northern Lights
|
| 1283 |
+
- Country Road
|
| 1284 |
+
- Foggy Mountains
|
| 1285 |
+
- Coastal Town
|
| 1286 |
+
- Abandoned Ruins
|
| 1287 |
+
- Palm Tree Oasis
|
| 1288 |
+
- Red Rock Canyon
|
| 1289 |
+
- Rolling Hills
|
| 1290 |
+
- Secluded Island
|
| 1291 |
+
- Snowy Mountain Pass
|
| 1292 |
+
- Rocky Desert
|
| 1293 |
+
- Sunflower Field
|
| 1294 |
+
- Frozen Lake
|
| 1295 |
+
- City Night Skyline
|
| 1296 |
+
- Canyon Oasis
|
| 1297 |
+
- Woodland Path
|
| 1298 |
+
- Mountain Lake
|
| 1299 |
+
- Seaside Lighthouse
|
| 1300 |
+
- Countryside Windmill
|
| 1301 |
+
- Volcano Eruption
|
| 1302 |
+
- Summer Lake
|
| 1303 |
+
- Forest Waterfall
|
| 1304 |
+
- Moonlit Ocean
|
| 1305 |
+
- Stormy Seascape
|
| 1306 |
+
- Winter Forest
|
| 1307 |
+
- Golden Fields
|
| 1308 |
+
- Countryside Village
|
| 1309 |
+
- Misty River
|
| 1310 |
+
- Cactus Desert
|
| 1311 |
+
- Rocky Mountain Range
|
| 1312 |
+
- Spring Blossom Meadow
|
| 1313 |
+
- Ocean Sunset
|
| 1314 |
+
- Rural Barn
|
| 1315 |
+
- Starry Skyline
|
| 1316 |
+
- Savannah Grasslands
|
| 1317 |
+
- Snowy Tundra
|
| 1318 |
+
- Beach Cabanas
|
| 1319 |
+
- Waterfall Pool
|
| 1320 |
+
- Misty Mountain View
|
| 1321 |
+
- Pine Forest
|
| 1322 |
+
- Coastal Sunset
|
| 1323 |
+
- Cherry Blossom Lane
|
| 1324 |
+
- Rocky Beach
|
| 1325 |
+
- Distant Waterfall
|
| 1326 |
+
- City Reflections
|
| 1327 |
+
- Arctic Tundra
|
| 1328 |
+
- Country Chapel
|
| 1329 |
+
- Tropical Island Bay
|
| 1330 |
+
- Autumn Vineyard
|
| 1331 |
+
- Winter Iceberg
|
| 1332 |
+
- Forest Bridge
|
| 1333 |
+
- Misty Ocean View
|
| 1334 |
+
- Countryside Cottage
|
| 1335 |
+
- Rustic Windmill
|
| 1336 |
+
- Fiery Sunset
|
| 1337 |
+
- Snowy Village
|
| 1338 |
+
- Rocky Stream
|
| 1339 |
+
- Sunflower Garden
|
| 1340 |
+
- Foggy Cityscape
|
| 1341 |
+
- Green Forest
|
| 1342 |
+
- Coastal Boardwalk
|
| 1343 |
+
- Desert Canyons
|
| 1344 |
+
- Mountain Cabin
|
| 1345 |
+
- Beach Pier
|
| 1346 |
+
- River Gorge
|
| 1347 |
+
- Rolling Meadows
|
| 1348 |
+
- Seaside Cliff
|
| 1349 |
+
- Urban Park
|
| 1350 |
+
- Snowy Wilderness
|
| 1351 |
+
- Sunset Lake
|
| 1352 |
+
- Tropical Waterfall
|
| 1353 |
+
emotion:
|
| 1354 |
+
- joy
|
| 1355 |
+
- love
|
| 1356 |
+
- anger
|
| 1357 |
+
- sadness
|
| 1358 |
+
- fear
|
| 1359 |
+
- surprise
|
| 1360 |
+
- disgust
|
| 1361 |
+
- excitement
|
| 1362 |
+
- peace
|
| 1363 |
+
- happiness
|
| 1364 |
+
- contentment
|
| 1365 |
+
- gratitude
|
| 1366 |
+
- admiration
|
| 1367 |
+
- interest
|
| 1368 |
+
- curiosity
|
| 1369 |
+
- amazement
|
| 1370 |
+
- awe
|
| 1371 |
+
- inspiration
|
| 1372 |
+
- hope
|
| 1373 |
+
- pride
|
| 1374 |
+
- guilt
|
| 1375 |
+
- shame
|
| 1376 |
+
- regret
|
| 1377 |
+
- envy
|
| 1378 |
+
- jealousy
|
| 1379 |
+
- frustration
|
| 1380 |
+
- irritation
|
| 1381 |
+
- annoyance
|
| 1382 |
+
- boredom
|
| 1383 |
+
- despair
|
| 1384 |
+
- loneliness
|
| 1385 |
+
- isolation
|
| 1386 |
+
- rejection
|
| 1387 |
+
- disappointment
|
| 1388 |
+
- betrayal
|
| 1389 |
+
- confusion
|
| 1390 |
+
- doubt
|
| 1391 |
+
- skepticism
|
| 1392 |
+
- surprise
|
| 1393 |
+
- astonishment
|
| 1394 |
+
- wonder
|
| 1395 |
+
- sympathy
|
| 1396 |
+
- empathy
|
| 1397 |
+
- compassion
|
| 1398 |
+
- kindness
|
| 1399 |
+
- generosity
|
| 1400 |
+
- forgiveness
|
| 1401 |
+
- acceptance
|
| 1402 |
+
- understanding
|
| 1403 |
+
- patience
|
| 1404 |
+
- perseverance
|
| 1405 |
+
- determination
|
| 1406 |
+
- confidence
|
| 1407 |
+
- courage
|
| 1408 |
+
- bravery
|
| 1409 |
+
- assertiveness
|
| 1410 |
+
- aggression
|
| 1411 |
+
- dominance
|
| 1412 |
+
- ambition
|
| 1413 |
+
- pride
|
| 1414 |
+
- arrogance
|
| 1415 |
+
- conceit
|
| 1416 |
+
- vanity
|
| 1417 |
+
- humor
|
| 1418 |
+
- sarcasm
|
| 1419 |
+
- irony
|
| 1420 |
+
- playfulness
|
| 1421 |
+
- whimsy
|
| 1422 |
+
- nostalgia
|
| 1423 |
+
- sentimentality
|
| 1424 |
+
- passion
|
| 1425 |
+
- lust
|
| 1426 |
+
- desire
|
| 1427 |
+
- longing
|
| 1428 |
+
- yearning
|
| 1429 |
+
- infatuation
|
| 1430 |
+
- obsession
|
| 1431 |
+
- addiction
|
| 1432 |
+
- compulsion
|
| 1433 |
+
- anxiety
|
| 1434 |
+
- stress
|
| 1435 |
+
- tension
|
| 1436 |
+
- panic
|
| 1437 |
+
- terror
|
| 1438 |
+
- horror
|
| 1439 |
+
- dread
|
| 1440 |
+
- apprehension
|
| 1441 |
+
- worry
|
| 1442 |
+
- concern
|
| 1443 |
+
- caution
|
| 1444 |
+
- vigilance
|
| 1445 |
+
- suspicion
|
| 1446 |
+
- paranoia
|
| 1447 |
+
- bewilderment
|
| 1448 |
+
- perplexity
|
| 1449 |
+
- astonishment
|
| 1450 |
+
- disbelief
|
| 1451 |
+
- incredulity
|
| 1452 |
+
- skepticism
|
| 1453 |
+
- surprise
|
index.html
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>Random Command Generator</title>
|
| 5 |
+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
| 6 |
+
<style>
|
| 7 |
+
.gradio-interface .input-row {
|
| 8 |
+
display: none;
|
| 9 |
+
}
|
| 10 |
+
.gradio-interface .output-row {
|
| 11 |
+
margin-bottom: 0;
|
| 12 |
+
}
|
| 13 |
+
</style>
|
| 14 |
+
</head>
|
| 15 |
+
<body>
|
| 16 |
+
<div class="container mt-5">
|
| 17 |
+
<div class="row justify-content-center align-items-center">
|
| 18 |
+
<div class="col-12 col-md-8 col-lg-6">
|
| 19 |
+
<img src="{{image}}" class="img-fluid mb-3">
|
| 20 |
+
<div id="gradio"></div>
|
| 21 |
+
</div>
|
| 22 |
+
</div>
|
| 23 |
+
</div>
|
| 24 |
+
<script src="https://cdn.jsdelivr.net/npm/@gradio/core@2.1.2/dist/gradio.min.js"></script>
|
| 25 |
+
<script>
|
| 26 |
+
const iface = gradio.Interface('http://localhost:5000', {inputs: null, outputs: 'text'});
|
| 27 |
+
iface.ready(() => {
|
| 28 |
+
const generateButton = iface.addButton({label: 'Generate New Command', backgroundColor: '#007bff'});
|
| 29 |
+
generateButton.on('click', () => {
|
| 30 |
+
iface.run();
|
| 31 |
+
});
|
| 32 |
+
});
|
| 33 |
+
iface.render(document.getElementById('gradio'));
|
| 34 |
+
</script>
|
| 35 |
+
</body>
|
| 36 |
+
</html>
|
test.yaml
ADDED
|
@@ -0,0 +1,1173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
command: a [imagetype],[GENRE],[EMOTION], [SCENE],[ACTORS] ,[LOCATION TYPE], [TAGS], [details_female], [colors] ,[lighting], [landmark], [camera], [landscape].
|
| 2 |
+
imagetype:
|
| 3 |
+
- Cinematic shot
|
| 4 |
+
- Aerial shot
|
| 5 |
+
- Slow-motion shot
|
| 6 |
+
- Timelapse shot
|
| 7 |
+
- Zoom shot
|
| 8 |
+
- Wide-angle shot
|
| 9 |
+
- Panoramic shot
|
| 10 |
+
- Portrait shot
|
| 11 |
+
- Landscape shot
|
| 12 |
+
- Macro shot
|
| 13 |
+
- Bird's eye view shot
|
| 14 |
+
- Overhead shot
|
| 15 |
+
- Underwater shot
|
| 16 |
+
- Low angle shot
|
| 17 |
+
- High angle shot
|
| 18 |
+
- Extreme close-up shot
|
| 19 |
+
- Medium shot
|
| 20 |
+
- Tracking shot
|
| 21 |
+
- Crane shot
|
| 22 |
+
- Steadicam shot
|
| 23 |
+
- Handheld shot
|
| 24 |
+
- Point of view shot
|
| 25 |
+
- Rack focus shot
|
| 26 |
+
- Split screen shot
|
| 27 |
+
- Vertigo shot
|
| 28 |
+
- Panning shot
|
| 29 |
+
- Tilt shot
|
| 30 |
+
- Dolly zoom shot
|
| 31 |
+
- Bokeh shot
|
| 32 |
+
- Chroma key shot
|
| 33 |
+
- Day to night shot
|
| 34 |
+
- Night to day shot
|
| 35 |
+
- Color grading shot
|
| 36 |
+
- Silhouette shot
|
| 37 |
+
- Lens flare shot
|
| 38 |
+
- Shallow depth of field shot
|
| 39 |
+
- Rear projection shot
|
| 40 |
+
- Soft focus shot
|
| 41 |
+
- Deep focus shot
|
| 42 |
+
- High contrast shot
|
| 43 |
+
- Low contrast shot
|
| 44 |
+
- Fish-eye shot
|
| 45 |
+
- Infrared shot
|
| 46 |
+
- Monochrome shot
|
| 47 |
+
- Sepia shot
|
| 48 |
+
- HDR shot
|
| 49 |
+
- Motion graphics shot
|
| 50 |
+
- Stop-motion shot
|
| 51 |
+
- Animation shot
|
| 52 |
+
- Virtual reality shot
|
| 53 |
+
|
| 54 |
+
GENRE:
|
| 55 |
+
- Action
|
| 56 |
+
- Comedy
|
| 57 |
+
- Drama
|
| 58 |
+
- Fantasy
|
| 59 |
+
- Horror
|
| 60 |
+
- Romance
|
| 61 |
+
- Thriller
|
| 62 |
+
- Crime
|
| 63 |
+
- Mystery
|
| 64 |
+
- Science fiction
|
| 65 |
+
- Historical fiction
|
| 66 |
+
- Epic
|
| 67 |
+
- Adventure
|
| 68 |
+
- Animation
|
| 69 |
+
- Biographical
|
| 70 |
+
- Black comedy
|
| 71 |
+
- Buddy comedy
|
| 72 |
+
- Coming-of-age
|
| 73 |
+
- Conspiracy
|
| 74 |
+
- Disaster
|
| 75 |
+
- Existential
|
| 76 |
+
- Exploitation
|
| 77 |
+
- Fairy tale
|
| 78 |
+
- Gangster
|
| 79 |
+
- Heist
|
| 80 |
+
- Mockumentary
|
| 81 |
+
- Musical
|
| 82 |
+
- Noir
|
| 83 |
+
- Paranormal
|
| 84 |
+
- Period
|
| 85 |
+
- Political
|
| 86 |
+
- Post-apocalyptic
|
| 87 |
+
- Psychological
|
| 88 |
+
- Road
|
| 89 |
+
- Satire
|
| 90 |
+
- Slasher
|
| 91 |
+
- Space opera
|
| 92 |
+
- Sports
|
| 93 |
+
- Spy
|
| 94 |
+
- Superhero
|
| 95 |
+
- Supernatural
|
| 96 |
+
- Surreal
|
| 97 |
+
- Teen
|
| 98 |
+
- War
|
| 99 |
+
- Western
|
| 100 |
+
- Zombie
|
| 101 |
+
- Cyberpunk
|
| 102 |
+
- Neo-noir
|
| 103 |
+
- Romantic comedy
|
| 104 |
+
- Historical fantasy
|
| 105 |
+
|
| 106 |
+
EMOTION:
|
| 107 |
+
- Angry
|
| 108 |
+
- Anxious
|
| 109 |
+
- Blissful
|
| 110 |
+
- Calm
|
| 111 |
+
- Cheerful
|
| 112 |
+
- Confident
|
| 113 |
+
- Contemplative
|
| 114 |
+
- Content
|
| 115 |
+
- Curious
|
| 116 |
+
- Defeated
|
| 117 |
+
- Delighted
|
| 118 |
+
- Depressed
|
| 119 |
+
- Determined
|
| 120 |
+
- Disappointed
|
| 121 |
+
- Disgusted
|
| 122 |
+
- Doubtful
|
| 123 |
+
- Ecstatic
|
| 124 |
+
- Energetic
|
| 125 |
+
- Enthusiastic
|
| 126 |
+
- Excited
|
| 127 |
+
- Exhausted
|
| 128 |
+
- Frustrated
|
| 129 |
+
- Grateful
|
| 130 |
+
- Grief
|
| 131 |
+
- Happy
|
| 132 |
+
- Hopeful
|
| 133 |
+
- Indifferent
|
| 134 |
+
- Inquisitive
|
| 135 |
+
- Inspired
|
| 136 |
+
- Irritated
|
| 137 |
+
- Joyful
|
| 138 |
+
- Lonely
|
| 139 |
+
- Melancholic
|
| 140 |
+
- Motivated
|
| 141 |
+
- Nostalgic
|
| 142 |
+
- Optimistic
|
| 143 |
+
- Overwhelmed
|
| 144 |
+
- Pensive
|
| 145 |
+
- Proud
|
| 146 |
+
- Relaxed
|
| 147 |
+
- Relieved
|
| 148 |
+
- Sad
|
| 149 |
+
- Satisfied
|
| 150 |
+
- Serene
|
| 151 |
+
- Stressed
|
| 152 |
+
- Surprised
|
| 153 |
+
- Tense
|
| 154 |
+
- Thankful
|
| 155 |
+
- Unhappy
|
| 156 |
+
- Worried
|
| 157 |
+
|
| 158 |
+
SCENE:
|
| 159 |
+
- Abandoned city
|
| 160 |
+
- Amusement park
|
| 161 |
+
- Art gallery
|
| 162 |
+
- Beach
|
| 163 |
+
- Bedroom
|
| 164 |
+
- Cafeteria
|
| 165 |
+
- Campsite
|
| 166 |
+
- Carnival
|
| 167 |
+
- Castle
|
| 168 |
+
- Catacombs
|
| 169 |
+
- Cave
|
| 170 |
+
- Classroom
|
| 171 |
+
- Construction site
|
| 172 |
+
- Cruise ship
|
| 173 |
+
- Deserted island
|
| 174 |
+
- Factory
|
| 175 |
+
- Farm
|
| 176 |
+
- Forest
|
| 177 |
+
- Hospital
|
| 178 |
+
- Hot air balloon
|
| 179 |
+
- Iceberg
|
| 180 |
+
- Jungle
|
| 181 |
+
- Library
|
| 182 |
+
- Lighthouse
|
| 183 |
+
- Mansion
|
| 184 |
+
- Marketplace
|
| 185 |
+
- Maze
|
| 186 |
+
- Museum
|
| 187 |
+
- Nightclub
|
| 188 |
+
- Office building
|
| 189 |
+
- Orphanage
|
| 190 |
+
- Park
|
| 191 |
+
- Prison
|
| 192 |
+
- Rainforest
|
| 193 |
+
- Rooftop
|
| 194 |
+
- School bus
|
| 195 |
+
- Ski resort
|
| 196 |
+
- Spa
|
| 197 |
+
- Spaceship
|
| 198 |
+
- Submarine
|
| 199 |
+
- Subway
|
| 200 |
+
- Supermarket
|
| 201 |
+
- Swimming pool
|
| 202 |
+
- Theater
|
| 203 |
+
- Tropical island
|
| 204 |
+
- Underwater cave
|
| 205 |
+
- University campus
|
| 206 |
+
- Volcano
|
| 207 |
+
- Warehouse
|
| 208 |
+
- Zoo
|
| 209 |
+
|
| 210 |
+
ACTORS:
|
| 211 |
+
- Actor
|
| 212 |
+
- Athlete
|
| 213 |
+
- Artist
|
| 214 |
+
- Baker
|
| 215 |
+
- Barista
|
| 216 |
+
- Bartender
|
| 217 |
+
- Blogger
|
| 218 |
+
- Bus driver
|
| 219 |
+
- Butcher
|
| 220 |
+
- Chef
|
| 221 |
+
- Clerk
|
| 222 |
+
- Dancer
|
| 223 |
+
- Designer
|
| 224 |
+
- Detective
|
| 225 |
+
- Doctor
|
| 226 |
+
- Electrician
|
| 227 |
+
- Engineer
|
| 228 |
+
- Entrepreneur
|
| 229 |
+
- Farmer
|
| 230 |
+
- Firefighter
|
| 231 |
+
- Fisherman
|
| 232 |
+
- Flight attendant
|
| 233 |
+
- Florist
|
| 234 |
+
- Gardener
|
| 235 |
+
- Hairdresser
|
| 236 |
+
- Inventor
|
| 237 |
+
- Journalist
|
| 238 |
+
- Lawyer
|
| 239 |
+
- Lifeguard
|
| 240 |
+
- Magician
|
| 241 |
+
- Mechanic
|
| 242 |
+
- Musician
|
| 243 |
+
- Nurse
|
| 244 |
+
- Painter
|
| 245 |
+
- Photographer
|
| 246 |
+
- Pilot
|
| 247 |
+
- Plumber
|
| 248 |
+
- Police officer
|
| 249 |
+
- Professor
|
| 250 |
+
- Scientist
|
| 251 |
+
- Singer
|
| 252 |
+
- Soldier
|
| 253 |
+
- Surgeon
|
| 254 |
+
- Teacher
|
| 255 |
+
- Tour guide
|
| 256 |
+
- Translator
|
| 257 |
+
- Veterinarian
|
| 258 |
+
- Waiter/waitress
|
| 259 |
+
- Writer
|
| 260 |
+
- Yoga instructor
|
| 261 |
+
|
| 262 |
+
LOCATION TYPE:
|
| 263 |
+
- Airport
|
| 264 |
+
- Aquarium
|
| 265 |
+
- Arcade
|
| 266 |
+
- Art studio
|
| 267 |
+
- Bar
|
| 268 |
+
- Barn
|
| 269 |
+
- Beach house
|
| 270 |
+
- Bookstore
|
| 271 |
+
- Bridge
|
| 272 |
+
- Bunker
|
| 273 |
+
- Cabin
|
| 274 |
+
- CafΓ©
|
| 275 |
+
- Castle
|
| 276 |
+
- Church
|
| 277 |
+
- Cinema
|
| 278 |
+
- City street
|
| 279 |
+
- Cliff
|
| 280 |
+
- Cottage
|
| 281 |
+
- Country road
|
| 282 |
+
- Courthouse
|
| 283 |
+
- Desert
|
| 284 |
+
- Dock
|
| 285 |
+
- Farmhouse
|
| 286 |
+
- Fire station
|
| 287 |
+
- Flea market
|
| 288 |
+
- Flower shop
|
| 289 |
+
- Gas station
|
| 290 |
+
- Golf course
|
| 291 |
+
- Harbor
|
| 292 |
+
- Hilltop
|
| 293 |
+
- Hospital
|
| 294 |
+
- Hotel room
|
| 295 |
+
- Ice rink
|
| 296 |
+
- Island
|
| 297 |
+
- Jail
|
| 298 |
+
- Jazz club
|
| 299 |
+
- Junkyard
|
| 300 |
+
- Lighthouse
|
| 301 |
+
- Mall
|
| 302 |
+
- Market
|
| 303 |
+
- Meadow
|
| 304 |
+
- Movie theater
|
| 305 |
+
- Museum
|
| 306 |
+
- Nightclub
|
| 307 |
+
- Office
|
| 308 |
+
- Pier
|
| 309 |
+
- Police station
|
| 310 |
+
- Railroad
|
| 311 |
+
- Restaurant
|
| 312 |
+
- Riverbank
|
| 313 |
+
TAGS:
|
| 314 |
+
- Adventure
|
| 315 |
+
- Alien
|
| 316 |
+
- Ancient
|
| 317 |
+
- Apocalyptic
|
| 318 |
+
- Artificial intelligence
|
| 319 |
+
- Bizarre
|
| 320 |
+
- Comedy
|
| 321 |
+
- Creepy
|
| 322 |
+
- Cyberpunk
|
| 323 |
+
- Dark
|
| 324 |
+
- Dystopian
|
| 325 |
+
- Eerie
|
| 326 |
+
- Enchanting
|
| 327 |
+
- Ethereal
|
| 328 |
+
- Experimental
|
| 329 |
+
- Futuristic
|
| 330 |
+
- Gothic
|
| 331 |
+
- Horror
|
| 332 |
+
- Intense
|
| 333 |
+
- Magical
|
| 334 |
+
- Mysterious
|
| 335 |
+
- Mythical
|
| 336 |
+
- Nature
|
| 337 |
+
- Neon
|
| 338 |
+
- Noir
|
| 339 |
+
- Otherworldly
|
| 340 |
+
- Post-apocalyptic
|
| 341 |
+
- Psychedelic
|
| 342 |
+
- Retro
|
| 343 |
+
- Romantic
|
| 344 |
+
- Sci-fi
|
| 345 |
+
- Surreal
|
| 346 |
+
- Supernatural
|
| 347 |
+
- Surrealism
|
| 348 |
+
- Time travel
|
| 349 |
+
- Thriller
|
| 350 |
+
- Underground
|
| 351 |
+
- Utopian
|
| 352 |
+
- Vibrant
|
| 353 |
+
- Vintage
|
| 354 |
+
- Virtual reality
|
| 355 |
+
- Weird
|
| 356 |
+
- Wonderland
|
| 357 |
+
- Zombie
|
| 358 |
+
- Action
|
| 359 |
+
- Fantasy
|
| 360 |
+
- Mystery
|
| 361 |
+
- Steampunk
|
| 362 |
+
- Comics
|
| 363 |
+
- Superhero
|
| 364 |
+
|
| 365 |
+
|
| 366 |
+
details_female:
|
| 367 |
+
- Bright Smile
|
| 368 |
+
- Rosy Cheeks
|
| 369 |
+
- Sparkling Eyes
|
| 370 |
+
- Glossy Lips
|
| 371 |
+
- Flowing Hair
|
| 372 |
+
- Delicate Jewelry
|
| 373 |
+
- Elegant Dress
|
| 374 |
+
- Glittering Nails
|
| 375 |
+
- Floral Accessories
|
| 376 |
+
- Soft Skin
|
| 377 |
+
- Freckles
|
| 378 |
+
- Dimples
|
| 379 |
+
- Glowing Skin
|
| 380 |
+
- Curled Eyelashes
|
| 381 |
+
- Shapely Brows
|
| 382 |
+
- Wavy Hair
|
| 383 |
+
- Radiant Complexion
|
| 384 |
+
- Luscious Curls
|
| 385 |
+
- Thin Bangs
|
| 386 |
+
- Thick Bangs
|
| 387 |
+
- Updo Hairstyle
|
| 388 |
+
- Loose Hairstyle
|
| 389 |
+
- Cute Bow
|
| 390 |
+
- Embroidered Scarf
|
| 391 |
+
- Oversized Sunglasses
|
| 392 |
+
- High Heels
|
| 393 |
+
- Frilly Socks
|
| 394 |
+
- Polka Dot Skirt
|
| 395 |
+
- Striped Shirt
|
| 396 |
+
- Chunky Boots
|
| 397 |
+
- Fluffy Coat
|
| 398 |
+
- Furry Hat
|
| 399 |
+
- Patterned Tights
|
| 400 |
+
- Flowy Skirt
|
| 401 |
+
- Puffy Sleeves
|
| 402 |
+
- Ruffled Dress
|
| 403 |
+
- Lace Trim
|
| 404 |
+
- Elegant Gloves
|
| 405 |
+
- Bow Tie
|
| 406 |
+
- Chic Beret
|
| 407 |
+
- Pointed Shoes
|
| 408 |
+
- Wide Brim Hat
|
| 409 |
+
- Embellished Purse
|
| 410 |
+
- Fea- red Hair Accessory
|
| 411 |
+
- Bohemian Jewelry
|
| 412 |
+
- Boho Chic Clothing
|
| 413 |
+
- Dainty Necklace
|
| 414 |
+
- Oversized Earrings
|
| 415 |
+
- Stylish Belt
|
| 416 |
+
- Ripped Jeans
|
| 417 |
+
- Lea- r Jacket
|
| 418 |
+
- Braided Hair
|
| 419 |
+
- Headband
|
| 420 |
+
- Peplum Top
|
| 421 |
+
- Statement Necklace
|
| 422 |
+
- Fur Trimmed Coat
|
| 423 |
+
- Fringe Details
|
| 424 |
+
- Cropped Top
|
| 425 |
+
- Off- Shoulder Dress
|
| 426 |
+
- Sheer Fabric
|
| 427 |
+
- Tulle Skirt
|
| 428 |
+
- Metallic Accents
|
| 429 |
+
- Embroidered Denim
|
| 430 |
+
- Lace- Up Boots
|
| 431 |
+
- High- Waisted Skirt
|
| 432 |
+
- Crop Flare Jeans
|
| 433 |
+
- Patterned Blouse
|
| 434 |
+
- Bell Sleeve Top
|
| 435 |
+
- Wide Leg Pants
|
| 436 |
+
- Pencil Skirt
|
| 437 |
+
- Pointed Toe Flats
|
| 438 |
+
- Floral Maxi Dress
|
| 439 |
+
- Bold Prints
|
| 440 |
+
- Bright Colors
|
| 441 |
+
- Matching Set
|
| 442 |
+
- Polished Nails
|
| 443 |
+
- Printed Scarf
|
| 444 |
+
- Knit Sweater
|
| 445 |
+
- Oversized Cardigan
|
| 446 |
+
- Fitted Blazer
|
| 447 |
+
- Layered Necklaces
|
| 448 |
+
- Printed Leggings
|
| 449 |
+
- Embellished Sandals
|
| 450 |
+
- Strappy Heels
|
| 451 |
+
- Printed Skirt
|
| 452 |
+
- Slouchy Boots
|
| 453 |
+
- Colored Denim
|
| 454 |
+
- Sporty Sneakers
|
| 455 |
+
- Crochet Details
|
| 456 |
+
- Boho Maxi Dress
|
| 457 |
+
- Sleek Ponytail
|
| 458 |
+
- Top Knot
|
| 459 |
+
- French Braid
|
| 460 |
+
- Elegant Chignon
|
| 461 |
+
- Braided Crown
|
| 462 |
+
- Classic Bun
|
| 463 |
+
- Half- Up Hairdo
|
| 464 |
+
- Side- Swept Bangs
|
| 465 |
+
- Braided Bangs
|
| 466 |
+
- Wispy
|
| 467 |
+
colors:
|
| 468 |
+
- Crimson
|
| 469 |
+
- Sky Blue
|
| 470 |
+
- Goldenrod
|
| 471 |
+
- Navy
|
| 472 |
+
- Lavender
|
| 473 |
+
- Olive
|
| 474 |
+
- Burnt Sienna
|
| 475 |
+
- Salmon
|
| 476 |
+
- Coral
|
| 477 |
+
- Aquamarine
|
| 478 |
+
- Slate
|
| 479 |
+
- Mauve
|
| 480 |
+
- Sienna
|
| 481 |
+
- Magenta
|
| 482 |
+
- Turquoise
|
| 483 |
+
- Plum
|
| 484 |
+
- Maroon
|
| 485 |
+
- Azure
|
| 486 |
+
- Beige
|
| 487 |
+
- Cobalt
|
| 488 |
+
- Peach
|
| 489 |
+
- Lilac
|
| 490 |
+
- Khaki
|
| 491 |
+
- Brick Red
|
| 492 |
+
- Teal
|
| 493 |
+
- Silver
|
| 494 |
+
- Mustard
|
| 495 |
+
- Violet
|
| 496 |
+
- Fuchsia
|
| 497 |
+
- Tan
|
| 498 |
+
- Indigo
|
| 499 |
+
- Bronze
|
| 500 |
+
- Olive Green
|
| 501 |
+
- Rose
|
| 502 |
+
- Chartreuse
|
| 503 |
+
- Burgundy
|
| 504 |
+
- Orchid
|
| 505 |
+
- Tangerine
|
| 506 |
+
- Turmeric
|
| 507 |
+
- Scarlet
|
| 508 |
+
- Chocolate
|
| 509 |
+
- Rust
|
| 510 |
+
- Eggplant
|
| 511 |
+
- Lemon
|
| 512 |
+
- Pine
|
| 513 |
+
- Rusty Orange
|
| 514 |
+
- Cream
|
| 515 |
+
- Baby Blue
|
| 516 |
+
- Deep Purple
|
| 517 |
+
- Powder Blue
|
| 518 |
+
- Lime
|
| 519 |
+
- Jade
|
| 520 |
+
- Ash
|
| 521 |
+
- Kelly Green
|
| 522 |
+
- Charcoal
|
| 523 |
+
- Khaki Green
|
| 524 |
+
- Royal Blue
|
| 525 |
+
- Sepia
|
| 526 |
+
- Light Pink
|
| 527 |
+
- Steel Blue
|
| 528 |
+
- Neon Green
|
| 529 |
+
- Bronze Brown
|
| 530 |
+
- Deep Blue
|
| 531 |
+
- Ivory
|
| 532 |
+
- Bright Red
|
| 533 |
+
- Dark Green
|
| 534 |
+
- Off- White
|
| 535 |
+
- Yellow Green
|
| 536 |
+
- Cinnamon
|
| 537 |
+
- Light Purple
|
| 538 |
+
- Aqua
|
| 539 |
+
- Muted Green
|
| 540 |
+
- Navy Blue
|
| 541 |
+
- Coral Pink
|
| 542 |
+
- Sand
|
| 543 |
+
- Slate Gray
|
| 544 |
+
- Olive Drab
|
| 545 |
+
- Deep Red
|
| 546 |
+
- Turquoise Blue
|
| 547 |
+
- Light Green
|
| 548 |
+
- Vermilion
|
| 549 |
+
- Mahogany
|
| 550 |
+
- Teal Blue
|
| 551 |
+
- Forest Green
|
| 552 |
+
- Salmon Pink
|
| 553 |
+
- Wheat
|
| 554 |
+
- Medium Blue
|
| 555 |
+
- Mint Green
|
| 556 |
+
- Garnet
|
| 557 |
+
- Gunmetal
|
| 558 |
+
- Light Gray
|
| 559 |
+
- Beige Brown
|
| 560 |
+
- Light Blue
|
| 561 |
+
- Grass Green
|
| 562 |
+
- Deep Pink
|
| 563 |
+
- Slate Blue
|
| 564 |
+
- Dark Brown
|
| 565 |
+
- Soft Pink
|
| 566 |
+
- Olive Brown
|
| 567 |
+
- Light Brown
|
| 568 |
+
lighting:
|
| 569 |
+
- Soft light
|
| 570 |
+
- Hard light
|
| 571 |
+
- Natural light
|
| 572 |
+
- Studio light
|
| 573 |
+
- Low key lighting
|
| 574 |
+
- High key lighting
|
| 575 |
+
- Rim light
|
| 576 |
+
- Side lighting
|
| 577 |
+
- Top lighting
|
| 578 |
+
- Bottom lighting
|
| 579 |
+
- Backlighting
|
| 580 |
+
- Front lighting
|
| 581 |
+
- Mood lighting
|
| 582 |
+
- Ambient lighting
|
| 583 |
+
- Colored lighting
|
| 584 |
+
- Directional lighting
|
| 585 |
+
- Diffused lighting
|
| 586 |
+
- Spot lighting
|
| 587 |
+
- Point source lighting
|
| 588 |
+
- Flood lighting
|
| 589 |
+
- Neon lighting
|
| 590 |
+
- Strobe lighting
|
| 591 |
+
- Candle light
|
| 592 |
+
- Fire light
|
| 593 |
+
- Torch light
|
| 594 |
+
- Overhead lighting
|
| 595 |
+
- Reflected light
|
| 596 |
+
- Shadow play
|
| 597 |
+
- Halogen lighting
|
| 598 |
+
- LED lighting
|
| 599 |
+
- Bright lighting
|
| 600 |
+
- Dim lighting
|
| 601 |
+
- Natural sunlight
|
| 602 |
+
- Sunrise lighting
|
| 603 |
+
- Sunset lighting
|
| 604 |
+
- Golden hour lighting
|
| 605 |
+
- Blue hour lighting
|
| 606 |
+
- Twilight lighting
|
| 607 |
+
- Moonlight
|
| 608 |
+
- Starlight
|
| 609 |
+
- Candlelit
|
| 610 |
+
- Sunrise/sunset lighting
|
| 611 |
+
- Foggy lighting
|
| 612 |
+
- Misty lighting
|
| 613 |
+
- Hazy lighting
|
| 614 |
+
- Rainy lighting
|
| 615 |
+
- Snowy lighting
|
| 616 |
+
- Stormy lighting
|
| 617 |
+
- Thunderstorm lighting
|
| 618 |
+
- Cloudy lighting
|
| 619 |
+
- Sunny lighting
|
| 620 |
+
- Bright and sunny lighting
|
| 621 |
+
- Clear sky lighting
|
| 622 |
+
- Dappled lighting
|
| 623 |
+
- Softbox lighting
|
| 624 |
+
- Umbrella lighting
|
| 625 |
+
- Beauty lighting
|
| 626 |
+
- Glamour lighting
|
| 627 |
+
- Vintage lighting
|
| 628 |
+
- Film noir lighting
|
| 629 |
+
- Fantasy lighting
|
| 630 |
+
- Science fiction lighting
|
| 631 |
+
- Cyberpunk lighting
|
| 632 |
+
- Steampunk lighting
|
| 633 |
+
- Gothic lighting
|
| 634 |
+
- Horror lighting
|
| 635 |
+
- Suspenseful lighting
|
| 636 |
+
- Romantic lighting
|
| 637 |
+
- Dreamy lighting
|
| 638 |
+
- Magical lighting
|
| 639 |
+
- Whimsical lighting
|
| 640 |
+
- Playful lighting
|
| 641 |
+
- Happy lighting
|
| 642 |
+
- Cheerful lighting
|
| 643 |
+
- Joyful lighting
|
| 644 |
+
- Peaceful lighting
|
| 645 |
+
- Calm lighting
|
| 646 |
+
- Relaxing lighting
|
| 647 |
+
- Serene lighting
|
| 648 |
+
- Tranquil lighting
|
| 649 |
+
- Mystical lighting
|
| 650 |
+
- E- real lighting
|
| 651 |
+
- Moody lighting
|
| 652 |
+
- Brooding lighting
|
| 653 |
+
- Mysterious lighting
|
| 654 |
+
- Enigmatic lighting
|
| 655 |
+
- Thought- provoking lighting
|
| 656 |
+
- Inspiring lighting
|
| 657 |
+
- Motivational lighting
|
| 658 |
+
- Energetic lighting
|
| 659 |
+
- Dynamic lighting
|
| 660 |
+
- Vibrant lighting
|
| 661 |
+
- Bold lighting
|
| 662 |
+
- Dramatic lighting
|
| 663 |
+
- Intense lighting
|
| 664 |
+
- Fiery lighting
|
| 665 |
+
- Cool lighting
|
| 666 |
+
- Futuristic lighting
|
| 667 |
+
- Cyber lighting
|
| 668 |
+
- Geometric lighting
|
| 669 |
+
- cinematic lighting
|
| 670 |
+
- Bright
|
| 671 |
+
- Dim
|
| 672 |
+
- Shadow
|
| 673 |
+
- Backlight
|
| 674 |
+
- Side light
|
| 675 |
+
- Natural light
|
| 676 |
+
- Artificial light
|
| 677 |
+
- Candlelight
|
| 678 |
+
- Sunrise
|
| 679 |
+
- Sunset
|
| 680 |
+
- Golden Hour
|
| 681 |
+
- Blue Hour
|
| 682 |
+
- Overhead light
|
| 683 |
+
- Spotlights
|
| 684 |
+
- Fluorescent
|
| 685 |
+
- Neon
|
| 686 |
+
- Colored light
|
| 687 |
+
- Soft light
|
| 688 |
+
- Hard light
|
| 689 |
+
- Rim light
|
| 690 |
+
- Top light
|
| 691 |
+
- Bottom light
|
| 692 |
+
- Silhouette
|
| 693 |
+
- Lens flare
|
| 694 |
+
- Bokeh
|
| 695 |
+
- Firelight
|
| 696 |
+
- Moonlight
|
| 697 |
+
- Starlight
|
| 698 |
+
- Storm light
|
| 699 |
+
- Lightning
|
| 700 |
+
- Haze
|
| 701 |
+
- Misty light
|
| 702 |
+
- Foggy light
|
| 703 |
+
- Cloudy light
|
| 704 |
+
- Rainy light
|
| 705 |
+
- Snowy light
|
| 706 |
+
- Sunny light
|
| 707 |
+
- Gloomy light
|
| 708 |
+
- Moody light
|
| 709 |
+
- Dramatic light
|
| 710 |
+
- Mysterious light
|
| 711 |
+
- Romantic light
|
| 712 |
+
- E- real light
|
| 713 |
+
- Heavenly light
|
| 714 |
+
- Angelic light
|
| 715 |
+
- Divine light
|
| 716 |
+
- Hellish light
|
| 717 |
+
- Sinister light
|
| 718 |
+
- Spooky light
|
| 719 |
+
- Halloween light
|
| 720 |
+
- Festive light
|
| 721 |
+
- Christmas light
|
| 722 |
+
- Holiday light
|
| 723 |
+
- Easter light
|
| 724 |
+
- Spring light
|
| 725 |
+
- Summer light
|
| 726 |
+
- Autumn light
|
| 727 |
+
- Winter light
|
| 728 |
+
- Beach light
|
| 729 |
+
- Ocean light
|
| 730 |
+
- Underwater light
|
| 731 |
+
- Forest light
|
| 732 |
+
- Jungle light
|
| 733 |
+
- Desert light
|
| 734 |
+
- Mountain light
|
| 735 |
+
- City light
|
| 736 |
+
- Urban light
|
| 737 |
+
- Rural light
|
| 738 |
+
- Countryside light
|
| 739 |
+
- Historical light
|
| 740 |
+
- Vintage light
|
| 741 |
+
- Retro light
|
| 742 |
+
- Futuristic light
|
| 743 |
+
- Sci- fi light
|
| 744 |
+
- Cyberpunk light
|
| 745 |
+
- Steampunk light
|
| 746 |
+
- Gothic light
|
| 747 |
+
- Renaissance light
|
| 748 |
+
- Baroque light
|
| 749 |
+
- Classical light
|
| 750 |
+
- Modern light
|
| 751 |
+
- Contemporary light
|
| 752 |
+
- Minimalist light
|
| 753 |
+
- Abstract light
|
| 754 |
+
- Realistic light
|
| 755 |
+
- Surreal light
|
| 756 |
+
- Dreamy light
|
| 757 |
+
- Fantasy light
|
| 758 |
+
- Mythical light
|
| 759 |
+
- Magical light
|
| 760 |
+
- Enchanted light
|
| 761 |
+
- Fairytale light
|
| 762 |
+
- Whimsical light
|
| 763 |
+
- Playful light
|
| 764 |
+
- Serious light
|
| 765 |
+
- Happy light
|
| 766 |
+
- Sad light
|
| 767 |
+
- Nostalgic light
|
| 768 |
+
- Hopeful light
|
| 769 |
+
- Inspiring light
|
| 770 |
+
landmark:
|
| 771 |
+
- Louvre Museum
|
| 772 |
+
- Colosseum
|
| 773 |
+
- Eiffel Tower
|
| 774 |
+
- Taj Mahal
|
| 775 |
+
- Great Wall of China
|
| 776 |
+
- Statue of Liberty
|
| 777 |
+
- Big Ben Clock Tower
|
| 778 |
+
- Golden Gate Bridge
|
| 779 |
+
- Sydney Opera House
|
| 780 |
+
- Vatican City
|
| 781 |
+
- Palace of Versailles
|
| 782 |
+
- Sistine Chapel
|
| 783 |
+
- Christ - Redeemer statue
|
| 784 |
+
- Arc de Triomphe
|
| 785 |
+
- Burj Khalifa
|
| 786 |
+
- ChΓ’teau de Chambord
|
| 787 |
+
- Machu Picchu
|
| 788 |
+
- Saint Peter Square
|
| 789 |
+
- Tower Bridge
|
| 790 |
+
- Neuschwanstein Castle
|
| 791 |
+
- Acropolis
|
| 792 |
+
- Mont Saint- Michel
|
| 793 |
+
- Charles Bridge
|
| 794 |
+
- Westminster Abbey
|
| 795 |
+
- Palace of Westminster
|
| 796 |
+
- Petronas Twin Towers
|
| 797 |
+
- Alhambra
|
| 798 |
+
- Leaning Tower of Pisa
|
| 799 |
+
- Tower of London
|
| 800 |
+
- Sagrada Familia
|
| 801 |
+
- Brandenburg Gate
|
| 802 |
+
- Forbidden City
|
| 803 |
+
- Golden Temple
|
| 804 |
+
- Great Sphinx of Giza
|
| 805 |
+
- Hollywood Sign
|
| 806 |
+
- Kremlin
|
| 807 |
+
- Red Square
|
| 808 |
+
- Roman Forum
|
| 809 |
+
- Saint Mark Basilica
|
| 810 |
+
- Saint Vitus Ca- dral
|
| 811 |
+
- Saint Basil Ca- dral
|
| 812 |
+
- Temple of Heaven
|
| 813 |
+
- Uffizi Gallery
|
| 814 |
+
- USS Arizona Memorial
|
| 815 |
+
- Zion National Park
|
| 816 |
+
- Yosemite National Park
|
| 817 |
+
- Grand Canyon National Park
|
| 818 |
+
- Yellowstone National Park
|
| 819 |
+
- Niagara Falls
|
| 820 |
+
- Mount Everest
|
| 821 |
+
- Victoria Falls
|
| 822 |
+
- Bagan Archaeological Zone
|
| 823 |
+
- Blue Lagoon
|
| 824 |
+
- Cappadocia
|
| 825 |
+
- Dead Sea
|
| 826 |
+
- Grand Mosque of Mecca
|
| 827 |
+
- Petra
|
| 828 |
+
- Plitvice Lakes National Park
|
| 829 |
+
- Preikestolen
|
| 830 |
+
- Uluru
|
| 831 |
+
- Wailing Wall
|
| 832 |
+
- Wat Arun
|
| 833 |
+
- Wawel Castle
|
| 834 |
+
- Windmills of Kinderdijk
|
| 835 |
+
- Alcatraz Island
|
| 836 |
+
- Devil Tower National Monument
|
| 837 |
+
- Edinburgh Castle
|
| 838 |
+
- Great Ocean Road
|
| 839 |
+
- Machu Picchu
|
| 840 |
+
- Mount Rushmore
|
| 841 |
+
- Ngorongoro Crater
|
| 842 |
+
- Pompeii Archaeological Site
|
| 843 |
+
- Potala Palace
|
| 844 |
+
- Rock of Gibraltar
|
| 845 |
+
- Seljalandsfoss waterfall
|
| 846 |
+
- Stirling Castle
|
| 847 |
+
- Ulm Minster
|
| 848 |
+
- Valletta
|
| 849 |
+
- Victoria Memorial
|
| 850 |
+
- Volubilis Archaeological Site
|
| 851 |
+
- Table Mountain
|
| 852 |
+
- White Cliffs of Dover
|
| 853 |
+
- Cango Caves
|
| 854 |
+
- Ha Long Bay
|
| 855 |
+
- Khajuraho Group of Monuments
|
| 856 |
+
- Mount Fuji
|
| 857 |
+
- Palais Garnier
|
| 858 |
+
- Redwood National Park
|
| 859 |
+
- Banaue Rice Terraces
|
| 860 |
+
- Lake District National Park
|
| 861 |
+
- Angkor Wat
|
| 862 |
+
- Mont Blanc
|
| 863 |
+
- Borobudur
|
| 864 |
+
- Jeju Island
|
| 865 |
+
- Pitons
|
| 866 |
+
- Cusco
|
| 867 |
+
- Tikal
|
| 868 |
+
- Lofoten Islands
|
| 869 |
+
- Amalfi Coast
|
| 870 |
+
- Blue Mountains National Park
|
| 871 |
+
camera:
|
| 872 |
+
- Cam
|
| 873 |
+
- Pix
|
| 874 |
+
- Capture
|
| 875 |
+
- Lens
|
| 876 |
+
- Snap
|
| 877 |
+
- Shutter
|
| 878 |
+
- Frame
|
| 879 |
+
- View
|
| 880 |
+
- Scope
|
| 881 |
+
- Shot
|
| 882 |
+
- Vision
|
| 883 |
+
- Focus
|
| 884 |
+
- Zoom
|
| 885 |
+
- Click
|
| 886 |
+
- CaptureX
|
| 887 |
+
- HD
|
| 888 |
+
- Pro
|
| 889 |
+
- Light
|
| 890 |
+
- Steady
|
| 891 |
+
- Motion
|
| 892 |
+
- ShotX
|
| 893 |
+
- VisionX
|
| 894 |
+
- 360
|
| 895 |
+
- Cam360
|
| 896 |
+
- CamPro
|
| 897 |
+
- Action
|
| 898 |
+
- Sport
|
| 899 |
+
- SportX
|
| 900 |
+
- CapturePro
|
| 901 |
+
- Capture360
|
| 902 |
+
- CamAction
|
| 903 |
+
- CamSport
|
| 904 |
+
- CamProX
|
| 905 |
+
- 360Pro
|
| 906 |
+
- VisionHD
|
| 907 |
+
- HDPro
|
| 908 |
+
- CaptureHD
|
| 909 |
+
- ScopePro
|
| 910 |
+
- SteadyPro
|
| 911 |
+
- MotionPro
|
| 912 |
+
- ShotHD
|
| 913 |
+
- ZoomHD
|
| 914 |
+
- Capture360Pro
|
| 915 |
+
- Cam360Pro
|
| 916 |
+
- ActionX
|
| 917 |
+
- SportPro
|
| 918 |
+
- CaptureXPro
|
| 919 |
+
- CamSportX
|
| 920 |
+
- VisionXPro
|
| 921 |
+
- 360X
|
| 922 |
+
- Cam360X
|
| 923 |
+
- CamPro360
|
| 924 |
+
- CapturePro360
|
| 925 |
+
- Vision360
|
| 926 |
+
- HD360
|
| 927 |
+
- Sport360
|
| 928 |
+
- CamActionX
|
| 929 |
+
- CaptureHDPro
|
| 930 |
+
- ScopeHD
|
| 931 |
+
- SteadyHD
|
| 932 |
+
- MotionHD
|
| 933 |
+
- ShotHDPro
|
| 934 |
+
- ZoomHDPro
|
| 935 |
+
- Capture360X
|
| 936 |
+
- Cam360XPro
|
| 937 |
+
- CamPro360X
|
| 938 |
+
- CapturePro360X
|
| 939 |
+
- Vision360X
|
| 940 |
+
- HD360X
|
| 941 |
+
- Sport360X
|
| 942 |
+
- CamAction360
|
| 943 |
+
- CaptureHD360
|
| 944 |
+
- Scope360
|
| 945 |
+
- Steady360
|
| 946 |
+
- Motion360
|
| 947 |
+
- ShotHD360
|
| 948 |
+
- ZoomHD360
|
| 949 |
+
- Capture360XPro
|
| 950 |
+
- Cam360XPro360
|
| 951 |
+
- CapturePro360XPro
|
| 952 |
+
- Vision360XPro
|
| 953 |
+
- HD360XPro
|
| 954 |
+
- Sport360XPro
|
| 955 |
+
- CamAction360X
|
| 956 |
+
- CaptureHD360X
|
| 957 |
+
- Scope360X
|
| 958 |
+
- Steady360X
|
| 959 |
+
- Motion360X
|
| 960 |
+
- ShotHD360X
|
| 961 |
+
- ZoomHD360X
|
| 962 |
+
- Cam360Pro360X
|
| 963 |
+
- CapturePro360XPro
|
| 964 |
+
- HD360XPro360
|
| 965 |
+
- Sport360XPro360
|
| 966 |
+
- CaptureHD360XPro
|
| 967 |
+
- Scope360XPro
|
| 968 |
+
- Steady360XPro
|
| 969 |
+
- Motion360XPro
|
| 970 |
+
- ShotHD360XPro
|
| 971 |
+
- ZoomHD360XPro
|
| 972 |
+
landscape:
|
| 973 |
+
- Alpine Mountain Landscape
|
| 974 |
+
- Desert Oasis
|
| 975 |
+
- Tropical Beach
|
| 976 |
+
- Snowy Forest
|
| 977 |
+
- Rocky Coastline
|
| 978 |
+
- City Skyline
|
| 979 |
+
- Countryside Sunset
|
| 980 |
+
- Ocean Horizon
|
| 981 |
+
- Foggy Forest
|
| 982 |
+
- Mountain Peak
|
| 983 |
+
- Autumn Forest
|
| 984 |
+
- Summer Meadow
|
| 985 |
+
- River Rapids
|
| 986 |
+
- Jungle Canopy
|
| 987 |
+
- Winter Wonderland
|
| 988 |
+
- Sunset Over Mountains
|
| 989 |
+
- Rural Farmstead
|
| 990 |
+
- Cloudy Skyline
|
| 991 |
+
- Coastal Cliffs
|
| 992 |
+
- Volcanic Terrain
|
| 993 |
+
- Canyon View
|
| 994 |
+
- Green Hills
|
| 995 |
+
- Rainforest Canopy
|
| 996 |
+
- Winter Mountain Range
|
| 997 |
+
- Beach Sunset
|
| 998 |
+
- Starry Night Sky
|
| 999 |
+
- Tropical Island
|
| 1000 |
+
- Cherry Blossom Garden
|
| 1001 |
+
- Autumn Lake
|
| 1002 |
+
- Northern Lights
|
| 1003 |
+
- Country Road
|
| 1004 |
+
- Foggy Mountains
|
| 1005 |
+
- Coastal Town
|
| 1006 |
+
- Abandoned Ruins
|
| 1007 |
+
- Palm Tree Oasis
|
| 1008 |
+
- Red Rock Canyon
|
| 1009 |
+
- Rolling Hills
|
| 1010 |
+
- Secluded Island
|
| 1011 |
+
- Snowy Mountain Pass
|
| 1012 |
+
- Rocky Desert
|
| 1013 |
+
- Sunflower Field
|
| 1014 |
+
- Frozen Lake
|
| 1015 |
+
- City Night Skyline
|
| 1016 |
+
- Canyon Oasis
|
| 1017 |
+
- Woodland Path
|
| 1018 |
+
- Mountain Lake
|
| 1019 |
+
- Seaside Lighthouse
|
| 1020 |
+
- Countryside Windmill
|
| 1021 |
+
- Volcano Eruption
|
| 1022 |
+
- Summer Lake
|
| 1023 |
+
- Forest Waterfall
|
| 1024 |
+
- Moonlit Ocean
|
| 1025 |
+
- Stormy Seascape
|
| 1026 |
+
- Winter Forest
|
| 1027 |
+
- Golden Fields
|
| 1028 |
+
- Countryside Village
|
| 1029 |
+
- Misty River
|
| 1030 |
+
- Cactus Desert
|
| 1031 |
+
- Rocky Mountain Range
|
| 1032 |
+
- Spring Blossom Meadow
|
| 1033 |
+
- Ocean Sunset
|
| 1034 |
+
- Rural Barn
|
| 1035 |
+
- Starry Skyline
|
| 1036 |
+
- Savannah Grasslands
|
| 1037 |
+
- Snowy Tundra
|
| 1038 |
+
- Beach Cabanas
|
| 1039 |
+
- Waterfall Pool
|
| 1040 |
+
- Misty Mountain View
|
| 1041 |
+
- Pine Forest
|
| 1042 |
+
- Coastal Sunset
|
| 1043 |
+
- Cherry Blossom Lane
|
| 1044 |
+
- Rocky Beach
|
| 1045 |
+
- Distant Waterfall
|
| 1046 |
+
- City Reflections
|
| 1047 |
+
- Arctic Tundra
|
| 1048 |
+
- Country Chapel
|
| 1049 |
+
- Tropical Island Bay
|
| 1050 |
+
- Autumn Vineyard
|
| 1051 |
+
- Winter Iceberg
|
| 1052 |
+
- Forest Bridge
|
| 1053 |
+
- Misty Ocean View
|
| 1054 |
+
- Countryside Cottage
|
| 1055 |
+
- Rustic Windmill
|
| 1056 |
+
- Fiery Sunset
|
| 1057 |
+
- Snowy Village
|
| 1058 |
+
- Rocky Stream
|
| 1059 |
+
- Sunflower Garden
|
| 1060 |
+
- Foggy Cityscape
|
| 1061 |
+
- Green Forest
|
| 1062 |
+
- Coastal Boardwalk
|
| 1063 |
+
- Desert Canyons
|
| 1064 |
+
- Mountain Cabin
|
| 1065 |
+
- Beach Pier
|
| 1066 |
+
- River Gorge
|
| 1067 |
+
- Rolling Meadows
|
| 1068 |
+
- Seaside Cliff
|
| 1069 |
+
- Urban Park
|
| 1070 |
+
- Snowy Wilderness
|
| 1071 |
+
- Sunset Lake
|
| 1072 |
+
- Tropical Waterfall
|
| 1073 |
+
emotion:
|
| 1074 |
+
- joy
|
| 1075 |
+
- love
|
| 1076 |
+
- anger
|
| 1077 |
+
- sadness
|
| 1078 |
+
- fear
|
| 1079 |
+
- surprise
|
| 1080 |
+
- disgust
|
| 1081 |
+
- excitement
|
| 1082 |
+
- peace
|
| 1083 |
+
- happiness
|
| 1084 |
+
- contentment
|
| 1085 |
+
- gratitude
|
| 1086 |
+
- admiration
|
| 1087 |
+
- interest
|
| 1088 |
+
- curiosity
|
| 1089 |
+
- amazement
|
| 1090 |
+
- awe
|
| 1091 |
+
- inspiration
|
| 1092 |
+
- hope
|
| 1093 |
+
- pride
|
| 1094 |
+
- guilt
|
| 1095 |
+
- shame
|
| 1096 |
+
- regret
|
| 1097 |
+
- envy
|
| 1098 |
+
- jealousy
|
| 1099 |
+
- frustration
|
| 1100 |
+
- irritation
|
| 1101 |
+
- annoyance
|
| 1102 |
+
- boredom
|
| 1103 |
+
- despair
|
| 1104 |
+
- loneliness
|
| 1105 |
+
- isolation
|
| 1106 |
+
- rejection
|
| 1107 |
+
- disappointment
|
| 1108 |
+
- betrayal
|
| 1109 |
+
- confusion
|
| 1110 |
+
- doubt
|
| 1111 |
+
- skepticism
|
| 1112 |
+
- surprise
|
| 1113 |
+
- astonishment
|
| 1114 |
+
- wonder
|
| 1115 |
+
- sympathy
|
| 1116 |
+
- empathy
|
| 1117 |
+
- compassion
|
| 1118 |
+
- kindness
|
| 1119 |
+
- generosity
|
| 1120 |
+
- forgiveness
|
| 1121 |
+
- acceptance
|
| 1122 |
+
- understanding
|
| 1123 |
+
- patience
|
| 1124 |
+
- perseverance
|
| 1125 |
+
- determination
|
| 1126 |
+
- confidence
|
| 1127 |
+
- courage
|
| 1128 |
+
- bravery
|
| 1129 |
+
- assertiveness
|
| 1130 |
+
- aggression
|
| 1131 |
+
- dominance
|
| 1132 |
+
- ambition
|
| 1133 |
+
- pride
|
| 1134 |
+
- arrogance
|
| 1135 |
+
- conceit
|
| 1136 |
+
- vanity
|
| 1137 |
+
- humor
|
| 1138 |
+
- sarcasm
|
| 1139 |
+
- irony
|
| 1140 |
+
- playfulness
|
| 1141 |
+
- whimsy
|
| 1142 |
+
- nostalgia
|
| 1143 |
+
- sentimentality
|
| 1144 |
+
- passion
|
| 1145 |
+
- lust
|
| 1146 |
+
- desire
|
| 1147 |
+
- longing
|
| 1148 |
+
- yearning
|
| 1149 |
+
- infatuation
|
| 1150 |
+
- obsession
|
| 1151 |
+
- addiction
|
| 1152 |
+
- compulsion
|
| 1153 |
+
- anxiety
|
| 1154 |
+
- stress
|
| 1155 |
+
- tension
|
| 1156 |
+
- panic
|
| 1157 |
+
- terror
|
| 1158 |
+
- horror
|
| 1159 |
+
- dread
|
| 1160 |
+
- apprehension
|
| 1161 |
+
- worry
|
| 1162 |
+
- concern
|
| 1163 |
+
- caution
|
| 1164 |
+
- vigilance
|
| 1165 |
+
- suspicion
|
| 1166 |
+
- paranoia
|
| 1167 |
+
- bewilderment
|
| 1168 |
+
- perplexity
|
| 1169 |
+
- astonishment
|
| 1170 |
+
- disbelief
|
| 1171 |
+
- incredulity
|
| 1172 |
+
- skepticism
|
| 1173 |
+
- surprise
|