Upload folder using huggingface_hub
Browse files- RDXL-V1.safetensors +3 -0
- model_index.json +41 -0
- scheduler/scheduler_config.json +22 -0
- text_encoder/config.json +24 -0
- text_encoder/model.safetensors +3 -0
- text_encoder_2/config.json +24 -0
- text_encoder_2/model.safetensors +3 -0
- tokenizer/merges.txt +0 -0
- tokenizer/special_tokens_map.json +30 -0
- tokenizer/tokenizer_config.json +30 -0
- tokenizer/vocab.json +0 -0
- tokenizer_2/merges.txt +0 -0
- tokenizer_2/special_tokens_map.json +24 -0
- tokenizer_2/tokenizer_config.json +38 -0
- tokenizer_2/vocab.json +0 -0
- unet/config.json +72 -0
- unet/diffusion_pytorch_model.safetensors +3 -0
- vae/config.json +31 -0
- vae/diffusion_pytorch_model.safetensors +3 -0
- wildcard/character_r1.txt +401 -0
RDXL-V1.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:006df16788feacd0701a0ca41dcd11167b90a0008b02b62e838364517e84057f
|
| 3 |
+
size 6938041810
|
model_index.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "StableDiffusionXLPipeline",
|
| 3 |
+
"_diffusers_version": "0.25.0",
|
| 4 |
+
"feature_extractor": [
|
| 5 |
+
null,
|
| 6 |
+
null
|
| 7 |
+
],
|
| 8 |
+
"force_zeros_for_empty_prompt": true,
|
| 9 |
+
"image_encoder": [
|
| 10 |
+
null,
|
| 11 |
+
null
|
| 12 |
+
],
|
| 13 |
+
"scheduler": [
|
| 14 |
+
"diffusers",
|
| 15 |
+
"EulerDiscreteScheduler"
|
| 16 |
+
],
|
| 17 |
+
"text_encoder": [
|
| 18 |
+
"transformers",
|
| 19 |
+
"CLIPTextModel"
|
| 20 |
+
],
|
| 21 |
+
"text_encoder_2": [
|
| 22 |
+
"transformers",
|
| 23 |
+
"CLIPTextModelWithProjection"
|
| 24 |
+
],
|
| 25 |
+
"tokenizer": [
|
| 26 |
+
"transformers",
|
| 27 |
+
"CLIPTokenizer"
|
| 28 |
+
],
|
| 29 |
+
"tokenizer_2": [
|
| 30 |
+
"transformers",
|
| 31 |
+
"CLIPTokenizer"
|
| 32 |
+
],
|
| 33 |
+
"unet": [
|
| 34 |
+
"diffusers",
|
| 35 |
+
"UNet2DConditionModel"
|
| 36 |
+
],
|
| 37 |
+
"vae": [
|
| 38 |
+
"diffusers",
|
| 39 |
+
"AutoencoderKL"
|
| 40 |
+
]
|
| 41 |
+
}
|
scheduler/scheduler_config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "EulerDiscreteScheduler",
|
| 3 |
+
"_diffusers_version": "0.25.0",
|
| 4 |
+
"beta_end": 0.012,
|
| 5 |
+
"beta_schedule": "scaled_linear",
|
| 6 |
+
"beta_start": 0.00085,
|
| 7 |
+
"clip_sample": false,
|
| 8 |
+
"interpolation_type": "linear",
|
| 9 |
+
"num_train_timesteps": 1000,
|
| 10 |
+
"prediction_type": "epsilon",
|
| 11 |
+
"rescale_betas_zero_snr": false,
|
| 12 |
+
"sample_max_value": 1.0,
|
| 13 |
+
"set_alpha_to_one": false,
|
| 14 |
+
"sigma_max": null,
|
| 15 |
+
"sigma_min": null,
|
| 16 |
+
"skip_prk_steps": true,
|
| 17 |
+
"steps_offset": 1,
|
| 18 |
+
"timestep_spacing": "leading",
|
| 19 |
+
"timestep_type": "discrete",
|
| 20 |
+
"trained_betas": null,
|
| 21 |
+
"use_karras_sigmas": false
|
| 22 |
+
}
|
text_encoder/config.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"CLIPTextModel"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 0,
|
| 7 |
+
"dropout": 0.0,
|
| 8 |
+
"eos_token_id": 2,
|
| 9 |
+
"hidden_act": "quick_gelu",
|
| 10 |
+
"hidden_size": 768,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 3072,
|
| 14 |
+
"layer_norm_eps": 1e-05,
|
| 15 |
+
"max_position_embeddings": 77,
|
| 16 |
+
"model_type": "clip_text_model",
|
| 17 |
+
"num_attention_heads": 12,
|
| 18 |
+
"num_hidden_layers": 12,
|
| 19 |
+
"pad_token_id": 1,
|
| 20 |
+
"projection_dim": 768,
|
| 21 |
+
"torch_dtype": "float16",
|
| 22 |
+
"transformers_version": "4.38.0",
|
| 23 |
+
"vocab_size": 49408
|
| 24 |
+
}
|
text_encoder/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6c65ad84a4d3d1d26a502d18efe0134e2f0b181defac43a5589ea288a063cd2
|
| 3 |
+
size 246144152
|
text_encoder_2/config.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"CLIPTextModelWithProjection"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 0,
|
| 7 |
+
"dropout": 0.0,
|
| 8 |
+
"eos_token_id": 2,
|
| 9 |
+
"hidden_act": "gelu",
|
| 10 |
+
"hidden_size": 1280,
|
| 11 |
+
"initializer_factor": 1.0,
|
| 12 |
+
"initializer_range": 0.02,
|
| 13 |
+
"intermediate_size": 5120,
|
| 14 |
+
"layer_norm_eps": 1e-05,
|
| 15 |
+
"max_position_embeddings": 77,
|
| 16 |
+
"model_type": "clip_text_model",
|
| 17 |
+
"num_attention_heads": 20,
|
| 18 |
+
"num_hidden_layers": 32,
|
| 19 |
+
"pad_token_id": 1,
|
| 20 |
+
"projection_dim": 1280,
|
| 21 |
+
"torch_dtype": "float16",
|
| 22 |
+
"transformers_version": "4.38.0",
|
| 23 |
+
"vocab_size": 49408
|
| 24 |
+
}
|
text_encoder_2/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:23c3208d8251a262327831921408d95f48b09a9a407729424cba9755b084db0d
|
| 3 |
+
size 1389382176
|
tokenizer/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer/special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|startoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<|endoftext|>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<|endoftext|>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
tokenizer/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"49406": {
|
| 5 |
+
"content": "<|startoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"49407": {
|
| 13 |
+
"content": "<|endoftext|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
}
|
| 20 |
+
},
|
| 21 |
+
"bos_token": "<|startoftext|>",
|
| 22 |
+
"clean_up_tokenization_spaces": true,
|
| 23 |
+
"do_lower_case": true,
|
| 24 |
+
"eos_token": "<|endoftext|>",
|
| 25 |
+
"errors": "replace",
|
| 26 |
+
"model_max_length": 77,
|
| 27 |
+
"pad_token": "<|endoftext|>",
|
| 28 |
+
"tokenizer_class": "CLIPTokenizer",
|
| 29 |
+
"unk_token": "<|endoftext|>"
|
| 30 |
+
}
|
tokenizer/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_2/merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_2/special_tokens_map.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<|startoftext|>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": true,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|endoftext|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": "!",
|
| 17 |
+
"unk_token": {
|
| 18 |
+
"content": "<|endoftext|>",
|
| 19 |
+
"lstrip": false,
|
| 20 |
+
"normalized": false,
|
| 21 |
+
"rstrip": false,
|
| 22 |
+
"single_word": false
|
| 23 |
+
}
|
| 24 |
+
}
|
tokenizer_2/tokenizer_config.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"0": {
|
| 5 |
+
"content": "!",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"49406": {
|
| 13 |
+
"content": "<|startoftext|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": true,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"49407": {
|
| 21 |
+
"content": "<|endoftext|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"bos_token": "<|startoftext|>",
|
| 30 |
+
"clean_up_tokenization_spaces": true,
|
| 31 |
+
"do_lower_case": true,
|
| 32 |
+
"eos_token": "<|endoftext|>",
|
| 33 |
+
"errors": "replace",
|
| 34 |
+
"model_max_length": 77,
|
| 35 |
+
"pad_token": "!",
|
| 36 |
+
"tokenizer_class": "CLIPTokenizer",
|
| 37 |
+
"unk_token": "<|endoftext|>"
|
| 38 |
+
}
|
tokenizer_2/vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
unet/config.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "UNet2DConditionModel",
|
| 3 |
+
"_diffusers_version": "0.25.0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"addition_embed_type": "text_time",
|
| 6 |
+
"addition_embed_type_num_heads": 64,
|
| 7 |
+
"addition_time_embed_dim": 256,
|
| 8 |
+
"attention_head_dim": [
|
| 9 |
+
5,
|
| 10 |
+
10,
|
| 11 |
+
20
|
| 12 |
+
],
|
| 13 |
+
"attention_type": "default",
|
| 14 |
+
"block_out_channels": [
|
| 15 |
+
320,
|
| 16 |
+
640,
|
| 17 |
+
1280
|
| 18 |
+
],
|
| 19 |
+
"center_input_sample": false,
|
| 20 |
+
"class_embed_type": null,
|
| 21 |
+
"class_embeddings_concat": false,
|
| 22 |
+
"conv_in_kernel": 3,
|
| 23 |
+
"conv_out_kernel": 3,
|
| 24 |
+
"cross_attention_dim": 2048,
|
| 25 |
+
"cross_attention_norm": null,
|
| 26 |
+
"down_block_types": [
|
| 27 |
+
"DownBlock2D",
|
| 28 |
+
"CrossAttnDownBlock2D",
|
| 29 |
+
"CrossAttnDownBlock2D"
|
| 30 |
+
],
|
| 31 |
+
"downsample_padding": 1,
|
| 32 |
+
"dropout": 0.0,
|
| 33 |
+
"dual_cross_attention": false,
|
| 34 |
+
"encoder_hid_dim": null,
|
| 35 |
+
"encoder_hid_dim_type": null,
|
| 36 |
+
"flip_sin_to_cos": true,
|
| 37 |
+
"freq_shift": 0,
|
| 38 |
+
"in_channels": 4,
|
| 39 |
+
"layers_per_block": 2,
|
| 40 |
+
"mid_block_only_cross_attention": null,
|
| 41 |
+
"mid_block_scale_factor": 1,
|
| 42 |
+
"mid_block_type": "UNetMidBlock2DCrossAttn",
|
| 43 |
+
"norm_eps": 1e-05,
|
| 44 |
+
"norm_num_groups": 32,
|
| 45 |
+
"num_attention_heads": null,
|
| 46 |
+
"num_class_embeds": null,
|
| 47 |
+
"only_cross_attention": false,
|
| 48 |
+
"out_channels": 4,
|
| 49 |
+
"projection_class_embeddings_input_dim": 2816,
|
| 50 |
+
"resnet_out_scale_factor": 1.0,
|
| 51 |
+
"resnet_skip_time_act": false,
|
| 52 |
+
"resnet_time_scale_shift": "default",
|
| 53 |
+
"reverse_transformer_layers_per_block": null,
|
| 54 |
+
"sample_size": 128,
|
| 55 |
+
"time_cond_proj_dim": null,
|
| 56 |
+
"time_embedding_act_fn": null,
|
| 57 |
+
"time_embedding_dim": null,
|
| 58 |
+
"time_embedding_type": "positional",
|
| 59 |
+
"timestep_post_act": null,
|
| 60 |
+
"transformer_layers_per_block": [
|
| 61 |
+
1,
|
| 62 |
+
2,
|
| 63 |
+
10
|
| 64 |
+
],
|
| 65 |
+
"up_block_types": [
|
| 66 |
+
"CrossAttnUpBlock2D",
|
| 67 |
+
"CrossAttnUpBlock2D",
|
| 68 |
+
"UpBlock2D"
|
| 69 |
+
],
|
| 70 |
+
"upcast_attention": null,
|
| 71 |
+
"use_linear_projection": true
|
| 72 |
+
}
|
unet/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a864cd7d81fce8f5ed4d4eb1d6beb332053456be61122a829711f68fad9eab6
|
| 3 |
+
size 5135149760
|
vae/config.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AutoencoderKL",
|
| 3 |
+
"_diffusers_version": "0.25.0",
|
| 4 |
+
"act_fn": "silu",
|
| 5 |
+
"block_out_channels": [
|
| 6 |
+
128,
|
| 7 |
+
256,
|
| 8 |
+
512,
|
| 9 |
+
512
|
| 10 |
+
],
|
| 11 |
+
"down_block_types": [
|
| 12 |
+
"DownEncoderBlock2D",
|
| 13 |
+
"DownEncoderBlock2D",
|
| 14 |
+
"DownEncoderBlock2D",
|
| 15 |
+
"DownEncoderBlock2D"
|
| 16 |
+
],
|
| 17 |
+
"force_upcast": true,
|
| 18 |
+
"in_channels": 3,
|
| 19 |
+
"latent_channels": 4,
|
| 20 |
+
"layers_per_block": 2,
|
| 21 |
+
"norm_num_groups": 32,
|
| 22 |
+
"out_channels": 3,
|
| 23 |
+
"sample_size": 1024,
|
| 24 |
+
"scaling_factor": 0.13025,
|
| 25 |
+
"up_block_types": [
|
| 26 |
+
"UpDecoderBlock2D",
|
| 27 |
+
"UpDecoderBlock2D",
|
| 28 |
+
"UpDecoderBlock2D",
|
| 29 |
+
"UpDecoderBlock2D"
|
| 30 |
+
]
|
| 31 |
+
}
|
vae/diffusion_pytorch_model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6353737672c94b96174cb590f711eac6edf2fcce5b6e91aa9d73c5adc589ee48
|
| 3 |
+
size 167335342
|
wildcard/character_r1.txt
ADDED
|
@@ -0,0 +1,401 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
1boy, male focus, kanzaki hideri, blend s
|
| 2 |
+
1girl, amano miu, blend s
|
| 3 |
+
1girl, sakuranomiya maika, blend s
|
| 4 |
+
1girl, hinata kaho, blend s
|
| 5 |
+
1girl, hoshikawa mafuyu, blend s
|
| 6 |
+
1girl, hinata kaho, blend s
|
| 7 |
+
1girl, kafuu chino, blend s, gochuumon wa usagi desu ka?, manga time kirara
|
| 8 |
+
1girl, amano miu, blend s, gochuumon wa usagi desu ka?, manga time kirara
|
| 9 |
+
1girl, takimoto hifumi, blend s, manga time kirara, new game!
|
| 10 |
+
1girl, hoshikawa mafuyu, blend s, kirara fantasia
|
| 11 |
+
1girl, hinata kaho, blend s, kirara fantasia
|
| 12 |
+
1boy, male focus, akizuki kouyou, blend s
|
| 13 |
+
1girl, sakuranomiya maika, blend s, kirara fantasia
|
| 14 |
+
1girl, abigail williams \(fate\), blend s, fate/grand order, fate \(series\)
|
| 15 |
+
1girl, sakuranomiya maika, blend s, comiket 94
|
| 16 |
+
1girl, m4 sopmod ii \(girls' frontline\), blend s, girls' frontline
|
| 17 |
+
1girl, patchouli knowledge, blend s, touhou
|
| 18 |
+
1girl, sakuranomiya maika, blend s, newtype
|
| 19 |
+
1other, hinata kaho, blend s
|
| 20 |
+
1girl, erza scarlet, fairy tail
|
| 21 |
+
1girl, wendy marvell, fairy tail
|
| 22 |
+
1girl, juvia lockser, fairy tail
|
| 23 |
+
1girl, lucy heartfilia, fairy tail
|
| 24 |
+
1girl, mirajane strauss, fairy tail
|
| 25 |
+
1boy, male focus, zeref, fairy tail
|
| 26 |
+
1girl, zeref, fairy tail
|
| 27 |
+
1boy, male focus, gajeel redfox, fairy tail
|
| 28 |
+
1girl, virgo \(fairy tail\), fairy tail
|
| 29 |
+
1girl, ultear milkovich, fairy tail
|
| 30 |
+
1boy, male focus, gray fullbuster, fairy tail
|
| 31 |
+
1girl, lisanna strauss, fairy tail
|
| 32 |
+
1girl, angel \(fairy tail\), fairy tail
|
| 33 |
+
1girl, eclair \(fairy tail\), fairy tail, fairy tail houou no miko
|
| 34 |
+
1girl, mavis vermilion, fairy tail
|
| 35 |
+
1girl, michelle lobster, fairy tail
|
| 36 |
+
1girl, lucy ashley, fairy tail
|
| 37 |
+
1girl, jenny realight, fairy tail
|
| 38 |
+
1girl, levy mcgarden, fairy tail
|
| 39 |
+
1girl, cana alberona, fairy tail
|
| 40 |
+
1girl, charle \(fairy tail\), fairy tail
|
| 41 |
+
1girl, coco \(fairy tail\), fairy tail
|
| 42 |
+
1girl, kagura mikazuchi, fairy tail
|
| 43 |
+
1girl, lucy heartfilia, comiket 84, fairy tail
|
| 44 |
+
1girl, sheria blendy, fairy tail
|
| 45 |
+
1girl, hisui e fiore, fairy tail
|
| 46 |
+
1girl, yukino aguria, fairy tail
|
| 47 |
+
1girl, minerva orlando, fairy tail
|
| 48 |
+
1girl, flare corona, fairy tail
|
| 49 |
+
1girl, erza scarlet, fairy tail, frozen \(disney\)
|
| 50 |
+
1girl, ur \(fairy tail\), fairy tail
|
| 51 |
+
1girl, erza knightwalker, fairy tail
|
| 52 |
+
1girl, lisanna strauss, fairy tail
|
| 53 |
+
1boy, male focus, natsu dragneel, fairy tail, fairy tail houou no miko
|
| 54 |
+
1girl, hiro \(hidamari sketch\), fairy tail
|
| 55 |
+
1girl, aries \(fairy tail\), fairy tail
|
| 56 |
+
1girl, jenny realight, fairy tail
|
| 57 |
+
1boy, male focus, elfman strauss, fairy tail
|
| 58 |
+
1boy, male focus, lyon bastia, fairy tail
|
| 59 |
+
1boy, male focus, sting eucliffe, fairy tail
|
| 60 |
+
1girl, evergreen \(fairy tail\), fairy tail
|
| 61 |
+
1girl, visca mulan, fairy tail
|
| 62 |
+
1boy, male focus, bixlow \(fairy tail\), fairy tail
|
| 63 |
+
1girl, brandish mu, fairy tail
|
| 64 |
+
1boy, male focus, rogue cheney, fairy tail
|
| 65 |
+
1girl, millianna \(fairy tail\), fairy tail
|
| 66 |
+
1girl, sherry blendi, fairy tail
|
| 67 |
+
1girl, lucky ollietta, fairy tail
|
| 68 |
+
1girl, meredy \(fairy tail\), fairy tail
|
| 69 |
+
1boy, male focus, zoldeo, fairy tail
|
| 70 |
+
1boy, male focus, zancrow, fairy tail
|
| 71 |
+
1boy, male focus, azuma \(fairy tail\), fairy tail
|
| 72 |
+
1boy, male focus, rustyrose \(fairy tail\), fairy tail
|
| 73 |
+
1girl, mavis vermilion, fairy tail, fairy tail zero
|
| 74 |
+
1girl, natsu dragneel, fairy tail
|
| 75 |
+
1girl, dimaria yesta, fairy tail
|
| 76 |
+
1boy, male focus, jellal fernandes, fairy tail
|
| 77 |
+
1girl, wendy marvell, divine gate, fairy tail
|
| 78 |
+
1girl, lucy heartfilia, divine gate, fairy tail
|
| 79 |
+
1girl, mirajane strauss, divine gate, fairy tail
|
| 80 |
+
1girl, lisanna strauss, divine gate, fairy tail
|
| 81 |
+
1girl, erza scarlet, divine gate, fairy tail
|
| 82 |
+
1girl, juvia lockser, divine gate, fairy tail
|
| 83 |
+
1boy, male focus, jellal fernandes, divine gate, fairy tail
|
| 84 |
+
1girl, mavis vermilion, divine gate, fairy tail
|
| 85 |
+
1girl, kagura mikazuchi, divine gate, fairy tail
|
| 86 |
+
1girl, yukino aguria, divine gate, fairy tail
|
| 87 |
+
1boy, male focus, zeref, divine gate, fairy tail
|
| 88 |
+
1girl, sheria blendy, divine gate, fairy tail
|
| 89 |
+
1girl, minerva orlando, divine gate, fairy tail
|
| 90 |
+
1boy, male focus, ichiya vandaly, divine gate, fairy tail
|
| 91 |
+
1girl, ultear milkovich, divine gate, fairy tail
|
| 92 |
+
1girl, flare corona, fairy tail, no game no life
|
| 93 |
+
1girl, zeira, fairy tail
|
| 94 |
+
1boy, male focus, natsu dragneel, fairy tail
|
| 95 |
+
1boy, gray fullbuster, fairy tail
|
| 96 |
+
1girl, irene belserion, fairy tail
|
| 97 |
+
1girl, mary \(faeirest\), boku no hero academia, fairy tail, original
|
| 98 |
+
1girl, anna heartfillia, fairy tail
|
| 99 |
+
1girl, cosmos \(fairy tail\), fairy tail
|
| 100 |
+
1girl, seilah, fairy tail
|
| 101 |
+
1girl, miki chickentiger, fairy tail
|
| 102 |
+
1girl, lluvia loxar, fairy tail
|
| 103 |
+
1girl, fairy tail, original
|
| 104 |
+
1girl, erza scarlet, 2018 fifa world cup, fairy tail, world cup
|
| 105 |
+
1boy, lucy heartfilia, fairy tail
|
| 106 |
+
1boy, male focus, orga nanagear, fairy tail
|
| 107 |
+
1girl, zero \(fairy tail\), fairy tail
|
| 108 |
+
1boy, male focus, laxus dreyar, fairy tail
|
| 109 |
+
1boy, male focus, silver fullbuster, fairy tail
|
| 110 |
+
1girl, lucy heartfilia, fairy tail, valkyrie connect
|
| 111 |
+
1girl, mavis vermilion, fairy tail, valkyrie connect
|
| 112 |
+
1girl, erza scarlet, fairy tail, valkyrie connect
|
| 113 |
+
1girl, tia \(fairy tail: forces unite!\), fairy tail, fairy tail: forces unite!
|
| 114 |
+
1girl, eden's zero, fairy tail
|
| 115 |
+
1girl, selene \(fairy tail\), fairy tail
|
| 116 |
+
1girl, erza scarlet, bible black, fairy tail
|
| 117 |
+
1girl, lucy heartfilia, fairy tail, pornhub
|
| 118 |
+
1girl, erza scarlet, fairy tail, gate of nightmares
|
| 119 |
+
1girl, lucy heartfilia, fairy tail, gate of nightmares
|
| 120 |
+
1boy, male focus, natsu dragneel, fairy tail, gate of nightmares
|
| 121 |
+
1boy, male focus, gray fullbuster, fairy tail, gate of nightmares
|
| 122 |
+
1girl, ikaruga \(fairy tail\), fairy tail
|
| 123 |
+
1girl, brandish mu, fairy tail, sangoku taisen smash!
|
| 124 |
+
1girl, ultear milkovich, fairy tail, sangoku taisen smash!
|
| 125 |
+
1girl, kinana \(fairy tail\), fairy tail
|
| 126 |
+
1boy, male focus, fairy tail
|
| 127 |
+
1boy, male focus, acnologia, fairy tail
|
| 128 |
+
1boy, male focus, gildarts clive, fairy tail
|
| 129 |
+
1boy, male focus, loke \(fairy tail\), fairy tail
|
| 130 |
+
1boy, male focus, totomaru \(fairy tail\), fairy tail
|
| 131 |
+
1boy, male focus, mest, fairy tail
|
| 132 |
+
1girl, ur, fairy tail
|
| 133 |
+
1girl, gabriel tenma white, gabriel dropout
|
| 134 |
+
1girl, vignette tsukinose april, gabriel dropout
|
| 135 |
+
1girl, gabriel tenma white, gabriel dropout, megami magazine
|
| 136 |
+
1girl, satanichia kurumizawa mcdowell, gabriel dropout
|
| 137 |
+
1girl, raphiel shiraha ainsworth, gabriel dropout
|
| 138 |
+
1girl, satanichia kurumizawa mcdowell, gabriel dropout, lawson
|
| 139 |
+
1girl, tapris chisaki sugarbell, gabriel dropout
|
| 140 |
+
1girl, gabriel tenma white, asus, gabriel dropout
|
| 141 |
+
1girl, gabriel tenma white, gabriel dropout, microsoft
|
| 142 |
+
1girl, satanichia kurumizawa mcdowell, gabriel dropout, t.m.revolution
|
| 143 |
+
1girl, iinchou \(gabriel dropout\), gabriel dropout
|
| 144 |
+
1girl, serval \(kemono friends\), gabriel dropout, kemono friends
|
| 145 |
+
1girl, satanichia kurumizawa mcdowell, gabriel dropout, megami magazine
|
| 146 |
+
1girl, uzuki \(kancolle\), gabriel dropout, kantai collection
|
| 147 |
+
1girl, satanichia kurumizawa mcdowell, gabriel dropout, google
|
| 148 |
+
1girl, gabriel tenma white, gabriel dropout, itunes
|
| 149 |
+
1girl, iinchou \(gabriel dropout\), gabriel dropout
|
| 150 |
+
1girl, martiel \(gabriel dropout\), gabriel dropout
|
| 151 |
+
1girl, zelel tenma white, gabriel dropout
|
| 152 |
+
1girl, kurona mei, gabriel dropout
|
| 153 |
+
1girl, gabriel tenma white, dadadada tenshi \(nanawo akari\), gabriel dropout, original
|
| 154 |
+
1girl, gabriel tenma white, dadadada tenshi \(nanawo akari\), gabriel dropout
|
| 155 |
+
1girl, kurona mei, gabriel dropout, tapris sugar step
|
| 156 |
+
1girl, satanichia kurumizawa mcdowell, amazon \(company\), gabriel dropout, jojo no kimyou na bouken
|
| 157 |
+
1girl, tapris chisaki sugarbell, gabriel dropout, tapris sugar step
|
| 158 |
+
1girl, satanichia kurumizawa mcdowell, gabriel dropout, uniqlo
|
| 159 |
+
1girl, azazel \(gabriel dropout\), gabriel dropout
|
| 160 |
+
1girl, satanichia kurumizawa mcdowell, gabriel dropout, tapris sugar step
|
| 161 |
+
1girl, hibiki \(kancolle\), gabriel dropout, kantai collection
|
| 162 |
+
1girl, mostima \(arknights\), arknights, gabriel dropout
|
| 163 |
+
1girl, gabriel tenma white, gabriel dropout, majo no takkyuubin
|
| 164 |
+
1girl, satanichia kurumizawa mcdowell, comiket 95, gabriel dropout
|
| 165 |
+
1girl, satanichia kurumizawa mcdowell, azur lane, gabriel dropout
|
| 166 |
+
1girl, yuzuriha inori, guilty crown
|
| 167 |
+
1girl, tsugumi \(guilty crown\), guilty crown
|
| 168 |
+
1boy, male focus, tsutsugami gai, guilty crown
|
| 169 |
+
1girl, menjou hare, guilty crown
|
| 170 |
+
1boy, male focus, ouma shuu, guilty crown
|
| 171 |
+
1girl, yuzuriha inori, guilty crown, nyantype
|
| 172 |
+
1girl, yuzuriha inori, guilty crown, megami magazine
|
| 173 |
+
1boy, male focus, daryl yan, guilty crown
|
| 174 |
+
1girl, yuzuriha inori, dengeki g's, guilty crown
|
| 175 |
+
1girl, shinomiya ayase, guilty crown
|
| 176 |
+
1boy, male focus, kido kenji, guilty crown
|
| 177 |
+
1girl, kuhouin arisa, guilty crown
|
| 178 |
+
1boy, male focus, segai waltz makoto, guilty crown
|
| 179 |
+
1girl, ouma mana, guilty crown
|
| 180 |
+
1girl, kusama kanon, guilty crown
|
| 181 |
+
1girl, carol \(guilty crown\), guilty crown, guilty crown lost christmas, nitroplus
|
| 182 |
+
1girl, yuzuriha inori, comiket 81, guilty crown
|
| 183 |
+
1girl, present \(guilty crown\), guilty crown, guilty crown lost christmas, nitroplus
|
| 184 |
+
1girl, carol \(guilty crown\), guilty crown, guilty crown lost christmas
|
| 185 |
+
1boy, male focus, yuu \(guilty crown\), guilty crown
|
| 186 |
+
1boy, ouma shuu, guilty crown, guilty crown princess of the deadpool
|
| 187 |
+
1girl, ouma haruka, guilty crown
|
| 188 |
+
1girl, present \(guilty crown\), guilty crown, guilty crown lost christmas
|
| 189 |
+
1girl, yuzuriha inori, guilty crown, neptune \(series\)
|
| 190 |
+
1boy, male focus, yuzuriha inori, guilty crown
|
| 191 |
+
1girl, tsutsugami gai, guilty crown
|
| 192 |
+
1girl, yuzuriha inori, guilty crown, production ig, psycho-pass
|
| 193 |
+
1girl, yuzuriha inori, guilty crown, psycho-pass
|
| 194 |
+
1girl, yuzuriha inori, beatless, guilty crown
|
| 195 |
+
1girl, yuzuriha inori, guilty crown, koutetsujou no kabaneri
|
| 196 |
+
1boy, male focus, present \(guilty crown\), guilty crown, guilty crown lost christmas
|
| 197 |
+
1boy, male focus, samukawa yahiro, guilty crown
|
| 198 |
+
1boy, male focus, tamadate souta, guilty crown
|
| 199 |
+
1girl, jabami yumeko, kakegurui
|
| 200 |
+
1girl, saotome mary, kakegurui
|
| 201 |
+
1girl, jabami yumeko \(dominium\), kakegurui
|
| 202 |
+
1girl, yomozuki runa, kakegurui
|
| 203 |
+
1girl, ikishima midari, kakegurui, kakegurui midari
|
| 204 |
+
1girl, jabami yumeko, kakegurui, newtype
|
| 205 |
+
1girl, serval \(kemono friends\), kakegurui, kemono friends, niconico
|
| 206 |
+
1girl, 1other, jabami yumeko, kakegurui
|
| 207 |
+
1girl, momobami kirari, kakegurui
|
| 208 |
+
1girl, nureba ayame, kakegurui, kakegurui midari
|
| 209 |
+
1girl, nishinotouin yuriko, kakegurui, kakegurui midari
|
| 210 |
+
1girl, sumeragi itsuki, kakegurui
|
| 211 |
+
1girl, momobami kirari, kakegurui, kakegurui midari
|
| 212 |
+
1girl, jabami yumeko, comiket 95, kakegurui
|
| 213 |
+
1girl, saori \(kakegurui\), kakegurui
|
| 214 |
+
1girl, honebami miroslava, kakegurui
|
| 215 |
+
1girl, amagi \(azur lane\), azur lane, kakegurui
|
| 216 |
+
1girl, maria uru, kakegurui
|
| 217 |
+
1girl, tsurumaki kokoro, bang dream!, kakegurui
|
| 218 |
+
1other, jabami yumeko, kakegurui
|
| 219 |
+
1girl, ikishima midari, kakegurui
|
| 220 |
+
1girl, totobami yumi, kakegurui
|
| 221 |
+
1girl, kurosawa dia, kakegurui, love live!, love live! sunshine!!
|
| 222 |
+
1girl, yumemite yumemi, kakegurui
|
| 223 |
+
1girl, momobami ririka, kakegurui
|
| 224 |
+
1girl, jabami yumeko, kakegurui, mahjong soul
|
| 225 |
+
1girl, ikishima midari, kakegurui, mahjong soul
|
| 226 |
+
1girl, momobami kirari, kakegurui, mahjong soul
|
| 227 |
+
1girl, saotome mary, kakegurui, mahjong soul
|
| 228 |
+
1girl, igarashi sayaka, kakegurui
|
| 229 |
+
1boy, male focus, hyuuga masamune, kakegurui, touken ranbu
|
| 230 |
+
1girl, ikishima midari, kakegurui, kakegurui twin, mahjong soul
|
| 231 |
+
1girl, totobami terano, kakegurui
|
| 232 |
+
1girl, sakamata chloe, hololive, kakegurui
|
| 233 |
+
1boy, male focus, itou kaiji, kaiji, kakegurui
|
| 234 |
+
1girl, juufuutei raden, hololive, hololive dev is, kakegurui
|
| 235 |
+
1girl, sessyoin kiara, fate/extra, fate/extra ccc, fate/grand order, fate \(series\), kakegurui
|
| 236 |
+
1girl, dire wolf \(kemono friends\), kakegurui, kemono friends, kemono friends v project
|
| 237 |
+
1girl, nanami mami, kanojo okarishimasu, original
|
| 238 |
+
1girl, mizuhara chizuru, kanojo okarishimasu
|
| 239 |
+
1girl, sakurasawa sumi, kanojo okarishimasu
|
| 240 |
+
1girl, nanami mami, kanojo okarishimasu
|
| 241 |
+
1girl, sarashina ruka, kanojo okarishimasu
|
| 242 |
+
1girl, mizuhara chizuru, kanojo okarishimasu, megami magazine
|
| 243 |
+
1girl, nanami mami, kanojo okarishimasu, megami magazine
|
| 244 |
+
1girl, sarashina ruka, kanojo okarishimasu, megami magazine
|
| 245 |
+
1girl, yaemori mini, kanojo okarishimasu
|
| 246 |
+
1girl, mizuhara chizuru, kanojo okarishimasu, venus eleven vivid!
|
| 247 |
+
1girl, sarashina ruka, kanojo okarishimasu, venus eleven vivid!
|
| 248 |
+
1girl, sakurasawa sumi, kanojo okarishimasu, venus eleven vivid!
|
| 249 |
+
1girl, nanami mami, kanojo okarishimasu, venus eleven vivid!
|
| 250 |
+
1boy, male focus, kinoshita kazuya, kanojo okarishimasu
|
| 251 |
+
1boy, mizuhara chizuru, kanojo okarishimasu
|
| 252 |
+
1girl, mizuhara chizuru, kanojo okarishimasu, shingeki no kyojin
|
| 253 |
+
1girl, sarashina ruka, kanojo okarishimasu, nisekoi
|
| 254 |
+
1girl, inubashiri momiji, kanojo okarishimasu, touhou
|
| 255 |
+
1girl, sarashina ruka, animedia, kanojo okarishimasu
|
| 256 |
+
1girl, sakurasawa sumi, kanojo okarishimasu, megami magazine
|
| 257 |
+
1girl, mizuhara chizuru, animedia, kanojo okarishimasu
|
| 258 |
+
1girl, yaemori mini, kanojo okarishimasu, megami magazine
|
| 259 |
+
1girl, yaemori mini, cops \(tv series\), kanojo okarishimasu
|
| 260 |
+
1girl, mizuhara chizuru, comiket 103, kanojo okarishimasu
|
| 261 |
+
1girl, gasai yuno, mirai nikki
|
| 262 |
+
1girl, uryuu minene, mirai nikki
|
| 263 |
+
1girl, murmur \(mirai nikki\), mirai nikki
|
| 264 |
+
1boy, male focus, akise aru, mirai nikki
|
| 265 |
+
1girl, kasugano tsubaki, mirai nikki
|
| 266 |
+
1boy, gasai yuno, mirai nikki
|
| 267 |
+
1girl, himekaidou hatate, mirai nikki, touhou
|
| 268 |
+
1boy, male focus, hirasaka yomotsu, mirai nikki
|
| 269 |
+
1girl, illyasviel von einzbern, fate/zero, fate \(series\), mirai nikki
|
| 270 |
+
1girl, sariel \(touhou\), mirai nikki, touhou, touhou \(pc-98\)
|
| 271 |
+
1girl, koiwai yotsuba, mirai nikki, yotsubato!
|
| 272 |
+
1girl, uryuu minene, mirai nikki, newtype
|
| 273 |
+
1girl, misaka mikoto, mirai nikki, toaru kagaku no railgun, toaru majutsu no index
|
| 274 |
+
1boy, male focus, amano yukiteru, mirai nikki
|
| 275 |
+
1girl, yuasa hiromi, mirai nikki, true tears
|
| 276 |
+
1girl, kashiwazaki sena, boku wa tomodachi ga sukunai, mirai nikki
|
| 277 |
+
1boy, akise aru, mirai nikki
|
| 278 |
+
1girl, hino hinata, mirai nikki
|
| 279 |
+
1girl, shimazu yoshino, maria-sama ga miteru, mirai nikki
|
| 280 |
+
1girl, gasai yuno, k-on!, mirai nikki
|
| 281 |
+
1boy, amano yukiteru, mirai nikki
|
| 282 |
+
1girl, nyarlathotep \(nyaruko-san\), accel world, boku wa tomodachi ga sukunai, clannad, fate/stay night, fate \(series\), haiyore! nyaruko-san, mirai nikki, monogatari \(series\), persona, persona 4, precure, smile precure!, toaru kagaku no railgun, toaru majutsu no index, toradora!
|
| 283 |
+
1boy, male focus, nishijima masumi, mirai nikki, panty & stocking with garterbelt
|
| 284 |
+
1girl, uryuu minene, mirai nikki, panty & stocking with garterbelt
|
| 285 |
+
1girl, amano rea, mirai nikki
|
| 286 |
+
1girl, wakaba moe, mirai nikki
|
| 287 |
+
1girl, gasai yuno, apple inc., mirai nikki
|
| 288 |
+
1girl, cheryl \(arc the lad\), arc the lad, arc the lad iii, mirai nikki
|
| 289 |
+
1boy, male focus, houjou reisuke, mirai nikki
|
| 290 |
+
1girl, kaku seiga, mirai nikki, touhou
|
| 291 |
+
1girl, gasai yuno, mirai nikki, pixiv
|
| 292 |
+
1girl, madotsuki, mirai nikki, yume nikki
|
| 293 |
+
1girl, anchorage water oni, kantai collection, mirai nikki
|
| 294 |
+
1girl, kayano kaede, ansatsu kyoushitsu, mirai nikki
|
| 295 |
+
1boy, male focus, adol christin, mirai nikki, ys, ys seven
|
| 296 |
+
1girl, nonosaka mao, mirai nikki
|
| 297 |
+
1boy, male focus, kousaka ouji, mirai nikki
|
| 298 |
+
1girl, mikami ai, mirai nikki
|
| 299 |
+
1girl, gasai yuno, mirai nikki, shingeki no kyojin
|
| 300 |
+
1boy, male focus, kurusu keigo, mirai nikki
|
| 301 |
+
1girl, terra branford, final fantasy, final fantasy vi, mirai nikki
|
| 302 |
+
1girl, suzumiya haruhi, mirai nikki, suzumiya haruhi no yuuutsu
|
| 303 |
+
1girl, hoshimiya mukuro, date a live, mirai nikki
|
| 304 |
+
1girl, 9a-91 \(girls' frontline\), girls' frontline, mirai nikki
|
| 305 |
+
1girl, jingei \(kancolle\), kantai collection, mirai nikki
|
| 306 |
+
1girl, taihou \(azur lane\), azur lane, mirai nikki
|
| 307 |
+
1girl, hatsune miku, mirai nikki, vocaloid
|
| 308 |
+
1girl, yor briar, mirai nikki, spy x family
|
| 309 |
+
1girl, kamado nezuko, kimetsu no yaiba, mirai nikki
|
| 310 |
+
1boy, male focus, oma kokichi, danganronpa \(series\), danganronpa v3: killing harmony, mirai nikki
|
| 311 |
+
1girl, noa \(blue archive\), blue archive, mirai nikki
|
| 312 |
+
1girl, kirisaki chitoge, nisekoi
|
| 313 |
+
1girl, onodera kosaki, nisekoi
|
| 314 |
+
1girl, tsugumi seishirou, nisekoi
|
| 315 |
+
1girl, tachibana marika, nisekoi
|
| 316 |
+
1girl, miyamoto ruri, nisekoi
|
| 317 |
+
1girl, onodera kosaki, magical patissier kosaki-chan, nisekoi
|
| 318 |
+
1girl, kirisaki chitoge, coca-cola, nisekoi
|
| 319 |
+
1girl, onodera haru, nisekoi
|
| 320 |
+
1girl, miyamoto ruri, nisekoi, pixiv
|
| 321 |
+
1boy, ichijou raku, nisekoi
|
| 322 |
+
1girl, hakurei reimu, nisekoi, touhou
|
| 323 |
+
1girl, paula mccoy, nisekoi
|
| 324 |
+
1girl, kanakura yui, nisekoi
|
| 325 |
+
1girl, yuudachi \(kancolle\), kantai collection, nisekoi
|
| 326 |
+
1girl, kirisaki chitoge, megami magazine, nisekoi
|
| 327 |
+
1girl, hihara kyouko, nisekoi
|
| 328 |
+
1girl, kirisaki chitoge, nisekoi, pixiv
|
| 329 |
+
1girl, hihara kyouko, nisekoi, pixiv
|
| 330 |
+
1girl, kirisaki chitoge, j. league, kashiwa reysol, nisekoi
|
| 331 |
+
1girl, kirisaki chitoge, divine gate, nisekoi
|
| 332 |
+
1girl, onodera kosaki, divine gate, nisekoi
|
| 333 |
+
1girl, tachibana marika, divine gate, nisekoi
|
| 334 |
+
1girl, tsugumi seishirou, divine gate, nisekoi
|
| 335 |
+
1girl, miyamoto ruri, divine gate, nisekoi
|
| 336 |
+
1girl, onodera haru, divine gate, nisekoi
|
| 337 |
+
1girl, paula mccoy, divine gate, nisekoi
|
| 338 |
+
1girl, onodera kosaki, divine gate, magical patissier kosaki-chan, nisekoi
|
| 339 |
+
1boy, male focus, ichijou raku, divine gate, nisekoi
|
| 340 |
+
1girl, tachibana marika, magical patissier kosaki-chan, nisekoi
|
| 341 |
+
1girl, tsugumi seishirou, magical patissier kosaki-chan, nisekoi
|
| 342 |
+
1girl, onodera kosaki, nisekoi, valorant
|
| 343 |
+
1girl, kasumigaoka utaha, saenai heroine no sodatekata
|
| 344 |
+
1girl, sawamura spencer eriri, saenai heroine no sodatekata
|
| 345 |
+
1girl, hashima izumi, saenai heroine no sodatekata
|
| 346 |
+
1girl, hyoudou michiru, saenai heroine no sodatekata
|
| 347 |
+
1girl, katou megumi, saenai heroine no sodatekata
|
| 348 |
+
1girl, katou megumi, nyantype, saenai heroine no sodatekata
|
| 349 |
+
1girl, kousaka akane \(saenai heroine no sodatekata\), saenai heroine no sodatekata
|
| 350 |
+
1boy, male focus, aki tomoya, saenai heroine no sodatekata
|
| 351 |
+
1girl, sawamura sayuri, saenai heroine no sodatekata
|
| 352 |
+
1girl, kanou meguri, saenai heroine no sodatekata
|
| 353 |
+
1girl, sawamura spencer eriri, j. league, kashiwa reysol, saenai heroine no sodatekata
|
| 354 |
+
1girl, katou megumi, original, saenai heroine no sodatekata
|
| 355 |
+
1girl, sawamura spencer eriri, comiket 90, saenai heroine no sodatekata
|
| 356 |
+
1girl, sagara mayu \(saenai heroine no sodatekata\), saenai heroine no sodatekata
|
| 357 |
+
1girl, katou megumi, megami magazine, saenai heroine no sodatekata
|
| 358 |
+
1girl, katou megumi, lawson, saenai heroine no sodatekata
|
| 359 |
+
1girl, sawamura spencer eriri, saenai heroine no sodatekata, tokimeki memorial, tokimeki memorial 2
|
| 360 |
+
1girl, sagisawa fumika, idolmaster, idolmaster cinderella girls, saenai heroine no sodatekata
|
| 361 |
+
1girl, katou megumi, saenai heroine no sodatekata, saenai heroine no sodatekata memorial
|
| 362 |
+
1girl, sawamura spencer eriri, saenai heroine no sodatekata, t.m.revolution
|
| 363 |
+
1girl, katou megumi, me!me!me!, saenai heroine no sodatekata
|
| 364 |
+
1girl, katou megumi, comiket 92, saenai heroine no sodatekata
|
| 365 |
+
1girl, katou megumi, 7up, saenai heroine no sodatekata
|
| 366 |
+
1girl, katou megumi, newtype, saenai heroine no sodatekata
|
| 367 |
+
1girl, katou hiromi \(saekano\), saenai heroine no sodatekata
|
| 368 |
+
1girl, sawamura spencer eriri, real madrid, saenai heroine no sodatekata
|
| 369 |
+
1girl, holo, saenai heroine no sodatekata, spice and wolf
|
| 370 |
+
1girl, katou megumi, comiket 90, saenai heroine no sodatekata
|
| 371 |
+
1girl, inoue takina, lycoris recoil, saenai heroine no sodatekata
|
| 372 |
+
1girl, sawamura spencer eriri, comiket 102, saenai heroine no sodatekata
|
| 373 |
+
1girl, kasumigaoka utaha, comiket 103, saenai heroine no sodatekata
|
| 374 |
+
1girl, horikita suzune, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 375 |
+
1girl, kushida kikyou, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 376 |
+
1girl, ichinose honami \(youjitsu\), youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 377 |
+
1girl, sakura airi, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 378 |
+
1girl, hoshinomiya chie, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 379 |
+
1girl, karuizawa kei, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 380 |
+
1girl, ibuki mio, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 381 |
+
1girl, chabashira sae, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 382 |
+
1girl, sakayanagi arisu, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 383 |
+
1girl, ichinose honami \(youjitsu\), coca-cola, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 384 |
+
1boy, male focus, ayanokouji kiyotaka, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 385 |
+
1girl, horikita suzune, megami magazine, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 386 |
+
1girl, nanase tsubasa, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 387 |
+
1girl, amasawa ichika, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 388 |
+
1girl, shiina hiyori, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 389 |
+
1girl, tsubaki sakurako, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 390 |
+
1girl, miia \(monster musume\), monster musume no iru nichijou, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 391 |
+
1boy, male focus, ryuuen kakeru, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 392 |
+
1girl, kiriyuuin fuuka, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 393 |
+
1girl, himeno yuki \(youjitsu\), youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 394 |
+
1girl, karuizawa kei, megami magazine, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 395 |
+
1girl, kamuro masumi, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 396 |
+
1girl, sakurai airi, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 397 |
+
1girl, sakayanagi arisu, megami magazine, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 398 |
+
1boy, male focus, kouenji rokusuke, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 399 |
+
1girl, ichinose honami \(youjitsu\), megami magazine, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 400 |
+
1girl, shiina hiyori, megami magazine, youkoso jitsuryoku shijou shugi no kyoushitsu e
|
| 401 |
+
1girl, matsushita chiaki, youkoso jitsuryoku shijou shugi no kyoushitsu e
|