├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.ko.md ├── README.md ├── Util ├── tagCollector.py └── tagCollector2.py ├── __init__.py ├── data ├── Lighting_prompt.json ├── NovelAI - 태그[동작 1].json ├── NovelAI - 태그[동작 2].json ├── NovelAI - 태그[시점].json ├── NovelAI - 태그[외모].json ├── NovelAI - 태그[의상].json ├── NovelAI - 태그[인물].json ├── NovelAI - 태그[장소].json ├── NovelAI - 태그[장신구].json ├── NovelAI - 태그[체형].json ├── NovelAI - 태그[행동].json ├── csv │ ├── NovelAI - 태그[기본].csv │ ├── NovelAI - 태그[동작 1].csv │ ├── NovelAI - 태그[동작 2].csv │ ├── NovelAI - 태그[외모].csv │ ├── NovelAI - 태그[의상].csv │ ├── NovelAI - 태그[인물].csv │ ├── NovelAI - 태그[장신구].csv │ ├── NovelAI - 태그[체형].csv │ └── NovelAI - 태그[행동].csv ├── static │ ├── ScenarioPrompt_autocomplete.gif │ ├── Scenario_prompt.png │ ├── Scenario_prompt_caution.png │ └── Scenario_prompt_example1.png └── template.json ├── node.zip ├── pyproject.toml ├── s_prompt.py └── web └── js └── autocomplete.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | name: Publish to Comfy registry 2 | on: 3 | workflow_dispatch: 4 | push: 5 | branches: 6 | - main 7 | - master 8 | paths: 9 | - "pyproject.toml" 10 | 11 | permissions: 12 | issues: write 13 | 14 | jobs: 15 | publish-node: 16 | name: Publish Custom Node to registry 17 | runs-on: ubuntu-latest 18 | if: ${{ github.repository_owner == 'Ludobico' }} 19 | steps: 20 | - name: Check out code 21 | uses: actions/checkout@v4 22 | - name: Publish Custom Node 23 | uses: Comfy-Org/publish-node-action@v1 24 | with: 25 | ## Add your own personal access token to your Github Repository secrets and reference it here. 26 | personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }} 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /__pycache__/ -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- 1 | # ComfyUI-ScenarioPrompt 2 | 3 |  4 | 5 | ScenarioPrompt는 프롬프트를 작성할 때 각 속성별로 어떤 프롬프트를 작성했는지 알기쉽게 파악할 수 있는 커스텀노드입니다. 6 | 7 | 현재 10가지 속성으로 제공되며, **Base 항목은 필수로 입력하셔야합니다.** 8 | 9 |  10 | 11 | [CLIP Text Encode (Prompt)](https://blenderneko.github.io/ComfyUI-docs/Core%20Nodes/Conditioning/CLIPTextEncode/) 와 연결하여 사용할 수 있으며, [ComfyUI-Custom-Scripts](https://github.com/pythongosssss/ComfyUI-Custom-Scripts) 의 Show Text 항목으로 입력된 프롬프트들을 일렬로 나열해 확인해 볼 수 있습니다. 12 | 13 | ⚠️ ScenarioPrompt를 prompt에 연결하려면 반드시 CLIP Text Encode (Prompt)에 **Convert text to input** 항목에 체크하셔야합니다. 14 | 15 | ](data/static/Scenario_prompt_caution.png) 16 | 17 | ## Installation 18 | 19 | ```bash 20 | cd path/to/comfyui/custom_nodes/ 21 | ``` 22 | 23 | ```bash 24 | git clone https://github.com/Ludobico/ComfyUI-ScenarioPrompt.git 25 | ``` 26 | 27 | ## Autocomplete 28 | 29 | [ComfyUI - CustomNode Unlimited Prompt](https://github.com/PluMaZero/ComfyUI-SpaceFlower) 와 [NovelAI.app](https://github.com/gangjun06/NovelAI.app) 위 두 개의 소스코드에서 영감을 받아 만들었습니다. 30 | 31 | 자동완성에 사용되는 태그 역시 NovelAI.app 의 구글시트를 기반으로 만들어졌습니다. 32 | 33 | ](data/static/ScenarioPrompt_autocomplete.gif) 34 | 35 | ## Reference 36 | 37 | https://github.com/gangjun06/NovelAI.app 38 | 39 | https://github.com/PluMaZero/ComfyUI-SpaceFlower 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ComfyUI-ScenarioPrompt 2 | 3 | [](./README.ko.md) 4 | 5 |  6 | 7 | ScenarioPrompt is a custom node that helps you understand what you're prompting for each property as you build your prompts 8 | 9 | Currently available in 10 properties, **Base is mandatory**. 10 | 11 |  12 | 13 | You can use it in conjunction with [CLIP Text Encode (Prompt)](https://blenderneko.github.io/ComfyUI-docs/Core%20Nodes/Conditioning/CLIPTextEncode/), or you can use the Show Text item in [ComfyUI-Custom-Scripts](https://github.com/pythongosssss/ComfyUI-Custom-Scripts) to line up the prompts entered. 14 | 15 | ⚠️ To connect ScenarioPrompt to a prompt, you must check the **Convert text to input** box for CLIP Text Encode (Prompt). 16 | 17 | ](data/static/Scenario_prompt_caution.png) 18 | 19 | ## Installation 20 | 21 | ```bash 22 | cd path/to/comfyui/custom_nodes/ 23 | ``` 24 | 25 | ```bash 26 | git clone https://github.com/Ludobico/ComfyUI-ScenarioPrompt.git 27 | ``` 28 | 29 | ## Autocomplete 30 | 31 | It was inspired by the two source codes above: [ComfyUI - CustomNode Unlimited Prompt](https://github.com/PluMaZero/ComfyUI-SpaceFlower) and [NovelAI.app](https://github.com/gangjun06/NovelAI.app). 32 | 33 | The tags used for autocomplete are also based on NovelAI.app's googlesheet. 34 | 35 | ](data/static/ScenarioPrompt_autocomplete.gif) 36 | 37 | ## Reference 38 | 39 | https://github.com/gangjun06/NovelAI.app 40 | 41 | https://github.com/PluMaZero/ComfyUI-SpaceFlower 42 | -------------------------------------------------------------------------------- /Util/tagCollector.py: -------------------------------------------------------------------------------- 1 | import os 2 | import pandas as pd 3 | 4 | full_path = os.path.dirname(os.path.realpath(__file__)) 5 | data_path = os.listdir(os.path.join(full_path,'..','data','csv')) 6 | 7 | for data in data_path: 8 | df = pd.read_csv(os.path.join(full_path,'..','data','csv', data), encoding='utf-8') 9 | df = df.dropna(subset=[df.columns[0]]) 10 | df = df.rename(columns={df.columns[3]: 'tag', df.columns[2]: 'desc'}) 11 | 12 | new_df = df[['tag', 'desc']] 13 | 14 | json_file_name = f'{data.split(".")[0]}.json' 15 | new_df.to_json(os.path.join(full_path, '..', 'data', json_file_name), orient='records', force_ascii=False, indent=4) 16 | 17 | print("done!") -------------------------------------------------------------------------------- /Util/tagCollector2.py: -------------------------------------------------------------------------------- 1 | import os 2 | import pandas as pd 3 | 4 | full_path = os.path.dirname(os.path.realpath(__file__)) 5 | 6 | df = pd.read_csv(os.path.join(full_path, '..', 'data', 'csv', 'NovelAI - 태그[기본].csv'), encoding='utf-8') 7 | df = df.dropna(subset=[df.columns[0]]) 8 | df = df.rename(columns={df.columns[3] : 'tag', df.columns[2] : 'desc', df.columns[0] : 'class' }) 9 | 10 | point_of_view_rows = df[df['class'] == '초점'] 11 | background_rows = df[df['class'] == '장소'] 12 | 13 | new_df1 = point_of_view_rows[['tag', 'desc']] 14 | new_df2 = background_rows[['tag', 'desc']] 15 | 16 | json_file_name = 'NovelAI - 태그[시점].json' 17 | new_df1.to_json(os.path.join(full_path, '..', 'data', json_file_name), orient='records', force_ascii=False, indent=4) 18 | 19 | json_file_name = 'NovelAI - 태그[장소].json' 20 | new_df2.to_json(os.path.join(full_path, '..', 'data', json_file_name), orient='records', force_ascii=False, indent=4) 21 | 22 | print("done!") -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | import importlib.util 2 | import os 3 | from aiohttp import web 4 | from server import PromptServer 5 | from .s_prompt import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS 6 | 7 | cur_dir = os.getcwd() 8 | server_path = os.path.join(cur_dir, 'ComfyUI', 'server.py') 9 | 10 | WEB_DIRECTORY = './web' 11 | __all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS', 'WEB_DIRECTORY'] 12 | 13 | -------------------------------------------------------------------------------- /data/Lighting_prompt.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag": "Sunlight" 4 | }, 5 | { 6 | "tag": "Rim_light" 7 | }, 8 | { 9 | "tag": "Volumetric_lighting" 10 | }, 11 | { 12 | "tag": "Backlight" 13 | }, 14 | { 15 | "tag": "Dimly_lit" 16 | }, 17 | { 18 | "tag": "Well-lit" 19 | }, 20 | { 21 | "tag": "Hard_light" 22 | }, 23 | { 24 | "tag": "Subsurface_scattering" 25 | }, 26 | { 27 | "tag": "Bounce_light" 28 | }, 29 | { 30 | "tag": "Ambient_light" 31 | }, 32 | { 33 | "tag": "Soft_Lighting" 34 | }, 35 | { 36 | "tag": "Butterfly_Lighting" 37 | }, 38 | { 39 | "tag": "Cinematic_Lighting" 40 | }, 41 | { 42 | "tag": "Moody_Lighting" 43 | }, 44 | { 45 | "tag": "Beautiful_Lighting" 46 | }, 47 | { 48 | "tag": "Studio_Lighting" 49 | }, 50 | { 51 | "tag": "Rembrandt_Lighting" 52 | } 53 | ] 54 | -------------------------------------------------------------------------------- /data/NovelAI - 태그[동작 2].json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag":"adjusting_clothes", 4 | "desc":"옷을 고치다" 5 | }, 6 | { 7 | "tag":"clothes_grab", 8 | "desc":"옷을 당기다" 9 | }, 10 | { 11 | "tag":"untying", 12 | "desc":"옷을 풀린다" 13 | }, 14 | { 15 | "tag":"open_clothes", 16 | "desc":"옷을 풀었다" 17 | }, 18 | { 19 | "tag":"wringing_clothes", 20 | "desc":"옷의 물을 짜다" 21 | }, 22 | { 23 | "tag":"untied", 24 | "desc":"옷을 묶지 않았다" 25 | }, 26 | { 27 | "tag":"undressing", 28 | "desc":"옷을 갈아 입는다" 29 | }, 30 | { 31 | "tag":"unzipped", 32 | "desc":"옷의 지퍼를 풀다" 33 | }, 34 | { 35 | "tag":"unzipping", 36 | "desc":"옷의 지퍼를 내리다" 37 | }, 38 | { 39 | "tag":"clothes_down", 40 | "desc":"옷을 아래로 내리다" 41 | }, 42 | { 43 | "tag":"clothing_aside", 44 | "desc":"옷을 옆으로 넘기다" 45 | }, 46 | { 47 | "tag":"open_hoodie", 48 | "desc":"옷을 옆으로 내리다" 49 | }, 50 | { 51 | "tag":"topless", 52 | "desc":"옷을 상의만 입었다" 53 | }, 54 | { 55 | "tag":"bottomless", 56 | "desc":"옷을 하의만 입었다" 57 | }, 58 | { 59 | "tag":"open_towel", 60 | "desc":"수건을 풀었다" 61 | }, 62 | { 63 | "tag":"towel_slip", 64 | "desc":"수건을 벗겨졌다" 65 | }, 66 | { 67 | "tag":"pajamas_pull", 68 | "desc":"잠옷을 아래로 내렸다" 69 | }, 70 | { 71 | "tag":"open_kimono", 72 | "desc":"기모노를 벗다" 73 | }, 74 | { 75 | "tag":"kimono_lift", 76 | "desc":"기모노를 위로 올리다" 77 | }, 78 | { 79 | "tag":"kimono_pull", 80 | "desc":"기모노를 아래로 내리다" 81 | }, 82 | { 83 | "tag":"yukata_lift", 84 | "desc":"유카타를 위로 올리다" 85 | }, 86 | { 87 | "tag":"leotard_pull", 88 | "desc":"레오타드를 위로 당기다" 89 | }, 90 | { 91 | "tag":"leotard_aside", 92 | "desc":"레오타드를 옆으로 넘기다" 93 | }, 94 | { 95 | "tag":"dress_pull", 96 | "desc":"드레스를 위로 올리다" 97 | }, 98 | { 99 | "tag":"dress_tug", 100 | "desc":"드레스를 아래로 내리다" 101 | }, 102 | { 103 | "tag":"dress_aside", 104 | "desc":"드레스를 옆으로 넘기다" 105 | }, 106 | { 107 | "tag":"adjusting_swimsuit", 108 | "desc":"수영복을 고치다" 109 | }, 110 | { 111 | "tag":"open_bikini", 112 | "desc":"수영복을 풀었다" 113 | }, 114 | { 115 | "tag":"torn_swimsuit", 116 | "desc":"수영복을 찢었다" 117 | }, 118 | { 119 | "tag":"bikini_lift", 120 | "desc":"수영복을 위로 올리다" 121 | }, 122 | { 123 | "tag":"bikini_pull", 124 | "desc":"수영복을 위로 당기다" 125 | }, 126 | { 127 | "tag":"swimsuit_pull", 128 | "desc":"수영복을 위로 당기다" 129 | }, 130 | { 131 | "tag":"bikini_aside", 132 | "desc":"수영복을 옆으로 넘기다" 133 | }, 134 | { 135 | "tag":"swimsuit_aside", 136 | "desc":"수영복을 옆으로 넘기다" 137 | }, 138 | { 139 | "tag":"bikini_top_only", 140 | "desc":"수영복을 상의만 입다" 141 | }, 142 | { 143 | "tag":"bikini_bottom_only", 144 | "desc":"수영복을 하의만 입다" 145 | }, 146 | { 147 | "tag":"swimsuit_cover-up", 148 | "desc":"수영복 위로 옷을 입다" 149 | }, 150 | { 151 | "tag":"swimsuit_under_clothes", 152 | "desc":"수영복을 옷 안에 입다" 153 | }, 154 | { 155 | "tag":"open_shirt", 156 | "desc":"셔츠를 풀었다" 157 | }, 158 | { 159 | "tag":"open_jacket", 160 | "desc":"재킷를 풀었다" 161 | }, 162 | { 163 | "tag":"open_coat", 164 | "desc":"코트를 풀었다" 165 | }, 166 | { 167 | "tag":"open_robe", 168 | "desc":"로브를 풀었다" 169 | }, 170 | { 171 | "tag":"open_collar", 172 | "desc":"셔츠의 옷깃을 풀었다" 173 | }, 174 | { 175 | "tag":"collar_grab", 176 | "desc":"셔츠의 옷깃을 잡았다" 177 | }, 178 | { 179 | "tag":"collar_tug", 180 | "desc":"셔츠의 옷깃을 당기다" 181 | }, 182 | { 183 | "tag":"shirt_lift", 184 | "desc":"셔츠를 위로 올렸다" 185 | }, 186 | { 187 | "tag":"cape_lift", 188 | "desc":"망토를 위로 올렸다" 189 | }, 190 | { 191 | "tag":"sweater_lift", 192 | "desc":"스웨터를 위로 올렸다" 193 | }, 194 | { 195 | "tag":"shirt_pull", 196 | "desc":"셔츠를 옆으로 당기다" 197 | }, 198 | { 199 | "tag":"shirt_slip", 200 | "desc":"셔츠를 옆으로 내리다" 201 | }, 202 | { 203 | "tag":"shirt_aside", 204 | "desc":"셔츠를 옆으로 넘기다" 205 | }, 206 | { 207 | "tag":"robe_slip", 208 | "desc":"가운을 옆으로 넘겼다" 209 | }, 210 | { 211 | "tag":"shirt_tug", 212 | "desc":"셔츠를 아래로 당기다" 213 | }, 214 | { 215 | "tag":"hood_down", 216 | "desc":"후드를 아래로 내리다" 217 | }, 218 | { 219 | "tag":"strap_lift", 220 | "desc":"셔츠의 끈을 위로 올린다" 221 | }, 222 | { 223 | "tag":"strap_slip", 224 | "desc":"셔츠의 끈을 아래로 내리다" 225 | }, 226 | { 227 | "tag":"sleeves_rolled_up", 228 | "desc":"셔츠의 소매를 위로 올렸다" 229 | }, 230 | { 231 | "tag":"sleeves_pushed_up", 232 | "desc":"셔츠의 끝을 위로 올려 묶다" 233 | }, 234 | { 235 | "tag":"one_breast_out", 236 | "desc":"셔츠를 내려 가슴 한쪽을 노출하다" 237 | }, 238 | { 239 | "tag":"breasts_out", 240 | "desc":"셔츠를 내려 가슴 양쪽을 노출하다" 241 | }, 242 | { 243 | "tag":"open_pants", 244 | "desc":"바지를 풀었다" 245 | }, 246 | { 247 | "tag":"pants_pull", 248 | "desc":"바지를 아래로 내렸다" 249 | }, 250 | { 251 | "tag":"open_shorts", 252 | "desc":"반바지를 풀었다" 253 | }, 254 | { 255 | "tag":"shorts_pull", 256 | "desc":"반바지를 아래로 내리다" 257 | }, 258 | { 259 | "tag":"shorts_aside", 260 | "desc":"반바지를 옆으로 넘기다" 261 | }, 262 | { 263 | "tag":"buruma_pull", 264 | "desc":"브루마를 아래로 내렸다" 265 | }, 266 | { 267 | "tag":"buruma_aside", 268 | "desc":"브루마를 옆으로 넘기다" 269 | }, 270 | { 271 | "tag":"hakama_pull", 272 | "desc":"하카마를 아래로 내리다" 273 | }, 274 | { 275 | "tag":"skirt_grab", 276 | "desc":"치마를 잡았다" 277 | }, 278 | { 279 | "tag":"open_skirt", 280 | "desc":"치마를 풀었다" 281 | }, 282 | { 283 | "tag":"skirt_lift", 284 | "desc":"치마를 위로 올리다" 285 | }, 286 | { 287 | "tag":"upskirt", 288 | "desc":"치마를 위로 올라갔다" 289 | }, 290 | { 291 | "tag":"skirt_tug", 292 | "desc":"치마를 아래로 당기다" 293 | }, 294 | { 295 | "tag":"skirt_pull", 296 | "desc":"치마를 아래로 내리다" 297 | }, 298 | { 299 | "tag":"extended_upskirt", 300 | "desc":"치마를 안에서 엿보다" 301 | }, 302 | { 303 | "tag":"skirt_around_one_leg", 304 | "desc":"치마를 다리에 걸었다" 305 | }, 306 | { 307 | "tag":"skirt_around_ankles", 308 | "desc":"치마를 발목에 걸었다" 309 | }, 310 | { 311 | "tag":"bra_removed", 312 | "desc":"브래지어를 벗다" 313 | }, 314 | { 315 | "tag":"bra_pull", 316 | "desc":"브래지어를 벗었다" 317 | }, 318 | { 319 | "tag":"holding_bra", 320 | "desc":"브래지어를 들다" 321 | }, 322 | { 323 | "tag":"torn_bra", 324 | "desc":"브래지어를 찢었다" 325 | }, 326 | { 327 | "tag":"adjusting_bra", 328 | "desc":"브래지어를 고치다" 329 | }, 330 | { 331 | "tag":"open_bra", 332 | "desc":"브래지어를 풀었다" 333 | }, 334 | { 335 | "tag":"no_bra", 336 | "desc":"브래지어를 입지 않다" 337 | }, 338 | { 339 | "tag":"bra_lift", 340 | "desc":"브래지어를 위로 올리다" 341 | }, 342 | { 343 | "tag":"bra_on_head", 344 | "desc":"브래지어를 머리에 씌우다" 345 | }, 346 | { 347 | "tag":"bra_on_ass", 348 | "desc":"브래지어를 엉덩이에 씌우다" 349 | }, 350 | { 351 | "tag":"holding_panties", 352 | "desc":"팬티를 들다" 353 | }, 354 | { 355 | "tag":"adjusting_panties", 356 | "desc":"팬티를 고치다" 357 | }, 358 | { 359 | "tag":"hand_in_panties", 360 | "desc":"팬티를 손대다" 361 | }, 362 | { 363 | "tag":"panties_around_ankles", 364 | "desc":"팬티를 발목에 걸다" 365 | }, 366 | { 367 | "tag":"panties_around_one_leg", 368 | "desc":"팬티를 다리에 걸다" 369 | }, 370 | { 371 | "tag":"panties_in_mouth", 372 | "desc":"팬티를 입 안에 넣다" 373 | }, 374 | { 375 | "tag":"panty_lift", 376 | "desc":"팬티를 위로 올리다" 377 | }, 378 | { 379 | "tag":"panty_pull", 380 | "desc":"팬티를 아래로 내리다" 381 | }, 382 | { 383 | "tag":"panties_aside", 384 | "desc":"팬티를 옆으로 넘기다" 385 | }, 386 | { 387 | "tag":"panties_on_breasts", 388 | "desc":"팬티를 가슴에 씌우다" 389 | }, 390 | { 391 | "tag":"panties_on_head", 392 | "desc":"팬티를 머리에 씌우다" 393 | }, 394 | { 395 | "tag":"holding_legwear", 396 | "desc":"양말을 들다" 397 | }, 398 | { 399 | "tag":"putting_on_legwear", 400 | "desc":"양말을 입다" 401 | }, 402 | { 403 | "tag":"pulling_off_legwear", 404 | "desc":"양말을 벗다" 405 | }, 406 | { 407 | "tag":"removing_legwear", 408 | "desc":"양말을 벗었다" 409 | }, 410 | { 411 | "tag":"adjusting_legwear", 412 | "desc":"양말을 고치다" 413 | }, 414 | { 415 | "tag":"wet_legwear", 416 | "desc":"양말이 젖었다" 417 | }, 418 | { 419 | "tag":"torn_legwear", 420 | "desc":"양말이 찢어졌다" 421 | }, 422 | { 423 | "tag":"taut_legwear", 424 | "desc":"양말이 팽팽하다" 425 | }, 426 | { 427 | "tag":"mismatched_legwear", 428 | "desc":"양말이 다른 걸 입다" 429 | }, 430 | { 431 | "tag":"pantyhose_pull", 432 | "desc":"팬티 스타킹을 내리다" 433 | }, 434 | { 435 | "tag":"holding_hat", 436 | "desc":"모자를 들다" 437 | }, 438 | { 439 | "tag":"hat_removed", 440 | "desc":"모자를 벗다" 441 | }, 442 | { 443 | "tag":"hat_tip", 444 | "desc":"모자를 잡다" 445 | }, 446 | { 447 | "tag":"putting_on_headwear", 448 | "desc":"모자를 씌우다" 449 | }, 450 | { 451 | "tag":"hat_loss", 452 | "desc":"모자를 날리다" 453 | }, 454 | { 455 | "tag":"torn_hat", 456 | "desc":"모자를 찢었다" 457 | }, 458 | { 459 | "tag":"tilted_headwear", 460 | "desc":"모자를 기울이다" 461 | }, 462 | { 463 | "tag":"adjusting_headwear", 464 | "desc":"모자를 고치다" 465 | }, 466 | { 467 | "tag":"backwards_hat", 468 | "desc":"모자를 거꾸로 쓰다" 469 | }, 470 | { 471 | "tag":"sideways_hat", 472 | "desc":"모자를 옆으로 쓰다" 473 | }, 474 | { 475 | "tag":"hand_on_headwear", 476 | "desc":"모자를 손으로 잡다" 477 | }, 478 | { 479 | "tag":"hat_on_chest", 480 | "desc":"모자를 가슴 위에 올리다" 481 | }, 482 | { 483 | "tag":"hat_over_one_eye", 484 | "desc":"모자를 눈 한쪽 위에 올리다" 485 | }, 486 | { 487 | "tag":"hat_over_eyes", 488 | "desc":"모자를 눈 양쪽 위에 올리다" 489 | }, 490 | { 491 | "tag":"holding_eyewear", 492 | "desc":"안경을 잡다" 493 | }, 494 | { 495 | "tag":"looking_for_glasses", 496 | "desc":"안경을 찾다" 497 | }, 498 | { 499 | "tag":"removing_eyewear", 500 | "desc":"안경을 벗다" 501 | }, 502 | { 503 | "tag":"eyewear_removed", 504 | "desc":"안경을 벗었다" 505 | }, 506 | { 507 | "tag":"crooked_eyewear", 508 | "desc":"안경을 기울이다" 509 | }, 510 | { 511 | "tag":"adjusting_eyewear", 512 | "desc":"안경을 조정하다" 513 | }, 514 | { 515 | "tag":"eyewear_switch", 516 | "desc":"안경을 바꿔 끼다" 517 | }, 518 | { 519 | "tag":"looking_over_eyewear", 520 | "desc":"안경을 끼고 엿본다" 521 | }, 522 | { 523 | "tag":"eyewear_view", 524 | "desc":"안경을 끼고 본다" 525 | }, 526 | { 527 | "tag":"eyewear_hang", 528 | "desc":"안경을 옷 위에 걸다" 529 | }, 530 | { 531 | "tag":"eyewear_in_mouth", 532 | "desc":"안경을 입으로 물다" 533 | }, 534 | { 535 | "tag":"hand_on_eyewear", 536 | "desc":"안경을 살짝 위로 올린다" 537 | }, 538 | { 539 | "tag":"eyewear_on_head", 540 | "desc":"안경을 머리 위에 올리다" 541 | }, 542 | { 543 | "tag":"eyewear_on_headwear", 544 | "desc":"안경을 모자 위에 올리다" 545 | }, 546 | { 547 | "tag":"holding_mask", 548 | "desc":"마스크를 들다" 549 | }, 550 | { 551 | "tag":"removing_mask", 552 | "desc":"마스크를 벗다" 553 | }, 554 | { 555 | "tag":"mask_removed", 556 | "desc":"마스크를 벗었다" 557 | }, 558 | { 559 | "tag":"mask_around_neck", 560 | "desc":"마스크를 목에 걸다" 561 | }, 562 | { 563 | "tag":"mask_lift", 564 | "desc":"마스크를 위로 올리다" 565 | }, 566 | { 567 | "tag":"mask_pull", 568 | "desc":"마스크를 아래로 당기다" 569 | }, 570 | { 571 | "tag":"mask_over_one_eye", 572 | "desc":"마스크를 눈 위에 올리다" 573 | }, 574 | { 575 | "tag":"mask_on_head", 576 | "desc":"마스크를 머리 위에 올리다" 577 | }, 578 | { 579 | "tag":"necktie_grab", 580 | "desc":"넥타이를 잡다" 581 | }, 582 | { 583 | "tag":"adjusting_earrings", 584 | "desc":"귀걸이를 고치다" 585 | } 586 | ] -------------------------------------------------------------------------------- /data/NovelAI - 태그[시점].json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag":"solo_focus", 4 | "desc":"단독 집중" 5 | }, 6 | { 7 | "tag":"male_focus", 8 | "desc":"남자에게 집중한다" 9 | }, 10 | { 11 | "tag":"girl_focus", 12 | "desc":"여자에게 집중한다" 13 | }, 14 | { 15 | "tag":"front_focus", 16 | "desc":"앞에 집중한다" 17 | }, 18 | { 19 | "tag":"back_focus", 20 | "desc":"뒤에 집중한다" 21 | }, 22 | { 23 | "tag":"other_focus", 24 | "desc":"밖에 집중한다" 25 | }, 26 | { 27 | "tag":"eye_focus", 28 | "desc":"눈에 집중한다" 29 | }, 30 | { 31 | "tag":"hand_focus", 32 | "desc":"손에 집중한다" 33 | }, 34 | { 35 | "tag":"foot_focus", 36 | "desc":"발에 집중한다" 37 | }, 38 | { 39 | "tag":"breast_focus", 40 | "desc":"가슴에 집중한다" 41 | }, 42 | { 43 | "tag":"pectoral_focus", 44 | "desc":"가슴에 집중한다" 45 | }, 46 | { 47 | "tag":"armpit_focus", 48 | "desc":"겨드랑이에 집중한다" 49 | }, 50 | { 51 | "tag":"navel_focus", 52 | "desc":"배꼽에 집중한다" 53 | }, 54 | { 55 | "tag":"thigh_focus", 56 | "desc":"허벅지에 집중한다" 57 | }, 58 | { 59 | "tag":"ass_focus", 60 | "desc":"엉덩이에 집중한다" 61 | }, 62 | { 63 | "tag":"hip_focus", 64 | "desc":"엉덩이에 집중한다" 65 | }, 66 | { 67 | "tag":"face", 68 | "desc":"얼굴을 강조한다" 69 | }, 70 | { 71 | "tag":"portrait", 72 | "desc":"초상화" 73 | }, 74 | { 75 | "tag":"upper_body", 76 | "desc":"상체에 집중한다" 77 | }, 78 | { 79 | "tag":"lower_body", 80 | "desc":"하체에 집중한다" 81 | }, 82 | { 83 | "tag":"cowboy_shot", 84 | "desc":"얼굴~허벅지에 집중한다" 85 | }, 86 | { 87 | "tag":"feet_out_of_frame", 88 | "desc":"얼굴~발목에 집중한다" 89 | }, 90 | { 91 | "tag":"fullbody", 92 | "desc":"몸에 집중한다" 93 | }, 94 | { 95 | "tag":"wide_shot", 96 | "desc":"멀리서 몸에 집중한다" 97 | }, 98 | { 99 | "tag":"very_wide_shot", 100 | "desc":"더 멀리서 몸에 집중한다" 101 | }, 102 | { 103 | "tag":"looking_at_viewer", 104 | "desc":"뷰어를 보고 있다" 105 | }, 106 | { 107 | "tag":"looking_up", 108 | "desc":"위를 보고 있다" 109 | }, 110 | { 111 | "tag":"looking_down", 112 | "desc":"아래를 보고 있다" 113 | }, 114 | { 115 | "tag":"looking_front", 116 | "desc":"앞을 보고 있다" 117 | }, 118 | { 119 | "tag":"looking_back", 120 | "desc":"뒤를 보고 있다" 121 | }, 122 | { 123 | "tag":"looking_away", 124 | "desc":"옆을 보고 있다" 125 | }, 126 | { 127 | "tag":"looking_afar", 128 | "desc":"먼 곳을 보고 있다" 129 | }, 130 | { 131 | "tag":"looking_outside", 132 | "desc":"밖을 보고 있다" 133 | }, 134 | { 135 | "tag":"looking_to_the_side", 136 | "desc":"측면을 보고 있다" 137 | }, 138 | { 139 | "tag":"eye_contact", 140 | "desc":"눈을 보고 있다" 141 | }, 142 | { 143 | "tag":"looking_at_hand", 144 | "desc":"손을 보고 있다" 145 | }, 146 | { 147 | "tag":"looking_through_legs", 148 | "desc":"다리를 보고 있다" 149 | }, 150 | { 151 | "tag":"looking_at_breasts", 152 | "desc":"가슴을 보고 있다" 153 | }, 154 | { 155 | "tag":"looking_at_ass", 156 | "desc":"엉덩이를 보고 있다" 157 | }, 158 | { 159 | "tag":"looking_at_another", 160 | "desc":"다른 사람을 보고 있다" 161 | }, 162 | { 163 | "tag":"looking_at_mirror", 164 | "desc":"거울을 보고 있다" 165 | }, 166 | { 167 | "tag":"looking_at_phone", 168 | "desc":"휴대전화를 보고 있다" 169 | }, 170 | { 171 | "tag":"looking_over_eyewear", 172 | "desc":"안경 밖을 보고 있다" 173 | } 174 | ] -------------------------------------------------------------------------------- /data/NovelAI - 태그[장소].json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag":"Asia", 4 | "desc":"아시아" 5 | }, 6 | { 7 | "tag":"Korea", 8 | "desc":"한국" 9 | }, 10 | { 11 | "tag":"North_Korea", 12 | "desc":"북한" 13 | }, 14 | { 15 | "tag":"Japan", 16 | "desc":"일본" 17 | }, 18 | { 19 | "tag":"China", 20 | "desc":"중국" 21 | }, 22 | { 23 | "tag":"Hong_Kong", 24 | "desc":"홍콩" 25 | }, 26 | { 27 | "tag":"Taiwan", 28 | "desc":"대만" 29 | }, 30 | { 31 | "tag":"Mongolia", 32 | "desc":"몽골" 33 | }, 34 | { 35 | "tag":"Thailand", 36 | "desc":"태국" 37 | }, 38 | { 39 | "tag":"Vietnam", 40 | "desc":"베트남" 41 | }, 42 | { 43 | "tag":"Canada", 44 | "desc":"캐나다" 45 | }, 46 | { 47 | "tag":"Mexico", 48 | "desc":"멕시코" 49 | }, 50 | { 51 | "tag":"America", 52 | "desc":"미국" 53 | }, 54 | { 55 | "tag":"Brazil", 56 | "desc":"브라질" 57 | }, 58 | { 59 | "tag":"Argentina", 60 | "desc":"아르헨티나" 61 | }, 62 | { 63 | "tag":"Uruguay", 64 | "desc":"우르과이" 65 | }, 66 | { 67 | "tag":"Chile", 68 | "desc":"칠레" 69 | }, 70 | { 71 | "tag":"Colombia", 72 | "desc":"콜롬비아" 73 | }, 74 | { 75 | "tag":"Paraguay", 76 | "desc":"파라과이" 77 | }, 78 | { 79 | "tag":"Russia", 80 | "desc":"러시아" 81 | }, 82 | { 83 | "tag":"Belarus", 84 | "desc":"벨라루스" 85 | }, 86 | { 87 | "tag":"Ukraine", 88 | "desc":"우크라이나" 89 | }, 90 | { 91 | "tag":"Netherlands", 92 | "desc":"네덜란드" 93 | }, 94 | { 95 | "tag":"Monaco", 96 | "desc":"모나코" 97 | }, 98 | { 99 | "tag":"Belgium", 100 | "desc":"벨기에" 101 | }, 102 | { 103 | "tag":"Ireland", 104 | "desc":"아일랜드" 105 | }, 106 | { 107 | "tag":"Briton", 108 | "desc":"영국" 109 | }, 110 | { 111 | "tag":"France", 112 | "desc":"프랑스" 113 | }, 114 | { 115 | "tag":"Greece", 116 | "desc":"그리스" 117 | }, 118 | { 119 | "tag":"Romania", 120 | "desc":"루마니아" 121 | }, 122 | { 123 | "tag":"Vatican", 124 | "desc":"바티칸" 125 | }, 126 | { 127 | "tag":"Bulgaria", 128 | "desc":"불가리아" 129 | }, 130 | { 131 | "tag":"Spain", 132 | "desc":"스페인" 133 | }, 134 | { 135 | "tag":"Italy", 136 | "desc":"이탈리아" 137 | }, 138 | { 139 | "tag":"Turkey", 140 | "desc":"터키" 141 | }, 142 | { 143 | "tag":"Portugal", 144 | "desc":"포르투갈" 145 | }, 146 | { 147 | "tag":"Norway", 148 | "desc":"노르웨이" 149 | }, 150 | { 151 | "tag":"Denmark", 152 | "desc":"덴마크" 153 | }, 154 | { 155 | "tag":"Sweden", 156 | "desc":"스웨덴" 157 | }, 158 | { 159 | "tag":"Finland", 160 | "desc":"핀란드" 161 | }, 162 | { 163 | "tag":"Iceland", 164 | "desc":"아이슬란드" 165 | }, 166 | { 167 | "tag":"house", 168 | "desc":"집" 169 | }, 170 | { 171 | "tag":"apartment", 172 | "desc":"아파트" 173 | }, 174 | { 175 | "tag":"hut", 176 | "desc":"오두막" 177 | }, 178 | { 179 | "tag":"shack", 180 | "desc":"오두막집" 181 | }, 182 | { 183 | "tag":"treehouse", 184 | "desc":"나무 위의집" 185 | }, 186 | { 187 | "tag":"stilt_house", 188 | "desc":"물 위의 집" 189 | }, 190 | { 191 | "tag":"closet", 192 | "desc":"옷장" 193 | }, 194 | { 195 | "tag":"bathroom", 196 | "desc":"화장실" 197 | }, 198 | { 199 | "tag":"bathtub", 200 | "desc":"욕조" 201 | }, 202 | { 203 | "tag":"bedroom", 204 | "desc":"침실" 205 | }, 206 | { 207 | "tag":"changing_room", 208 | "desc":"탈의실" 209 | }, 210 | { 211 | "tag":"dressing_room", 212 | "desc":"탈의실" 213 | }, 214 | { 215 | "tag":"fitting_room", 216 | "desc":"피팅룸" 217 | }, 218 | { 219 | "tag":"kitchen", 220 | "desc":"주방" 221 | }, 222 | { 223 | "tag":"living_room", 224 | "desc":"거실" 225 | }, 226 | { 227 | "tag":"messy_room", 228 | "desc":"지저분한방" 229 | }, 230 | { 231 | "tag":"otaku_room", 232 | "desc":"오타쿠방" 233 | }, 234 | { 235 | "tag":"shower", 236 | "desc":"샤워실" 237 | }, 238 | { 239 | "tag":"toilet_stall", 240 | "desc":"칸막이화장실" 241 | }, 242 | { 243 | "tag":"prison_cell", 244 | "desc":"감방" 245 | }, 246 | { 247 | "tag":"prison", 248 | "desc":"감옥" 249 | }, 250 | { 251 | "tag":"dungeon", 252 | "desc":"지하 감옥" 253 | }, 254 | { 255 | "tag":"minaret", 256 | "desc":"건물 난간" 257 | }, 258 | { 259 | "tag":"church", 260 | "desc":"교회" 261 | }, 262 | { 263 | "tag":"military_base", 264 | "desc":"군사 기지" 265 | }, 266 | { 267 | "tag":"bunker", 268 | "desc":"군사 벙커" 269 | }, 270 | { 271 | "tag":"library", 272 | "desc":"도서관" 273 | }, 274 | { 275 | "tag":"city", 276 | "desc":"도시" 277 | }, 278 | { 279 | "tag":"park", 280 | "desc":"공원" 281 | }, 282 | { 283 | "tag":"village", 284 | "desc":"마을" 285 | }, 286 | { 287 | "tag":"building", 288 | "desc":"빌딩" 289 | }, 290 | { 291 | "tag":"rural", 292 | "desc":"시골" 293 | }, 294 | { 295 | "tag":"floating_city", 296 | "desc":"이동하는 도시" 297 | }, 298 | { 299 | "tag":"garden", 300 | "desc":"정원" 301 | }, 302 | { 303 | "tag":"graveyard", 304 | "desc":"묘지" 305 | }, 306 | { 307 | "tag":"courtroom", 308 | "desc":"법정" 309 | }, 310 | { 311 | "tag":"infirmary", 312 | "desc":"병실" 313 | }, 314 | { 315 | "tag":"hospital", 316 | "desc":"병원" 317 | }, 318 | { 319 | "tag":"mosque", 320 | "desc":"사원" 321 | }, 322 | { 323 | "tag":"castle", 324 | "desc":"성" 325 | }, 326 | { 327 | "tag":"love hotel", 328 | "desc":"러브 호텔" 329 | }, 330 | { 331 | "tag":"hotel", 332 | "desc":"호텔" 333 | }, 334 | { 335 | "tag":"hotel_room", 336 | "desc":"호텔방" 337 | }, 338 | { 339 | "tag":"shrine", 340 | "desc":"신사" 341 | }, 342 | { 343 | "tag":"ruins", 344 | "desc":"유적" 345 | }, 346 | { 347 | "tag":"phone_booth", 348 | "desc":"전화 부스" 349 | }, 350 | { 351 | "tag":"temple", 352 | "desc":"절" 353 | }, 354 | { 355 | "tag":"school", 356 | "desc":"학교" 357 | }, 358 | { 359 | "tag":"rooftop", 360 | "desc":"건물 옥상" 361 | }, 362 | { 363 | "tag":"classroom", 364 | "desc":"교실" 365 | }, 366 | { 367 | "tag":"clubroom", 368 | "desc":"동아리실" 369 | }, 370 | { 371 | "tag":"office", 372 | "desc":"사무실" 373 | }, 374 | { 375 | "tag":"staff_room", 376 | "desc":"직원실" 377 | }, 378 | { 379 | "tag":"cubicle_1_cubicle", 380 | "desc":"1인 사무실" 381 | }, 382 | { 383 | "tag":"arcade", 384 | "desc":"게임장" 385 | }, 386 | { 387 | "tag":"stadium", 388 | "desc":"경기장" 389 | }, 390 | { 391 | "tag":"ferris_wheel", 392 | "desc":"관람차" 393 | }, 394 | { 395 | "tag":"amphitheater", 396 | "desc":"영화관" 397 | }, 398 | { 399 | "tag":"theater", 400 | "desc":"원형극장" 401 | }, 402 | { 403 | "tag":"amusement_park", 404 | "desc":"놀이공원" 405 | }, 406 | { 407 | "tag":"zoo", 408 | "desc":"동물원" 409 | }, 410 | { 411 | "tag":"roller_coaster", 412 | "desc":"롤러코스터" 413 | }, 414 | { 415 | "tag":"art_gallery", 416 | "desc":"미술관" 417 | }, 418 | { 419 | "tag":"museum", 420 | "desc":"박물관" 421 | }, 422 | { 423 | "tag":"mall", 424 | "desc":"쇼핑센터" 425 | }, 426 | { 427 | "tag":"aquarium", 428 | "desc":"수족관" 429 | }, 430 | { 431 | "tag":"bar", 432 | "desc":"술집" 433 | }, 434 | { 435 | "tag":"movie_theater", 436 | "desc":"영화관" 437 | }, 438 | { 439 | "tag":"onsen", 440 | "desc":"온천" 441 | }, 442 | { 443 | "tag":"nightclub", 444 | "desc":"클럽" 445 | }, 446 | { 447 | "tag":"arena", 448 | "desc":"투기장" 449 | }, 450 | { 451 | "tag":"carousel", 452 | "desc":"회전목마" 453 | }, 454 | { 455 | "tag":"stage", 456 | "desc":"무대" 457 | }, 458 | { 459 | "tag":"convention", 460 | "desc":"이벤트 무대" 461 | }, 462 | { 463 | "tag":"locker_room", 464 | "desc":"라커룸" 465 | }, 466 | { 467 | "tag":"bowling_alley", 468 | "desc":"볼링장" 469 | }, 470 | { 471 | "tag":"pool", 472 | "desc":"수영장" 473 | }, 474 | { 475 | "tag":"skating_rink", 476 | "desc":"스케이트장" 477 | }, 478 | { 479 | "tag":"playground", 480 | "desc":"운동장" 481 | }, 482 | { 483 | "tag":"running_track", 484 | "desc":"육상경기장" 485 | }, 486 | { 487 | "tag":"soccer_field", 488 | "desc":"축구장" 489 | }, 490 | { 491 | "tag":"waterpark", 492 | "desc":"워터파크" 493 | }, 494 | { 495 | "tag":"gym_storeroom", 496 | "desc":"체육관창고" 497 | }, 498 | { 499 | "tag":"poolside", 500 | "desc":"풀사이드" 501 | }, 502 | { 503 | "tag":"gym", 504 | "desc":"헬스장" 505 | }, 506 | { 507 | "tag":"shop", 508 | "desc":"가게" 509 | }, 510 | { 511 | "tag":"cafeteria", 512 | "desc":"구내식당" 513 | }, 514 | { 515 | "tag":"flower_shop", 516 | "desc":"꽃집" 517 | }, 518 | { 519 | "tag":"restaurant", 520 | "desc":"레스토랑" 521 | }, 522 | { 523 | "tag":"weapon_shop", 524 | "desc":"무기상점" 525 | }, 526 | { 527 | "tag":"armory", 528 | "desc":"무기창고" 529 | }, 530 | { 531 | "tag":"bakery", 532 | "desc":"빵집" 533 | }, 534 | { 535 | "tag":"salon", 536 | "desc":"샬롱" 537 | }, 538 | { 539 | "tag":"bookstore", 540 | "desc":"서점" 541 | }, 542 | { 543 | "tag":"sex_shop", 544 | "desc":"성인 도구가게" 545 | }, 546 | { 547 | "tag":"supermarket", 548 | "desc":"슈퍼 마켓" 549 | }, 550 | { 551 | "tag":"market", 552 | "desc":"시장" 553 | }, 554 | { 555 | "tag":"market_stall", 556 | "desc":"시장" 557 | }, 558 | { 559 | "tag":"dining_room", 560 | "desc":"식당" 561 | }, 562 | { 563 | "tag":"pharmacy", 564 | "desc":"야외" 565 | }, 566 | { 567 | "tag":"closet", 568 | "desc":"옷장" 569 | }, 570 | { 571 | "tag":"storage_room", 572 | "desc":"창고" 573 | }, 574 | { 575 | "tag":"cafe", 576 | "desc":"카페" 577 | }, 578 | { 579 | "tag":"convenience_store", 580 | "desc":"편의점" 581 | }, 582 | { 583 | "tag":"street", 584 | "desc":"거리" 585 | }, 586 | { 587 | "tag":"alley", 588 | "desc":"골목" 589 | }, 590 | { 591 | "tag":"path", 592 | "desc":"길" 593 | }, 594 | { 595 | "tag":"bridge", 596 | "desc":"다리" 597 | }, 598 | { 599 | "tag":"sidewalk", 600 | "desc":"보도" 601 | }, 602 | { 603 | "tag":"crosswalk", 604 | "desc":"횡단보도" 605 | }, 606 | { 607 | "tag":"stone_walkway", 608 | "desc":"돌 산책로" 609 | }, 610 | { 611 | "tag":"wooden_bridge", 612 | "desc":"나무 다리" 613 | }, 614 | { 615 | "tag":"rope_bridge", 616 | "desc":"밧줄 다리" 617 | }, 618 | { 619 | "tag":"road", 620 | "desc":"도로" 621 | }, 622 | { 623 | "tag":"highway", 624 | "desc":"고속도로" 625 | }, 626 | { 627 | "tag":"garage", 628 | "desc":"차고" 629 | }, 630 | { 631 | "tag":"tunnel", 632 | "desc":"터널" 633 | }, 634 | { 635 | "tag":"gas_station", 636 | "desc":"주유소" 637 | }, 638 | { 639 | "tag":"parking_lot", 640 | "desc":"주차장" 641 | }, 642 | { 643 | "tag":"train_station", 644 | "desc":"기차역" 645 | }, 646 | { 647 | "tag":"railroad_tracks", 648 | "desc":"철도 선로" 649 | }, 650 | { 651 | "tag":"railroad_crossing", 652 | "desc":"교차로" 653 | }, 654 | { 655 | "tag":"harbor", 656 | "desc":"항구" 657 | }, 658 | { 659 | "tag":"canal", 660 | "desc":"운하" 661 | }, 662 | { 663 | "tag":"pier", 664 | "desc":"교각" 665 | }, 666 | { 667 | "tag":"jetty", 668 | "desc":"선착장" 669 | }, 670 | { 671 | "tag":"airport", 672 | "desc":"공항" 673 | }, 674 | { 675 | "tag":"airfield", 676 | "desc":"비행장" 677 | }, 678 | { 679 | "tag":"hangar", 680 | "desc":"격납고" 681 | }, 682 | { 683 | "tag":"runway", 684 | "desc":"활주로" 685 | }, 686 | { 687 | "tag":"control_tower", 688 | "desc":"컨트롤 타워" 689 | }, 690 | { 691 | "tag":"construction_site", 692 | "desc":"건설현장" 693 | }, 694 | { 695 | "tag":"factory", 696 | "desc":"공장" 697 | }, 698 | { 699 | "tag":"flower_field", 700 | "desc":"꽃밭" 701 | }, 702 | { 703 | "tag":"cooling_tower", 704 | "desc":"냉각탑" 705 | }, 706 | { 707 | "tag":"wheat_field", 708 | "desc":"밀밭" 709 | }, 710 | { 711 | "tag":"powerplant", 712 | "desc":"발전소" 713 | }, 714 | { 715 | "tag":"field", 716 | "desc":"밭" 717 | }, 718 | { 719 | "tag":"laboratory", 720 | "desc":"실험실" 721 | }, 722 | { 723 | "tag":"rice_paddy", 724 | "desc":"쌀밭" 725 | }, 726 | { 727 | "tag":"conservatory", 728 | "desc":"온실" 729 | }, 730 | { 731 | "tag":"greenhouse", 732 | "desc":"온실" 733 | }, 734 | { 735 | "tag":"barn", 736 | "desc":"외양간" 737 | }, 738 | { 739 | "tag":"nuclear_powerplant", 740 | "desc":"원자력 발전소" 741 | }, 742 | { 743 | "tag":"workshop", 744 | "desc":"작업장" 745 | }, 746 | { 747 | "tag":"gazebo", 748 | "desc":"(정원의) 정자" 749 | }, 750 | { 751 | "tag":"refinery", 752 | "desc":"정련소" 753 | }, 754 | { 755 | "tag":"warehouse", 756 | "desc":"창고" 757 | }, 758 | { 759 | "tag":"river", 760 | "desc":"강" 761 | }, 762 | { 763 | "tag":"stream", 764 | "desc":"개울" 765 | }, 766 | { 767 | "tag":"cliff", 768 | "desc":"낭떠러지" 769 | }, 770 | { 771 | "tag":"bamboo_forest", 772 | "desc":"대나무숲" 773 | }, 774 | { 775 | "tag":"ocean", 776 | "desc":"대양" 777 | }, 778 | { 779 | "tag":"cave", 780 | "desc":"동굴" 781 | }, 782 | { 783 | "tag":"meadow", 784 | "desc":"목초지" 785 | }, 786 | { 787 | "tag":"jungle", 788 | "desc":"밀림" 789 | }, 790 | { 791 | "tag":"glacier", 792 | "desc":"빙하" 793 | }, 794 | { 795 | "tag":"desert", 796 | "desc":"사막" 797 | }, 798 | { 799 | "tag":"savannah", 800 | "desc":"사바나" 801 | }, 802 | { 803 | "tag":"mountain", 804 | "desc":"산" 805 | }, 806 | { 807 | "tag":"island", 808 | "desc":"섬" 809 | }, 810 | { 811 | "tag":"floating_island", 812 | "desc":"섬이 떠다니다" 813 | }, 814 | { 815 | "tag":"hill", 816 | "desc":"언덕" 817 | }, 818 | { 819 | "tag":"pond", 820 | "desc":"연못" 821 | }, 822 | { 823 | "tag":"oasis", 824 | "desc":"오아시스" 825 | }, 826 | { 827 | "tag":"geyser", 828 | "desc":"온천" 829 | }, 830 | { 831 | "tag":"nature", 832 | "desc":"자연" 833 | }, 834 | { 835 | "tag":"waterfall", 836 | "desc":"폭포" 837 | }, 838 | { 839 | "tag":"beach", 840 | "desc":"해변" 841 | }, 842 | { 843 | "tag":"shore", 844 | "desc":"해변가" 845 | }, 846 | { 847 | "tag":"ocean_bottom", 848 | "desc":"해저" 849 | }, 850 | { 851 | "tag":"canyon", 852 | "desc":"협곡" 853 | }, 854 | { 855 | "tag":"lake", 856 | "desc":"호수" 857 | }, 858 | { 859 | "tag":"volcano", 860 | "desc":"화산" 861 | }, 862 | { 863 | "tag":"wasteland", 864 | "desc":"황무지" 865 | }, 866 | { 867 | "tag":"megastructure", 868 | "desc":"거대 구조물" 869 | }, 870 | { 871 | "tag":"guard_tower", 872 | "desc":"경비탑" 873 | }, 874 | { 875 | "tag":"dam", 876 | "desc":"댐" 877 | }, 878 | { 879 | "tag":"dock", 880 | "desc":"둑" 881 | }, 882 | { 883 | "tag":"lighthouse", 884 | "desc":"등대" 885 | }, 886 | { 887 | "tag":"skyscraper", 888 | "desc":"마천루" 889 | }, 890 | { 891 | "tag":"fountain", 892 | "desc":"분수" 893 | }, 894 | { 895 | "tag":"aqueduct", 896 | "desc":"수로" 897 | }, 898 | { 899 | "tag":"clock_tower", 900 | "desc":"시계탑" 901 | }, 902 | { 903 | "tag":"space_elevator", 904 | "desc":"우주 엘리베이터" 905 | }, 906 | { 907 | "tag":"bell_tower", 908 | "desc":"종탑" 909 | }, 910 | { 911 | "tag":"pagoda", 912 | "desc":"탑" 913 | }, 914 | { 915 | "tag":"tower", 916 | "desc":"탑" 917 | } 918 | ] -------------------------------------------------------------------------------- /data/NovelAI - 태그[장신구].json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag":"hairband, headband", 4 | "desc":"머리띠" 5 | }, 6 | { 7 | "tag":"headdress", 8 | "desc":"머리 장식" 9 | }, 10 | { 11 | "tag":"hair_ribbon", 12 | "desc":"머리 리본" 13 | }, 14 | { 15 | "tag":"forehead_protector", 16 | "desc":"이마 보호대" 17 | }, 18 | { 19 | "tag":"sweatband", 20 | "desc":"땀띠" 21 | }, 22 | { 23 | "tag":"bandana", 24 | "desc":"두건(반다나)" 25 | }, 26 | { 27 | "tag":"bow_hairband", 28 | "desc":"양갈래 머리띠" 29 | }, 30 | { 31 | "tag":"frilled_hairband", 32 | "desc":"프릴 머리띠" 33 | }, 34 | { 35 | "tag":"lace_hairband", 36 | "desc":"레이스 머리띠" 37 | }, 38 | { 39 | "tag":"lace-trimmed_hairband", 40 | "desc":"레이스 장식 머리띠" 41 | }, 42 | { 43 | "tag":"lolita_hairband", 44 | "desc":"로리타 머리띠" 45 | }, 46 | { 47 | "tag":"spiked_hairband", 48 | "desc":"스파이크 머리티" 49 | }, 50 | { 51 | "tag":"striped_hairband", 52 | "desc":"줄무늬 머리띠" 53 | }, 54 | { 55 | "tag":"two-tone_hairband", 56 | "desc":"투 톤 머리띠" 57 | }, 58 | { 59 | "tag":"winged_hairband", 60 | "desc":"날개 달린" 61 | }, 62 | { 63 | "tag":"maid_headdress", 64 | "desc":"메이드 머리 장식" 65 | }, 66 | { 67 | "tag":"beret", 68 | "desc":"베레모" 69 | }, 70 | { 71 | "tag":"sombrero", 72 | "desc":"멕시코 모자" 73 | }, 74 | { 75 | "tag":"beanie", 76 | "desc":"비니" 77 | }, 78 | { 79 | "tag":"fur_hat", 80 | "desc":"모피 모자" 81 | }, 82 | { 83 | "tag":"nightcap", 84 | "desc":"수면 모자" 85 | }, 86 | { 87 | "tag":"party_hat", 88 | "desc":"파티 모자" 89 | }, 90 | { 91 | "tag":"nurse_cap", 92 | "desc":"간호사 모자" 93 | }, 94 | { 95 | "tag":"jester_cap", 96 | "desc":"광대 모자" 97 | }, 98 | { 99 | "tag":"kepi", 100 | "desc":"군사 모자" 101 | }, 102 | { 103 | "tag":"shako_cap", 104 | "desc":"군용 모자" 105 | }, 106 | { 107 | "tag":"campaign_hat", 108 | "desc":"군인(상관) 모자" 109 | }, 110 | { 111 | "tag":"tate_eboshi", 112 | "desc":"귀족 모자" 113 | }, 114 | { 115 | "tag":"witch_hat", 116 | "desc":"마녀 모자" 117 | }, 118 | { 119 | "tag":"mini_witch_hat", 120 | "desc":"작은 마녀 모자" 121 | }, 122 | { 123 | "tag":"wizard_hat", 124 | "desc":"마법사 모자" 125 | }, 126 | { 127 | "tag":"top_hat", 128 | "desc":"마술사 모자" 129 | }, 130 | { 131 | "tag":"mini_top_hat", 132 | "desc":"작은 마술사 모자" 133 | }, 134 | { 135 | "tag":"santa_hat", 136 | "desc":"산타" 137 | }, 138 | { 139 | "tag":"mini_santa_hat", 140 | "desc":"미니 산타" 141 | }, 142 | { 143 | "tag":"straw_hat", 144 | "desc":"밀짚모자" 145 | }, 146 | { 147 | "tag":"rice_hat", 148 | "desc":"밀짚모자(도사)" 149 | }, 150 | { 151 | "tag":"ajirogasa", 152 | "desc":"밀짚모자(승려)" 153 | }, 154 | { 155 | "tag":"aviator_cap", 156 | "desc":"비행사 모자" 157 | }, 158 | { 159 | "tag":"mitre", 160 | "desc":"사제 모자" 161 | }, 162 | { 163 | "tag":"sailor_hat", 164 | "desc":"선원 모자" 165 | }, 166 | { 167 | "tag":"habit", 168 | "desc":"성직자 모자" 169 | }, 170 | { 171 | "tag":"baseball_cap", 172 | "desc":"야구 모자" 173 | }, 174 | { 175 | "tag":"female_service_cap", 176 | "desc":"여성 유니폼 모자" 177 | }, 178 | { 179 | "tag":"chef_hat", 180 | "desc":"요리사 모자" 181 | }, 182 | { 183 | "tag":"toque_blanche", 184 | "desc":"빵 요리사 모자" 185 | }, 186 | { 187 | "tag":"flat_top_chef_hat", 188 | "desc":"접힌 요리사 모자" 189 | }, 190 | { 191 | "tag":"tsunokakushi", 192 | "desc":"일본 결혼식 모자" 193 | }, 194 | { 195 | "tag":"mortarboard_collage_graduation_hat", 196 | "desc":"졸업 모자" 197 | }, 198 | { 199 | "tag":"cowboy_hat", 200 | "desc":"카우보이 모자" 201 | }, 202 | { 203 | "tag":"deerstalker", 204 | "desc":"탐정 모자" 205 | }, 206 | { 207 | "tag":"fedora", 208 | "desc":"탐정 모자" 209 | }, 210 | { 211 | "tag":"pith_helmet", 212 | "desc":"탐험가 모자" 213 | }, 214 | { 215 | "tag":"tokin_hat", 216 | "desc":"텐구 모자" 217 | }, 218 | { 219 | "tag":"dixie_cup_hat", 220 | "desc":"해군 모자" 221 | }, 222 | { 223 | "tag":"bicorne", 224 | "desc":"해적 모자" 225 | }, 226 | { 227 | "tag":"pirate_hat", 228 | "desc":"해적 모자" 229 | }, 230 | { 231 | "tag":"cloche_hat", 232 | "desc":"동그란 모자" 233 | }, 234 | { 235 | "tag":"visor_cap", 236 | "desc":"바이저 캡" 237 | }, 238 | { 239 | "tag":"peaked_cap", 240 | "desc":"뾰족한 모자" 241 | }, 242 | { 243 | "tag":"tricorne", 244 | "desc":"삼각뿔 모자" 245 | }, 246 | { 247 | "tag":"garrison_cap", 248 | "desc":"삼각형 모자" 249 | }, 250 | { 251 | "tag":"fez_hat", 252 | "desc":"원통형 모자" 253 | }, 254 | { 255 | "tag":"bowler_hat", 256 | "desc":"챙이 작은 모자" 257 | }, 258 | { 259 | "tag":"sun_hat", 260 | "desc":"챙이 긴 모자" 261 | }, 262 | { 263 | "tag":"boater_hat", 264 | "desc":"챙이 넓고 납작한 모자" 265 | }, 266 | { 267 | "tag":"bucket_hat", 268 | "desc":"폭이 넓고 길쭉한 모자" 269 | }, 270 | { 271 | "tag":"flat_cap", 272 | "desc":"한쪽으로 기울인 모자" 273 | }, 274 | { 275 | "tag":"mob_cap", 276 | "desc":"머리카락을 덮는 모자" 277 | }, 278 | { 279 | "tag":"winged_helmet", 280 | "desc":"날개 달린 헬맷" 281 | }, 282 | { 283 | "tag":"diving_helmet", 284 | "desc":"다이빙 헬맷" 285 | }, 286 | { 287 | "tag":"pickelhaube", 288 | "desc":"독일군 헬맷" 289 | }, 290 | { 291 | "tag":"american_football_helmet", 292 | "desc":"미식축구" 293 | }, 294 | { 295 | "tag":"horned_helmet", 296 | "desc":"뿔 달린 헬맷" 297 | }, 298 | { 299 | "tag":"baseball_helmet", 300 | "desc":"야구 헬맷" 301 | }, 302 | { 303 | "tag":"motorcycle_helmet", 304 | "desc":"오토바이 헬멧" 305 | }, 306 | { 307 | "tag":"bicycle_helmet", 308 | "desc":"자전거 헬맷" 309 | }, 310 | { 311 | "tag":"veil", 312 | "desc":"베일" 313 | }, 314 | { 315 | "tag":"bonnet", 316 | "desc":"보닛" 317 | }, 318 | { 319 | "tag":"circlet", 320 | "desc":"서클릿" 321 | }, 322 | { 323 | "tag":"Crowns", 324 | "desc":"왕관" 325 | }, 326 | { 327 | "tag":"mini_crown", 328 | "desc":"작은 왕관" 329 | }, 330 | { 331 | "tag":"diadem", 332 | "desc":"천 왕관" 333 | }, 334 | { 335 | "tag":"tiara", 336 | "desc":"티아라" 337 | }, 338 | { 339 | "tag":"3d_glasses", 340 | "desc":"3D 안경" 341 | }, 342 | { 343 | "tag":"goggles", 344 | "desc":"고글" 345 | }, 346 | { 347 | "tag":"monocle", 348 | "desc":"단안경" 349 | }, 350 | { 351 | "tag":"opera_glasses", 352 | "desc":"오페라 안경" 353 | }, 354 | { 355 | "tag":"diving_mask", 356 | "desc":"다이빙 안경" 357 | }, 358 | { 359 | "tag":"safety_glasses", 360 | "desc":"보호 안결" 361 | }, 362 | { 363 | "tag":"flight_goggles", 364 | "desc":"비행 고글" 365 | }, 366 | { 367 | "tag":"aviator_sunglasses", 368 | "desc":"비행가 안경" 369 | }, 370 | { 371 | "tag":"shooting_glasses", 372 | "desc":"사격 안경" 373 | }, 374 | { 375 | "tag":"ski_goggles", 376 | "desc":"스키 고글" 377 | }, 378 | { 379 | "tag":"coke-bottle_glasses", 380 | "desc":"연구원 안경" 381 | }, 382 | { 383 | "tag":"round_eyewear", 384 | "desc":"둥근 모양 안경" 385 | }, 386 | { 387 | "tag":"rectangular_eyewear", 388 | "desc":"직사각형 안경" 389 | }, 390 | { 391 | "tag":"heart-shaped_eyewear", 392 | "desc":"하트 모양 안경" 393 | }, 394 | { 395 | "tag":"star-shaped_eyewear", 396 | "desc":"별 모양 안경" 397 | }, 398 | { 399 | "tag":"teardrop-framed_glasses", 400 | "desc":"눈물 모양 안경" 401 | }, 402 | { 403 | "tag":"funny_glasses", 404 | "desc":"재밌는 안경" 405 | }, 406 | { 407 | "tag":"triangular_eyewear", 408 | "desc":"반투명한 안경" 409 | }, 410 | { 411 | "tag":"opaque_glasses", 412 | "desc":"불투명한 안경" 413 | }, 414 | { 415 | "tag":"lorgnette", 416 | "desc":"손으로 잡는 안경" 417 | }, 418 | { 419 | "tag":"pince-nez", 420 | "desc":"콧대에 지지하는 안경" 421 | }, 422 | { 423 | "tag":"eyewear_strap", 424 | "desc":"안경끈 달린 안경" 425 | }, 426 | { 427 | "tag":"rimless_eyewear", 428 | "desc":"안경테가 없는 안경" 429 | }, 430 | { 431 | "tag":"over-rim_eyewear", 432 | "desc":"안경테가 두꺼운 안경" 433 | }, 434 | { 435 | "tag":"under-rim_eyewear", 436 | "desc":"안경테가 위쪽만 있는 안경" 437 | }, 438 | { 439 | "tag":"teardrop-framed_glasses", 440 | "desc":"안경테가 아래쪽만 있는 안경" 441 | }, 442 | { 443 | "tag":"semi-rimless_eyewear", 444 | "desc":"안경테가 하단만 있는 안경" 445 | }, 446 | { 447 | "tag":"clown_mask", 448 | "desc":"광대 가면" 449 | }, 450 | { 451 | "tag":"ninja_mask", 452 | "desc":"닌자 가면" 453 | }, 454 | { 455 | "tag":"domino_mask", 456 | "desc":"도미노 가면" 457 | }, 458 | { 459 | "tag":"wrestling_mask", 460 | "desc":"레슬링" 461 | }, 462 | { 463 | "tag":"luchador_mask", 464 | "desc":"루차도르 가면" 465 | }, 466 | { 467 | "tag":"eye_mask", 468 | "desc":"안대" 469 | }, 470 | { 471 | "tag":"plague_doctor_mask", 472 | "desc":"역병의사 가면" 473 | }, 474 | { 475 | "tag":"oni_mask", 476 | "desc":"오니 마스크" 477 | }, 478 | { 479 | "tag":"carnival_mask", 480 | "desc":"축제 가면" 481 | }, 482 | { 483 | "tag":"character_mask", 484 | "desc":"캐릭터 가면" 485 | }, 486 | { 487 | "tag":"hockey_mask", 488 | "desc":"하키 가면" 489 | }, 490 | { 491 | "tag":"skull_mask", 492 | "desc":"해골 마스크" 493 | }, 494 | { 495 | "tag":"hyottoko_mask", 496 | "desc":"효토코 가면" 497 | }, 498 | { 499 | "tag":"gas_mask", 500 | "desc":"방독면" 501 | }, 502 | { 503 | "tag":"diving_mask", 504 | "desc":"다이빙 마스크" 505 | }, 506 | { 507 | "tag":"oxygen_mask", 508 | "desc":"산소 마스크" 509 | }, 510 | { 511 | "tag":"sleep_mask", 512 | "desc":"수면 마스크" 513 | }, 514 | { 515 | "tag":"surgical_mask", 516 | "desc":"수술 마스크" 517 | }, 518 | { 519 | "tag":"welding_mask", 520 | "desc":"용접 마스크" 521 | }, 522 | { 523 | "tag":"broken_mask", 524 | "desc":"깨진 가면" 525 | }, 526 | { 527 | "tag":"half_mask", 528 | "desc":"반쪽 가면" 529 | }, 530 | { 531 | "tag":"mouth_mask", 532 | "desc":"입 가면" 533 | }, 534 | { 535 | "tag":"mouth_veil", 536 | "desc":"입 베일" 537 | }, 538 | { 539 | "tag":"Magatama_earrings", 540 | "desc":"곡옥 귀걸이" 541 | }, 542 | { 543 | "tag":"Tassel_earrings", 544 | "desc":"술이 달린 귀걸이" 545 | }, 546 | { 547 | "tag":"Shell_earrings", 548 | "desc":"쉘 귀걸이" 549 | }, 550 | { 551 | "tag":"Yin_yang_earrings", 552 | "desc":"음양사 귀걸이" 553 | }, 554 | { 555 | "tag":"Bell_earrings", 556 | "desc":"종 귀걸이" 557 | }, 558 | { 559 | "tag":"Crescent_earrings", 560 | "desc":"초승달 귀걸이" 561 | }, 562 | { 563 | "tag":"Pom_pom_earrings", 564 | "desc":"털 장식 귀걸이" 565 | }, 566 | { 567 | "tag":"Skull_earrings", 568 | "desc":"해골 귀걸이" 569 | }, 570 | { 571 | "tag":"Flower_earrings", 572 | "desc":"꽃 귀걸이" 573 | }, 574 | { 575 | "tag":"Crystal_earrings", 576 | "desc":"수정 귀걸이" 577 | }, 578 | { 579 | "tag":"Snowflake_earrings", 580 | "desc":"눈송이 귀걸이" 581 | }, 582 | { 583 | "tag":"Strawberry_earrings", 584 | "desc":"딸기 귀걸이" 585 | }, 586 | { 587 | "tag":"Star_earrings", 588 | "desc":"별 귀걸이" 589 | }, 590 | { 591 | "tag":"Spade_earrings", 592 | "desc":"스페이드 귀걸이" 593 | }, 594 | { 595 | "tag":"Cross_earrings", 596 | "desc":"십자가 귀걸이" 597 | }, 598 | { 599 | "tag":"Pill_earrings", 600 | "desc":"알약 귀걸이" 601 | }, 602 | { 603 | "tag":"Heart_earrings", 604 | "desc":"하트 귀걸이" 605 | }, 606 | { 607 | "tag":"Planet_earrings", 608 | "desc":"행성 귀걸이" 609 | }, 610 | { 611 | "tag":"scarf", 612 | "desc":"스카프" 613 | }, 614 | { 615 | "tag":"Cravate", 616 | "desc":"크라밧" 617 | }, 618 | { 619 | "tag":"Jabot", 620 | "desc":"자벳" 621 | }, 622 | { 623 | "tag":"Ascot_Tie", 624 | "desc":"애스콧 타이" 625 | }, 626 | { 627 | "tag":"bowtie", 628 | "desc":"나비 넥타이" 629 | }, 630 | { 631 | "tag":"Stock_Tie", 632 | "desc":"스톡 타이" 633 | }, 634 | { 635 | "tag":"Bolo_Tie", 636 | "desc":"볼로 타이" 637 | }, 638 | { 639 | "tag":"neck_ribbon", 640 | "desc":"리본 타이" 641 | }, 642 | { 643 | "tag":"cross_tie", 644 | "desc":"끈 타이" 645 | }, 646 | { 647 | "tag":"choker", 648 | "desc":"쵸커" 649 | }, 650 | { 651 | "tag":"ribbon_choker", 652 | "desc":"리본 쵸커" 653 | }, 654 | { 655 | "tag":"bell_choker", 656 | "desc":"종 쵸커" 657 | }, 658 | { 659 | "tag":"necklace", 660 | "desc":"목걸이" 661 | }, 662 | { 663 | "tag":"locket", 664 | "desc":"로켓" 665 | }, 666 | { 667 | "tag":"amulet", 668 | "desc":"팬던트" 669 | }, 670 | { 671 | "tag":"pentacle", 672 | "desc":"팬타클" 673 | }, 674 | { 675 | "tag":"flower_necklace", 676 | "desc":"꽃 목걸이" 677 | }, 678 | { 679 | "tag":"pendant", 680 | "desc":"진주 목걸이" 681 | }, 682 | { 683 | "tag":"chain_necklace", 684 | "desc":"체인 목걸이" 685 | }, 686 | { 687 | "tag":"magatama", 688 | "desc":"마가타마(일본 옥 목걸이)" 689 | }, 690 | { 691 | "tag":"goggles_around_neck", 692 | "desc":"고글" 693 | }, 694 | { 695 | "tag":"neckerchief", 696 | "desc":"목도리" 697 | }, 698 | { 699 | "tag":"lanyard", 700 | "desc":"사원증" 701 | }, 702 | { 703 | "tag":"stole", 704 | "desc":"스톨" 705 | }, 706 | { 707 | "tag":"headphones_around_neck", 708 | "desc":"헤드폰" 709 | }, 710 | { 711 | "tag":"brass_knuckles", 712 | "desc":"너클" 713 | }, 714 | { 715 | "tag":"spiked_knuckles", 716 | "desc":"뾰족한 너클" 717 | }, 718 | { 719 | "tag":"rubber_gloves", 720 | "desc":"고무 장갑" 721 | }, 722 | { 723 | "tag":"leather_gloves", 724 | "desc":"가죽 장갑" 725 | }, 726 | { 727 | "tag":"plastic_gloves", 728 | "desc":"비닐 장갑" 729 | }, 730 | { 731 | "tag":"latex_gloves", 732 | "desc":"라텍스 장갑" 733 | }, 734 | { 735 | "tag":"martial_arts_gloves", 736 | "desc":"격투기 장갑" 737 | }, 738 | { 739 | "tag":"goalkeeper_gloves", 740 | "desc":"골키퍼 장갑" 741 | }, 742 | { 743 | "tag":"golf_gloves", 744 | "desc":"골프 장갑" 745 | }, 746 | { 747 | "tag":"boxing_club", 748 | "desc":"권투 클러브" 749 | }, 750 | { 751 | "tag":"billiard_gloves", 752 | "desc":"당구 장갑" 753 | }, 754 | { 755 | "tag":"climbing_gloves", 756 | "desc":"등산용 장갑" 757 | }, 758 | { 759 | "tag":"racing_gloves", 760 | "desc":"레이싱 글러브" 761 | }, 762 | { 763 | "tag":"ice_gloves", 764 | "desc":"빙상용 장갑" 765 | }, 766 | { 767 | "tag":"ski_gloves", 768 | "desc":"스키 장갑" 769 | }, 770 | { 771 | "tag":"baseball_glove", 772 | "desc":"야구 장갑" 773 | }, 774 | { 775 | "tag":"baseball_gloves", 776 | "desc":"야구 장갑" 777 | }, 778 | { 779 | "tag":"motorcycle_gloves", 780 | "desc":"오토바이 장갑" 781 | }, 782 | { 783 | "tag":"Health_glove", 784 | "desc":"헬스 글러브" 785 | }, 786 | { 787 | "tag":"opera_glove", 788 | "desc":"오페라 글러브" 789 | }, 790 | { 791 | "tag":"ceremonial_cotton_gloves", 792 | "desc":"의례용 면장갑" 793 | }, 794 | { 795 | "tag":"safety_gloves", 796 | "desc":"안전 장갑" 797 | }, 798 | { 799 | "tag":"tactical_gloves", 800 | "desc":"전술 장갑" 801 | }, 802 | { 803 | "tag":"combat_gloves", 804 | "desc":"전투용 장갑" 805 | }, 806 | { 807 | "tag":"heat-dissipating_gloves", 808 | "desc":"방열 장갑" 809 | }, 810 | { 811 | "tag":"gas-proof_gloves", 812 | "desc":"방검 장갑" 813 | }, 814 | { 815 | "tag":"cold_gloves", 816 | "desc":"방한 장갑" 817 | }, 818 | { 819 | "tag":"wing_ears", 820 | "desc":"날개 달린 귀" 821 | }, 822 | { 823 | "tag":"wing_ribbon", 824 | "desc":"날개 리본" 825 | }, 826 | { 827 | "tag":"winged_hat", 828 | "desc":"날개 달린 모자" 829 | }, 830 | { 831 | "tag":"Winged_footwear", 832 | "desc":"날개 달린 신발" 833 | }, 834 | { 835 | "tag":"Winged_helmet", 836 | "desc":"날개 달린 헬맷" 837 | }, 838 | { 839 | "tag":"Winged_bag", 840 | "desc":"날개 달린 가방" 841 | }, 842 | { 843 | "tag":"Tail_ring", 844 | "desc":"꼬리 고리" 845 | }, 846 | { 847 | "tag":"Tail_bow", 848 | "desc":"꼬리 리본" 849 | }, 850 | { 851 | "tag":"Tail_ribbon", 852 | "desc":"꼬리 리본" 853 | }, 854 | { 855 | "tag":"Tail_ornament", 856 | "desc":"꼬리 장식품" 857 | }, 858 | { 859 | "tag":"Tail_bell", 860 | "desc":"꼬리 종" 861 | }, 862 | { 863 | "tag":"Tail_piercing", 864 | "desc":"꼬리 피어싱" 865 | }, 866 | { 867 | "tag":"Tongue_piercing", 868 | "desc":"혀 피어싱" 869 | }, 870 | { 871 | "tag":"Nose_piercing", 872 | "desc":"코 피어싱" 873 | }, 874 | { 875 | "tag":"Ear_piercing", 876 | "desc":"귀 피어싱" 877 | }, 878 | { 879 | "tag":"Collarbone_piercing", 880 | "desc":"배꼽 피어싱" 881 | }, 882 | { 883 | "tag":"Single_earring", 884 | "desc":"귀걸이 한 개" 885 | }, 886 | { 887 | "tag":"Multiple_earrings", 888 | "desc":"귀걸이 여러 개" 889 | }, 890 | { 891 | "tag":"Industrial_piercing", 892 | "desc":"위쪽 귀 두 개 피어싱" 893 | }, 894 | { 895 | "tag":"Eyebrow_piercing", 896 | "desc":"눈썹 피어싱" 897 | }, 898 | { 899 | "tag":"Anti-eyebrow_piercing", 900 | "desc":"눈썹 아래 피어싱" 901 | }, 902 | { 903 | "tag":"Eyelid_piercing", 904 | "desc":"눈꺼풀 피어싱" 905 | } 906 | ] -------------------------------------------------------------------------------- /data/NovelAI - 태그[체형].json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag":"male", 4 | "desc":"남성" 5 | }, 6 | { 7 | "tag":"female", 8 | "desc":"여성" 9 | }, 10 | { 11 | "tag":"Trans_man", 12 | "desc":"트랜스 남성" 13 | }, 14 | { 15 | "tag":"Trans_woman", 16 | "desc":"트랜스 여성" 17 | }, 18 | { 19 | "tag":"boy, shota", 20 | "desc":"소년" 21 | }, 22 | { 23 | "tag":"girl, loli", 24 | "desc":"소녀" 25 | }, 26 | { 27 | "tag":"teenboy", 28 | "desc":"청년 남성" 29 | }, 30 | { 31 | "tag":"teengirl", 32 | "desc":"청년 여성" 33 | }, 34 | { 35 | "tag":"mature_male", 36 | "desc":"중년 남성" 37 | }, 38 | { 39 | "tag":"mature_female, milf", 40 | "desc":"중년 여성" 41 | }, 42 | { 43 | "tag":"short", 44 | "desc":"키가 작다" 45 | }, 46 | { 47 | "tag":"littleshort", 48 | "desc":"키가 살짝 작다" 49 | }, 50 | { 51 | "tag":"averageheight", 52 | "desc":"키가 평범하다" 53 | }, 54 | { 55 | "tag":"tall", 56 | "desc":"키가 크다" 57 | }, 58 | { 59 | "tag":"verytall", 60 | "desc":"키가 매우 크다" 61 | }, 62 | { 63 | "tag":"upper_body", 64 | "desc":"상체" 65 | }, 66 | { 67 | "tag":"lower_body", 68 | "desc":"하체" 69 | }, 70 | { 71 | "tag":"skinny", 72 | "desc":"몸이 말랐다" 73 | }, 74 | { 75 | "tag":"slender", 76 | "desc":"몸이 날씬하다" 77 | }, 78 | { 79 | "tag":"glamorous", 80 | "desc":"몸이 매혹적이다" 81 | }, 82 | { 83 | "tag":"busty", 84 | "desc":"몸이 통통하다" 85 | }, 86 | { 87 | "tag":"curvy", 88 | "desc":"몸이 살짝 통통하다" 89 | }, 90 | { 91 | "tag":"fat", 92 | "desc":"몸이 뚱뚱하다" 93 | }, 94 | { 95 | "tag":"chubby", 96 | "desc":"몸이 살짝 뚱뚱하다" 97 | }, 98 | { 99 | "tag":"thin_stomach", 100 | "desc":"배가 말랐다" 101 | }, 102 | { 103 | "tag":"slender_stomach", 104 | "desc":"배가 가늘다" 105 | }, 106 | { 107 | "tag":"heavy_stomach", 108 | "desc":"배가 통통하다" 109 | }, 110 | { 111 | "tag":"chubby_stomach", 112 | "desc":"배가 뚱뚱하다" 113 | }, 114 | { 115 | "tag":"skinny_abs", 116 | "desc":"복근이 가늘다" 117 | }, 118 | { 119 | "tag":"thick_abs", 120 | "desc":"복근이 두껍다" 121 | }, 122 | { 123 | "tag":"chubby_abs", 124 | "desc":"복근이 통통하다" 125 | }, 126 | { 127 | "tag":"11_line_abs", 128 | "desc":"복근이 매끈하다" 129 | }, 130 | { 131 | "tag":"thinwaist", 132 | "desc":"허리가 얇다" 133 | }, 134 | { 135 | "tag":"slenderwaist", 136 | "desc":"허리가 가늘다" 137 | }, 138 | { 139 | "tag":"thickwaist", 140 | "desc":"허리가 두껍다" 141 | }, 142 | { 143 | "tag":"chubbywaist", 144 | "desc":"허리가 통통하다" 145 | }, 146 | { 147 | "tag":"small_ass", 148 | "desc":"엉덩이가 작다" 149 | }, 150 | { 151 | "tag":"small_medium_ass", 152 | "desc":"엉덩이가 살짝 작다" 153 | }, 154 | { 155 | "tag":"flat_ass", 156 | "desc":"엉덩이가 평평하다" 157 | }, 158 | { 159 | "tag":"medium_ass", 160 | "desc":"엉덩이가 평범하다" 161 | }, 162 | { 163 | "tag":"large_ass", 164 | "desc":"엉덩이가 크다" 165 | }, 166 | { 167 | "tag":"huge_ass", 168 | "desc":"엉덩이가 매우 크다" 169 | }, 170 | { 171 | "tag":"gigantic_ass", 172 | "desc":"엉덩이가 엄청 크다" 173 | }, 174 | { 175 | "tag":"white_skin", 176 | "desc":"몸이 하얗다" 177 | }, 178 | { 179 | "tag":"dark_skin", 180 | "desc":"몸이 어둡다" 181 | }, 182 | { 183 | "tag":"tanned_skin", 184 | "desc":"몸이 구릿빛이다" 185 | }, 186 | { 187 | "tag":"completely_nude", 188 | "desc":"몸이 알몸이다" 189 | }, 190 | { 191 | "tag":"sweat", 192 | "desc":"땀을 흘린다" 193 | }, 194 | { 195 | "tag":"sweating_profusely", 196 | "desc":"땀을 흘린다" 197 | }, 198 | { 199 | "tag":"steamsweat", 200 | "desc":"땀을 뻘뻘 흘린다" 201 | }, 202 | { 203 | "tag":"wet", 204 | "desc":"몸이 젖었다" 205 | }, 206 | { 207 | "tag":"soggywet,soggysweat", 208 | "desc":"몸이 푹 젖었다" 209 | }, 210 | { 211 | "tag":"oiledwet", 212 | "desc":"몸에 오일에 젖었다" 213 | }, 214 | { 215 | "tag":"flat_chest", 216 | "desc":"가슴이 평평하다" 217 | }, 218 | { 219 | "tag":"small_breasts", 220 | "desc":"가슴이 작다" 221 | }, 222 | { 223 | "tag":"small_medium_breasts", 224 | "desc":"가슴이 살짝 작다" 225 | }, 226 | { 227 | "tag":"medium_breasts", 228 | "desc":"가슴이 평범하다" 229 | }, 230 | { 231 | "tag":"large_breasts", 232 | "desc":"가슴이 크다" 233 | }, 234 | { 235 | "tag":"huge_breasts", 236 | "desc":"가슴이 매우 크다" 237 | }, 238 | { 239 | "tag":"gigantic_breasts", 240 | "desc":"가슴이 엄청 크다" 241 | }, 242 | { 243 | "tag":"small_areolae", 244 | "desc":"유륜이 작다" 245 | }, 246 | { 247 | "tag":"large_areolae", 248 | "desc":"유륜이 크다" 249 | }, 250 | { 251 | "tag":"small_nipples", 252 | "desc":"젖꼭지가 작다" 253 | }, 254 | { 255 | "tag":"long_nipples", 256 | "desc":"젖꼭지가 길다" 257 | }, 258 | { 259 | "tag":"sagging_breasts", 260 | "desc":"가슴이 늘어졌다" 261 | }, 262 | { 263 | "tag":"veiny_breasts", 264 | "desc":"가슴이 풍선같다" 265 | }, 266 | { 267 | "tag":"pointy_breasts", 268 | "desc":"가슴이 뾰족하다" 269 | }, 270 | { 271 | "tag":"asymmetrical_breasts", 272 | "desc":"가슴이 비대칭이다" 273 | }, 274 | { 275 | "tag":"light_areolae", 276 | "desc":"유륜이 밝다" 277 | }, 278 | { 279 | "tag":"dark_areolae", 280 | "desc":"유륜이 어둡다" 281 | }, 282 | { 283 | "tag":"light_nipples", 284 | "desc":"젖꼭지가 밝다" 285 | }, 286 | { 287 | "tag":"dark_nipples", 288 | "desc":"젖꼭지가 어둡다" 289 | }, 290 | { 291 | "tag":"short_arm", 292 | "desc":"팔이 짧다" 293 | }, 294 | { 295 | "tag":"long_arm", 296 | "desc":"팔이 길다" 297 | }, 298 | { 299 | "tag":"slender_arm", 300 | "desc":"팔이 가늘다" 301 | }, 302 | { 303 | "tag":"heavy_arm", 304 | "desc":"팔이 두껍다" 305 | }, 306 | { 307 | "tag":"thin_forearm", 308 | "desc":"팔뚝이 얇다" 309 | }, 310 | { 311 | "tag":"slender_forearm", 312 | "desc":"팔뚝이 가늘다" 313 | }, 314 | { 315 | "tag":"heavy_arm", 316 | "desc":"팔뚝이 두껍다" 317 | }, 318 | { 319 | "tag":"chubby_forearm", 320 | "desc":"팔뚝이 통통하다" 321 | }, 322 | { 323 | "tag":"round_elbow", 324 | "desc":"팔꿈치가 둥글다" 325 | }, 326 | { 327 | "tag":"blunt_elbow", 328 | "desc":"팔꿈치가 뭉툭하다" 329 | }, 330 | { 331 | "tag":"pointed_elbow", 332 | "desc":"팔꿈치가 뾰족하다" 333 | }, 334 | { 335 | "tag":"light_armpit", 336 | "desc":"겨드랑이가 밝다" 337 | }, 338 | { 339 | "tag":"dark_armpit", 340 | "desc":"겨드랑이가 어둡다" 341 | }, 342 | { 343 | "tag":"short_hand", 344 | "desc":"손이 짧다" 345 | }, 346 | { 347 | "tag":"long_hand", 348 | "desc":"손이 길다" 349 | }, 350 | { 351 | "tag":"slender_hand", 352 | "desc":"손이 가늘다" 353 | }, 354 | { 355 | "tag":"heavy_hand", 356 | "desc":"손이 두껍다" 357 | }, 358 | { 359 | "tag":"thin_wrist", 360 | "desc":"손목이 얇다" 361 | }, 362 | { 363 | "tag":"slender_wrist", 364 | "desc":"손목이 가늘다" 365 | }, 366 | { 367 | "tag":"thick_wrist", 368 | "desc":"손목이 두껍다" 369 | }, 370 | { 371 | "tag":"short_fingers", 372 | "desc":"손가락이 짧다" 373 | }, 374 | { 375 | "tag":"long_fingers", 376 | "desc":"손가락이 길다" 377 | }, 378 | { 379 | "tag":"slender_fingers", 380 | "desc":"손가락이 가늘다" 381 | }, 382 | { 383 | "tag":"thick_fingers", 384 | "desc":"손가락이 두껍다" 385 | }, 386 | { 387 | "tag":"short_nail", 388 | "desc":"손톱이 짧다" 389 | }, 390 | { 391 | "tag":"long_nail", 392 | "desc":"손톱이 길다" 393 | }, 394 | { 395 | "tag":"short_leg", 396 | "desc":"다리가 짧다" 397 | }, 398 | { 399 | "tag":"long_leg", 400 | "desc":"다리가 길다" 401 | }, 402 | { 403 | "tag":"slender_leg", 404 | "desc":"다리가 가늘다" 405 | }, 406 | { 407 | "tag":"thick_leg", 408 | "desc":"다리가 두껍다" 409 | }, 410 | { 411 | "tag":"thin_thighs", 412 | "desc":"허벅지가 얇다" 413 | }, 414 | { 415 | "tag":"slender_thighs", 416 | "desc":"허벅지가 가늘다" 417 | }, 418 | { 419 | "tag":"thick_thigh", 420 | "desc":"허벅지가 두껍다" 421 | }, 422 | { 423 | "tag":"chubby_thighs", 424 | "desc":"허벅지가 통통하다" 425 | }, 426 | { 427 | "tag":"thin_calf", 428 | "desc":"종아리가 얇다" 429 | }, 430 | { 431 | "tag":"slender_calf", 432 | "desc":"종아리가 가늘다" 433 | }, 434 | { 435 | "tag":"thick_calf", 436 | "desc":"종아리가 두껍다" 437 | }, 438 | { 439 | "tag":"chubby_calf", 440 | "desc":"종아리가 통통하다" 441 | }, 442 | { 443 | "tag":"short_foot", 444 | "desc":"발이 짧다" 445 | }, 446 | { 447 | "tag":"long_foot", 448 | "desc":"발이 길다" 449 | }, 450 | { 451 | "tag":"slender_foot", 452 | "desc":"발이 가늘다_" 453 | }, 454 | { 455 | "tag":"thick_foot", 456 | "desc":"발이 두껍다" 457 | }, 458 | { 459 | "tag":"short_toe", 460 | "desc":"발가락이 짧다" 461 | }, 462 | { 463 | "tag":"long_toe", 464 | "desc":"발가락이 길다" 465 | }, 466 | { 467 | "tag":"short_toenail", 468 | "desc":"발톱이 짧다" 469 | }, 470 | { 471 | "tag":"long_toenail", 472 | "desc":"발톱이 길다" 473 | }, 474 | { 475 | "tag":"thin_ankle", 476 | "desc":"발목이 얇다" 477 | }, 478 | { 479 | "tag":"slender_ankle", 480 | "desc":"발목이 가늘다" 481 | }, 482 | { 483 | "tag":"thick_ankle", 484 | "desc":"발목이 두껍다" 485 | }, 486 | { 487 | "tag":"head_wings", 488 | "desc":"날개가 머리에 있다" 489 | }, 490 | { 491 | "tag":"hair_wings", 492 | "desc":"날개가 머리카락에 있다" 493 | }, 494 | { 495 | "tag":"leg_wings", 496 | "desc":"날개가 다리에 있다" 497 | }, 498 | { 499 | "tag":"low_wings", 500 | "desc":"날개가 등에 있다" 501 | }, 502 | { 503 | "tag":"ankle_wings", 504 | "desc":"날개가 발목에 있다" 505 | }, 506 | { 507 | "tag":"mini_wings", 508 | "desc":"날개가 작다" 509 | }, 510 | { 511 | "tag":"large_wings", 512 | "desc":"날개가 크다" 513 | }, 514 | { 515 | "tag":"wingle_wing", 516 | "desc":"날개가 한쪽만 있다" 517 | }, 518 | { 519 | "tag":"multiplewings", 520 | "desc":"날개가 매우 많다" 521 | }, 522 | { 523 | "tag":"Fake_wings", 524 | "desc":"가짜 날개" 525 | }, 526 | { 527 | "tag":"metal_wings", 528 | "desc":"금속 날개" 529 | }, 530 | { 531 | "tag":"Mechanical_wings", 532 | "desc":"기계 날개" 533 | }, 534 | { 535 | "tag":"Plant_wings", 536 | "desc":"식물 날개" 537 | }, 538 | { 539 | "tag":"light_hawk_wings", 540 | "desc":"얇은 천 날개" 541 | }, 542 | { 543 | "tag":"artificial_wings", 544 | "desc":"인공 날개" 545 | }, 546 | { 547 | "tag":"feathered_wings", 548 | "desc":"깃털 날개" 549 | }, 550 | { 551 | "tag":"insect_wings", 552 | "desc":"곤충 날개" 553 | }, 554 | { 555 | "tag":"moth_wings", 556 | "desc":"나방 날개" 557 | }, 558 | { 559 | "tag":"Butterfly_wings", 560 | "desc":"나비 날개" 561 | }, 562 | { 563 | "tag":"ladybug_wings", 564 | "desc":"무당벌레 날개" 565 | }, 566 | { 567 | "tag":"Bat_wings", 568 | "desc":"박쥐 날개" 569 | }, 570 | { 571 | "tag":"Angel_wings", 572 | "desc":"천사 날개" 573 | }, 574 | { 575 | "tag":"Demon_wings", 576 | "desc":"악마 날개" 577 | }, 578 | { 579 | "tag":"Fairy_wings", 580 | "desc":"요정 날개" 581 | }, 582 | { 583 | "tag":"Dragon_wings", 584 | "desc":"용의 날개" 585 | }, 586 | { 587 | "tag":"Fiery_wings", 588 | "desc":"불꽃 날개" 589 | }, 590 | { 591 | "tag":"liquid_wings", 592 | "desc":"액체 날개" 593 | }, 594 | { 595 | "tag":"Ice_wings", 596 | "desc":"얼음 날개" 597 | }, 598 | { 599 | "tag":"energy_wings", 600 | "desc":"에너지 날개" 601 | }, 602 | { 603 | "tag":"Heart_wings", 604 | "desc":"하트 모양 날개" 605 | }, 606 | { 607 | "tag":"short_tail", 608 | "desc":"꼬리가 짧다" 609 | }, 610 | { 611 | "tag":"long_tail", 612 | "desc":"꼬리가 길다" 613 | }, 614 | { 615 | "tag":"slender_tail", 616 | "desc":"꼬리가 가늘다" 617 | }, 618 | { 619 | "tag":"thick_tail", 620 | "desc":"꼬리가 두껍다" 621 | }, 622 | { 623 | "tag":"dog_tail", 624 | "desc":"강아지 꼬리" 625 | }, 626 | { 627 | "tag":"gorilla_tail", 628 | "desc":"고릴라 꼬리" 629 | }, 630 | { 631 | "tag":"cat_tail", 632 | "desc":"고양이 꼬리" 633 | }, 634 | { 635 | "tag":"bear_tail", 636 | "desc":"곰 꼬리" 637 | }, 638 | { 639 | "tag":"wolf_tail", 640 | "desc":"늑대 꼬리" 641 | }, 642 | { 643 | "tag":"squirrel_tail", 644 | "desc":"다람쥐 꼬리" 645 | }, 646 | { 647 | "tag":"pig_tail", 648 | "desc":"돼지 꼬리" 649 | }, 650 | { 651 | "tag":"horse_tail", 652 | "desc":"말 꼬리" 653 | }, 654 | { 655 | "tag":"deer_tail", 656 | "desc":"사슴 꼬리" 657 | }, 658 | { 659 | "tag":"lion_tail", 660 | "desc":"사자 꼬리" 661 | }, 662 | { 663 | "tag":"cow_tail", 664 | "desc":"소 꼬리" 665 | }, 666 | { 667 | "tag":"sheep_tail", 668 | "desc":"양 꼬리" 669 | }, 670 | { 671 | "tag":"fox_tail", 672 | "desc":"여우 꼬리" 673 | }, 674 | { 675 | "tag":"monkey_tail", 676 | "desc":"원숭이 꼬리" 677 | }, 678 | { 679 | "tag":"ermine_tail", 680 | "desc":"족제비 꼬리" 681 | }, 682 | { 683 | "tag":"mouse_tail", 684 | "desc":"쥐 꼬리" 685 | }, 686 | { 687 | "tag":"rabbit_tail", 688 | "desc":"토끼 꼬리" 689 | }, 690 | { 691 | "tag":"leopard_tail", 692 | "desc":"표범 꼬리" 693 | }, 694 | { 695 | "tag":"tiger_tail", 696 | "desc":"호랑이 꼬리" 697 | } 698 | ] -------------------------------------------------------------------------------- /data/NovelAI - 태그[행동].json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag":"cuddling", 4 | "desc":"누구를 껴안다" 5 | }, 6 | { 7 | "tag":"earcleaning", 8 | "desc":"누구의 귀를 청소하다" 9 | }, 10 | { 11 | "tag":"touching", 12 | "desc":"누군가 감동하다" 13 | }, 14 | { 15 | "tag":"dying", 16 | "desc":"누군가 곧 죽다" 17 | }, 18 | { 19 | "tag":"vomiting", 20 | "desc":"누군가 구토하다" 21 | }, 22 | { 23 | "tag":"whispering", 24 | "desc":"누군가 귓가에 속삭이다" 25 | }, 26 | { 27 | "tag":"balancing", 28 | "desc":"누군가 균형잡다" 29 | }, 30 | { 31 | "tag":"praying", 32 | "desc":"누군가 기도하다" 33 | }, 34 | { 35 | "tag":"diaperchanging", 36 | "desc":"누군가 기저귀를 갈다" 37 | }, 38 | { 39 | "tag":"gardening", 40 | "desc":"누군가 꽃에 물을 주다" 41 | }, 42 | { 43 | "tag":"dreaming", 44 | "desc":"누군가 꿈꾸다" 45 | }, 46 | { 47 | "tag":"flapping", 48 | "desc":"누군가 날개를 펄럭이다" 49 | }, 50 | { 51 | "tag":"landing", 52 | "desc":"누군가 내려오다" 53 | }, 54 | { 55 | "tag":"crawling", 56 | "desc":"누군가 네 발로 걷다" 57 | }, 58 | { 59 | "tag":"singing", 60 | "desc":"누군가 노래하다" 61 | }, 62 | { 63 | "tag":"knocking", 64 | "desc":"누군가 노크하다" 65 | }, 66 | { 67 | "tag":"playing", 68 | "desc":"누군가 놀다" 69 | }, 70 | { 71 | "tag":"blinking", 72 | "desc":"누군가 눈을 깜빡이다" 73 | }, 74 | { 75 | "tag":"trolling", 76 | "desc":"누구를 도발하다" 77 | }, 78 | { 79 | "tag":"hugfrombehind", 80 | "desc":"누구를 뒤에서 껴안다" 81 | }, 82 | { 83 | "tag":"imitating", 84 | "desc":"누구를 따라하다" 85 | }, 86 | { 87 | "tag":"hitting", 88 | "desc":"누구를 때리다" 89 | }, 90 | { 91 | "tag":"smoking", 92 | "desc":"누군가 담배를 피다" 93 | }, 94 | { 95 | "tag":"waiting", 96 | "desc":"누군가 대기하다" 97 | }, 98 | { 99 | "tag":"fleeing", 100 | "desc":"누군가 도망치다" 101 | }, 102 | { 103 | "tag":"running", 104 | "desc":"누군가 도주하다" 105 | }, 106 | { 107 | "tag":"climbing", 108 | "desc":"누군가 등반하다" 109 | }, 110 | { 111 | "tag":"digging", 112 | "desc":"누군가 땅을 파다" 113 | }, 114 | { 115 | "tag":"rappelling", 116 | "desc":"누군가 로프를 타고 내려온다" 117 | }, 118 | { 119 | "tag":"blocking", 120 | "desc":"누구를 말리다" 121 | }, 122 | { 123 | "tag":"catching", 124 | "desc":"누구를 매달다" 125 | }, 126 | { 127 | "tag":"mindreading", 128 | "desc":"누구의 마음을 읽다" 129 | }, 130 | { 131 | "tag":"sittingonlap", 132 | "desc":"누구의 무릎을 껴안다" 133 | }, 134 | { 135 | "tag":"untying", 136 | "desc":"누군가 매다 끈을 풀다" 137 | }, 138 | { 139 | "tag":"scarftying", 140 | "desc":"누군가 매다 목도리를 매다" 141 | }, 142 | { 143 | "tag":"tying", 144 | "desc":"누군가 매다 장식을 매다" 145 | }, 146 | { 147 | "tag":"resisting", 148 | "desc":"누군가 매우 저항하다" 149 | }, 150 | { 151 | "tag":"breastfeeding", 152 | "desc":"누군가 모유를 수유하다" 153 | }, 154 | { 155 | "tag":"bathing", 156 | "desc":"누군가 목욕하다" 157 | }, 158 | { 159 | "tag":"soap", 160 | "desc":"누군가 목욕하며 비누를 쓰다" 161 | }, 162 | { 163 | "tag":"shampoo", 164 | "desc":"누군가 목욕하며 거품을 쓰다" 165 | }, 166 | { 167 | "tag":"mixedbathing", 168 | "desc":"누군가 목욕을 같이 한다" 169 | }, 170 | { 171 | "tag":"sharedbathing", 172 | "desc":"누군가 목욕을 함께 한다" 173 | }, 174 | { 175 | "tag":"clothedbath", 176 | "desc":"누군가 옷을 입고 목욕하다" 177 | }, 178 | { 179 | "tag":"strangling", 180 | "desc":"누군가 목을 조르다" 181 | }, 182 | { 183 | "tag":"trembling", 184 | "desc":"누군가 몸을 떨다" 185 | }, 186 | { 187 | "tag":"drying", 188 | "desc":"누군가 몸을 말리다" 189 | }, 190 | { 191 | "tag":"cowering", 192 | "desc":"누군가 몸을 웅크리다" 193 | }, 194 | { 195 | "tag":"bowing", 196 | "desc":"누군가 무릎꿇고 인사하다" 197 | }, 198 | { 199 | "tag":"kneeing", 200 | "desc":"누군가 무릎을 꿇다" 201 | }, 202 | { 203 | "tag":"textmessaging", 204 | "desc":"누군가 문자 메시지를 보내다" 205 | }, 206 | { 207 | "tag":"diving=(differentfromdive)", 208 | "desc":"누군가 물 속에 다이빙하다" 209 | }, 210 | { 211 | "tag":"wading", 212 | "desc":"누군가 물을 넘어가다" 213 | }, 214 | { 215 | "tag":"decantering", 216 | "desc":"누군가 물을 높게 잔에 붓다" 217 | }, 218 | { 219 | "tag":"squirtingliquid", 220 | "desc":"누군가 물을 분출하다" 221 | }, 222 | { 223 | "tag":"watering", 224 | "desc":"누군가 물을 뿌리다" 225 | }, 226 | { 227 | "tag":"pouring", 228 | "desc":"누군가 물을 잔에 붓다" 229 | }, 230 | { 231 | "tag":"splashing", 232 | "desc":"누군가 물이 몸에 튀다" 233 | }, 234 | { 235 | "tag":"slipping", 236 | "desc":"누군가 미끄러지다" 237 | }, 238 | { 239 | "tag":"bumping", 240 | "desc":"누구와 실수로 부딪힌다" 241 | }, 242 | { 243 | "tag":"apologizing", 244 | "desc":"누군가 사과하다" 245 | }, 246 | { 247 | "tag":"stacking", 248 | "desc":"누군가 사람을 쌓다" 249 | }, 250 | { 251 | "tag":"eavesdropping", 252 | "desc":"누군가 소리를 엿듣다" 253 | }, 254 | { 255 | "tag":"screaming", 256 | "desc":"누군가 소리를 크게 낸다" 257 | }, 258 | { 259 | "tag":"shouting", 260 | "desc":"누군가 소리를 크게 외치다" 261 | }, 262 | { 263 | "tag":"drinking", 264 | "desc":"누군가 술을 마시다" 265 | }, 266 | { 267 | "tag":"giggling", 268 | "desc":"누군가 숨죽여 웃다" 269 | }, 270 | { 271 | "tag":"sliding", 272 | "desc":"누군가 슬라이딩하다" 273 | }, 274 | { 275 | "tag":"moaning", 276 | "desc":"누군가 신음하다" 277 | }, 278 | { 279 | "tag":"fighting", 280 | "desc":"누군가 싸우다" 281 | }, 282 | { 283 | "tag":"duel", 284 | "desc":"누군가 결투하다" 285 | }, 286 | { 287 | "tag":"pillow_fight", 288 | "desc":"누군가 베개로 싸운다" 289 | }, 290 | { 291 | "tag":"snowball_fight", 292 | "desc":"누군가 눈으로 싸운다" 293 | }, 294 | { 295 | "tag":"comforting", 296 | "desc":"누구를 위로하다" 297 | }, 298 | { 299 | "tag":"roaring", 300 | "desc":"누구를 위협하다" 301 | }, 302 | { 303 | "tag":"flirting", 304 | "desc":"누구를 유혹하다" 305 | }, 306 | { 307 | "tag":"cheering", 308 | "desc":"누구를 응원하다" 309 | }, 310 | { 311 | "tag":"_fidgeting", 312 | "desc":"누군가 안절부절하다" 313 | }, 314 | { 315 | "tag":"flailing", 316 | "desc":"누군가 어리광을 부리다" 317 | }, 318 | { 319 | "tag":"sulking", 320 | "desc":"누군가 얼굴을 찡그리다" 321 | }, 322 | { 323 | "tag":"spanking", 324 | "desc":"누군가 엉덩이를 때리다" 325 | }, 326 | { 327 | "tag":"forceddressing", 328 | "desc":"누군가 옷을 강제로 입히다" 329 | }, 330 | { 331 | "tag":"undressing", 332 | "desc":"누군가 옷을 벗고 있다" 333 | }, 334 | { 335 | "tag":"dressing", 336 | "desc":"누군가 옷을 입다" 337 | }, 338 | { 339 | "tag":"wringing", 340 | "desc":"누군가 옷을 짜내다" 341 | }, 342 | { 343 | "tag":"driving", 344 | "desc":"누군가 운전하다" 345 | }, 346 | { 347 | "tag":"laughing", 348 | "desc":"누군가 웃다" 349 | }, 350 | { 351 | "tag":"baking", 352 | "desc":"누군가 음식(빵)을 만들다" 353 | }, 354 | { 355 | "tag":"chocolatemaking", 356 | "desc":"누군가 음식(초콜렛)을 만들다" 357 | }, 358 | { 359 | "tag":"roasting", 360 | "desc":"누군가 음식을 데우다" 361 | }, 362 | { 363 | "tag":"cooking", 364 | "desc":"누군가 음식을 요리하다" 365 | }, 366 | { 367 | "tag":"stirring", 368 | "desc":"누군가 음식을 휘젓다" 369 | }, 370 | { 371 | "tag":"sunbathing", 372 | "desc":"누군가 일광욕하다" 373 | }, 374 | { 375 | "tag":"working", 376 | "desc":"누군가 일하고 있다" 377 | }, 378 | { 379 | "tag":"shushing", 380 | "desc":"누구를 조용히 시키다" 381 | }, 382 | { 383 | "tag":"chasing", 384 | "desc":"누구를 쫓다" 385 | }, 386 | { 387 | "tag":"sneezing", 388 | "desc":"누군가 재채기하다" 389 | }, 390 | { 391 | "tag":"jumping", 392 | "desc":"누군가 점프하다" 393 | }, 394 | { 395 | "tag":"pouncing", 396 | "desc":"누군가 강하게 점프하다" 397 | }, 398 | { 399 | "tag":"hopping", 400 | "desc":"누군가 약하게 점프하다" 401 | }, 402 | { 403 | "tag":"searching", 404 | "desc":"누군가 주위를 둘러본다" 405 | }, 406 | { 407 | "tag":"zipping", 408 | "desc":"누군가 지퍼를 위로 당기다" 409 | }, 410 | { 411 | "tag":"unzipping", 412 | "desc":"누군가 지퍼를 풀고 있다" 413 | }, 414 | { 415 | "tag":"concentrating", 416 | "desc":"누군가 집중하다" 417 | }, 418 | { 419 | "tag":"whipping", 420 | "desc":"누구를 채찍찔하다" 421 | }, 422 | { 423 | "tag":"launching", 424 | "desc":"누군가 착륙 준비하다" 425 | }, 426 | { 427 | "tag":"reading", 428 | "desc":"누군가 책을 읽다" 429 | }, 430 | { 431 | "tag":"firing", 432 | "desc":"누군가 총을 쏘다" 433 | }, 434 | { 435 | "tag":"muzzleflash", 436 | "desc":"누군가 총을 쏘자 빛나다" 437 | }, 438 | { 439 | "tag":"reloading", 440 | "desc":"누군가 총을 재장전하다" 441 | }, 442 | { 443 | "tag":"dancing", 444 | "desc":"누군가 춤추다" 445 | }, 446 | { 447 | "tag":"poledancing", 448 | "desc":"누군가 춤추며 봉을 타다" 449 | }, 450 | { 451 | "tag":"spitting", 452 | "desc":"누군가 침을 뱉다" 453 | }, 454 | { 455 | "tag":"nosepicking", 456 | "desc":"누군가 코를 파다" 457 | }, 458 | { 459 | "tag":"strokingownchin", 460 | "desc":"누군가 턱을 쓰다듬다" 461 | }, 462 | { 463 | "tag":"elbowing", 464 | "desc":"누구를 팔꿈치로 때리다" 465 | }, 466 | { 467 | "tag":"waving", 468 | "desc":"누군가 팔을 흔들다 인사하다" 469 | }, 470 | { 471 | "tag":"penspinning", 472 | "desc":"누군가 펜을 회전하다" 473 | }, 474 | { 475 | "tag":"reaching", 476 | "desc":"누군가 하강하다" 477 | }, 478 | { 479 | "tag":"whistling", 480 | "desc":"누군가 휘파람을 불다" 481 | }, 482 | { 483 | "tag":"resting", 484 | "desc":"누군가 휴식하다" 485 | }, 486 | { 487 | "tag":"sweeping", 488 | "desc":"누군가 흙먼지를 쓸다" 489 | }, 490 | { 491 | "tag":"peeing", 492 | "desc":"누군가를 쓰다듬다" 493 | }, 494 | { 495 | "tag":"feeding", 496 | "desc":"누군가에게 음식을 권하다" 497 | }, 498 | { 499 | "tag":"sinking", 500 | "desc":"무엇이 가라앉다" 501 | }, 502 | { 503 | "tag":"floating", 504 | "desc":"무엇이 공중에 떠 있다" 505 | }, 506 | { 507 | "tag":"flying", 508 | "desc":"무엇이 공중을 날다" 509 | }, 510 | { 511 | "tag":"teaching", 512 | "desc":"무엇을 가르치다" 513 | }, 514 | { 515 | "tag":"opening", 516 | "desc":"무엇을 개봉하다" 517 | }, 518 | { 519 | "tag":"skipping", 520 | "desc":"무엇을 건너뛰다" 521 | }, 522 | { 523 | "tag":"repairing", 524 | "desc":"무엇을 고치다" 525 | }, 526 | { 527 | "tag":"studying", 528 | "desc":"무엇을 공부하다" 529 | }, 530 | { 531 | "tag":"polishing", 532 | "desc":"무엇을 광택내다" 533 | }, 534 | { 535 | "tag":"begging", 536 | "desc":"무엇을 구걸하다" 537 | }, 538 | { 539 | "tag":"rolling", 540 | "desc":"무엇을 굴리며 이동하다" 541 | }, 542 | { 543 | "tag":"sketching", 544 | "desc":"무엇을 그리다" 545 | }, 546 | { 547 | "tag":"dragging", 548 | "desc":"무엇을 끌고 가다" 549 | }, 550 | { 551 | "tag":"melting", 552 | "desc":"무엇을 녹이다" 553 | }, 554 | { 555 | "tag":"crushing", 556 | "desc":"무엇을 눌러서 터뜨리다" 557 | }, 558 | { 559 | "tag":"carrying", 560 | "desc":"무엇이 떨어지는 걸 잡다" 561 | }, 562 | { 563 | "tag":"pulling", 564 | "desc":"무엇을 당기다" 565 | }, 566 | { 567 | "tag":"pitching", 568 | "desc":"무엇을 던지다" 569 | }, 570 | { 571 | "tag":"throwing", 572 | "desc":"무엇을 던지다" 573 | }, 574 | { 575 | "tag":"holding", 576 | "desc":"무엇을 들다" 577 | }, 578 | { 579 | "tag":"punching", 580 | "desc":"무엇을 때리다" 581 | }, 582 | { 583 | "tag":"rapidpunches", 584 | "desc":"무엇을 때리다 빠르게" 585 | }, 586 | { 587 | "tag":"dropping", 588 | "desc":"무엇을 떨어뜨리다" 589 | }, 590 | { 591 | "tag":"cupping", 592 | "desc":"무엇을 모아 담다" 593 | }, 594 | { 595 | "tag":"pointing_weapon", 596 | "desc":"무엇을 무기로 조준하다" 597 | }, 598 | { 599 | "tag":"hatching", 600 | "desc":"무엇이 부화하다" 601 | }, 602 | { 603 | "tag":"glowing", 604 | "desc":"무엇이 빛난다" 605 | }, 606 | { 607 | "tag":"unsheathing", 608 | "desc":"무엇을 벗기다" 609 | }, 610 | { 611 | "tag":"protecting", 612 | "desc":"무엇을 보호하다" 613 | }, 614 | { 615 | "tag":"sucking", 616 | "desc":"무엇을 빨다" 617 | }, 618 | { 619 | "tag":"shopping", 620 | "desc":"무엇을 사다" 621 | }, 622 | { 623 | "tag":"imagining", 624 | "desc":"무엇을 상상하다" 625 | }, 626 | { 627 | "tag":"scratching", 628 | "desc":"무엇을 상처 입힌다" 629 | }, 630 | { 631 | "tag":"thinking", 632 | "desc":"무엇을 생각하다" 633 | }, 634 | { 635 | "tag":"giving", 636 | "desc":"무엇을 선물하다" 637 | }, 638 | { 639 | "tag":"dishwashing", 640 | "desc":"무엇을 설거지하다" 641 | }, 642 | { 643 | "tag":"summoning", 644 | "desc":"무엇을 소환하다" 645 | }, 646 | { 647 | "tag":"hiding", 648 | "desc":"무엇을 숨기다" 649 | }, 650 | { 651 | "tag":"patting", 652 | "desc":"무엇을 쓰다듬다" 653 | }, 654 | { 655 | "tag":"bouncing", 656 | "desc":"무엇이 요동친다" 657 | }, 658 | { 659 | "tag":"bouncingbreasts", 660 | "desc":"무엇이 요동친다" 661 | }, 662 | { 663 | "tag":"spinning", 664 | "desc":"무엇이 회전하다" 665 | }, 666 | { 667 | "tag":"staring", 668 | "desc":"무엇을 응시하다" 669 | }, 670 | { 671 | "tag":"cutting", 672 | "desc":"무엇을 자르다" 673 | }, 674 | { 675 | "tag":"juggling", 676 | "desc":"무엇을 저글링하다" 677 | }, 678 | { 679 | "tag":"shaving", 680 | "desc":"무엇을 제모하다" 681 | }, 682 | { 683 | "tag":"aiming", 684 | "desc":"무엇을 조준하다" 685 | }, 686 | { 687 | "tag":"poking", 688 | "desc":"무엇을 찌르다" 689 | }, 690 | { 691 | "tag":"ripping", 692 | "desc":"무엇을 찢다" 693 | }, 694 | { 695 | "tag":"cleaning", 696 | "desc":"무엇을 청소하다" 697 | }, 698 | { 699 | "tag":"at_gunpoint", 700 | "desc":"무엇을 총구로 조준하다" 701 | }, 702 | { 703 | "tag":"healing", 704 | "desc":"무엇을 치유하다" 705 | }, 706 | { 707 | "tag":"riding", 708 | "desc":"무엇을 타다" 709 | }, 710 | { 711 | "tag":"tapping", 712 | "desc":"무엇을 테이프로 감다" 713 | }, 714 | { 715 | "tag":"breaking", 716 | "desc":"무엇을 파괴하다" 717 | }, 718 | { 719 | "tag":"pushing", 720 | "desc":"무엇을 한쪽으로 밀다" 721 | }, 722 | { 723 | "tag":"dodging", 724 | "desc":"무엇을 회피하다" 725 | }, 726 | { 727 | "tag":"slashing", 728 | "desc":"무엇을 휘둘러 베다" 729 | }, 730 | { 731 | "tag":"whisking", 732 | "desc":"무엇을 휘젓다" 733 | }, 734 | { 735 | "tag":"shaking", 736 | "desc":"무엇을 흔들다" 737 | }, 738 | { 739 | "tag":"spilling", 740 | "desc":"무엇을 흘리다" 741 | } 742 | ] -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[기본].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 품질,완성도,명작,"masterpiece, masterpiece_portrait",FALSE 3 | 품질,완성도,뚜렷한 이미지,"distinct, distinct_image",FALSE 4 | 품질,완성도,흐릿한 이미지,"blurry, blurry_image",FALSE 5 | 품질,해상도,높은 해상도,"highres, high_resolution",FALSE 6 | 품질,해상도,낮은 해상도,"Lowres, Low_resolution",FALSE 7 | 품질,해상도,고화질,"high_quality, high_quality_anime",FALSE 8 | 품질,해상도,저화질,"Low_picture_quality, Low_picture_anime",FALSE 9 | 품질,디테일,높은 디테일,"super_detail, hyper_detail",FALSE 10 | 품질,디테일,세세한 디테일,finely_detailed,FALSE 11 | 품질,디테일,복잡한 디테일,intricate_details,FALSE 12 | 품질,디테일,특정한 디테일,detailed_*,FALSE 13 | 품질,디테일,원하는 디테일,drooling from_*,FALSE 14 | 품질,완성도,완벽한 신체,"perfect_anatomy, perfect_body, perfect_navel, perfect_face, perfect_eyes, perfect_chest, perfect_nipples, perfect_hips, perfect_arms, perfect_hands, perfect_fingers, perfect_legs, perfect_feet, perfect_toe",FALSE 15 | 품질,완성도,잘못된 신체,"missing_anatomy, missing_body, missing_navel, missing_face, missing_eyes, missing_chest, missing_nipples, missing_hips, missing_arms, missing_hands, missing_fingers, missing_legs, missing_feet, missing_toe",FALSE 16 | 품질,완성도,복수의 신체,"extra_anatomy, extra_body, extra_navel, extra_face, extra_eyes, extra_chest, extra_nipples, extra_hips, extra_arms, extra_hands, extra_fingers, extra_legs, extra_feet, extra_toe",FALSE 17 | 작화,화풍,러프,unfinished,FALSE 18 | 작화,화풍,스케치,sketch,FALSE 19 | 작화,화풍,선이 명확한,ligne_claire,FALSE 20 | 작화,화풍,손 그림,traditional_media,FALSE 21 | 작화,화풍,가짜 손 그림,faux_traditional_media,FALSE 22 | 작화,화풍,게임,CG_game_cg,FALSE 23 | 작화,화풍,픽셀,pixel_art,FALSE 24 | 작화,화풍,미소녀,"bishoujo, mishoujo",FALSE 25 | 작화,화풍,애니메이션,"anime_art_style, anime_screencap",FALSE 26 | 작화,화풍,실사체,realistic,FALSE 27 | 작화,화풍,빈실사체,semi_realistic,FALSE 28 | 작화,화풍,일본풍 실사체,"manga_realistic, manga_photorealistic",FALSE 29 | 작화,화풍,미국풍 실사체,"Cartoon_realistic, Cartoon_photorealistic",FALSE 30 | 작화,스타일,흑백,Monochrome,FALSE 31 | 작화,스타일,웹툰,"Webtoon, Korea_Webtoon",FALSE 32 | 작화,스타일,픽시브,pixiv,FALSE 33 | 작화,스타일,삽화,Illustration,FALSE 34 | 작화,스타일,에로 만화,eromanga,FALSE 35 | 작화,스타일,소년 만화,Shonen_manga,FALSE 36 | 작화,스타일,애니메이션,"animation, Japanese_animation",FALSE 37 | 작화,스타일,디즈니,Disney,FALSE 38 | 작화,스타일,카툰,Cartoon,FALSE 39 | 작화,스타일,카툰 네트워크,Cartoon_Network,FALSE 40 | 작화,스타일,칼아츠 스타일,CalArts_style,FALSE 41 | 작화,스타일,그래픽 노벨,Graphic_Novel,FALSE 42 | 작화,스타일,미국 카툰,American_cartoon,FALSE 43 | 작화,스타일,미국 만화,American_comics,FALSE 44 | 작화,스타일,DC 코믹스,DC_Comics,FALSE 45 | 작화,스타일,마블 코믹스,Marvel_Comics,FALSE 46 | 작화,스타일,패러디,style_parody={},FALSE 47 | 작화,스타일,패러디,fine_art_parody={},FALSE 48 | 테마,장르,판타지,Fantasy,FALSE 49 | 테마,장르,다크 판타지,Dark_Fantasy,FALSE 50 | 테마,장르,고딕 판타지,Gothic_Fantasy,FALSE 51 | 테마,장르,어반 판타지,Urban_Fantasy,FALSE 52 | 테마,장르,로맨스 판타지,Romance_Fantasy,FALSE 53 | 테마,장르,스팀펑크,Steampunk,FALSE 54 | 테마,장르,디젤펑크,Dieselpunk,FALSE 55 | 테마,장르,사이버펑크,Cyberpunk,FALSE 56 | 테마,장르,아케인펑크,Arcanepunk,FALSE 57 | 테마,연도,20년대,20s-anime-aesthetic,FALSE 58 | 테마,연도,30년대,30s-anime-aesthetic,FALSE 59 | 테마,연도,40년대,40s-anime-aesthetic,FALSE 60 | 테마,연도,50년대,50s-anime-aesthetic,FALSE 61 | 테마,연도,60년대,60s-anime-aesthetic,FALSE 62 | 테마,연도,70년대,70s-anime-aesthetic,FALSE 63 | 테마,연도,80년대,80s-anime-aesthetic,FALSE 64 | 테마,연도,90년대,90s-anime-aesthetic,FALSE 65 | 테마,연도,00년대,00s-anime-aesthetic,FALSE 66 | 테마,연도,10년대,10s-anime-aesthetic,FALSE 67 | 테마,신화,그리스 신화,Greek_mythology,FALSE 68 | 테마,신화,북유럽 신화,Nordic_mythology,FALSE 69 | 테마,신화,수메르 신화,Sumerian_mythology,FALSE 70 | 테마,신화,슬라브 신화,Slavic_mythology,FALSE 71 | 테마,신화,아즈텍 신화,Aztec_mythology,FALSE 72 | 테마,신화,이집트 신화,Egyptian_mythology,FALSE 73 | 테마,신화,인도 신화,Indian_mythology,FALSE 74 | 테마,신화,일본 신화,Japanese_mythology,FALSE 75 | 테마,신화,중국 신화,Chinese_mythology,FALSE 76 | 테마,신화,켈트 신화,Celtic_mythology,FALSE 77 | 테마,표지,앨범 표지,album_cover,FALSE 78 | 테마,표지,싱글 캐릭터 표지,character_single,FALSE 79 | 테마,표지,작품 표지,cover_page,FALSE 80 | 테마,표지,동인지 표지,doujin_cover,FALSE 81 | 테마,표지,가짜 표지,fake_cover,FALSE 82 | 테마,표지,비디오 게임 표지,video_game_cover,FALSE 83 | 테마,표지,잡지 표지,magazine_cover,FALSE 84 | 테마,표지,만화 표지,manga_cover,FALSE 85 | 테마,음악,트로트,Teuroteu,FALSE 86 | 테마,음악,게임 음악,Game_music,FALSE 87 | 테마,음악,뉴뮤직,New_Music,FALSE 88 | 테마,음악,뉴에이지 음악,New_Age_music,FALSE 89 | 테마,음악,시티 팝,City_Pop,FALSE 90 | 테마,음악,애니메이션 음악,Animated_music,FALSE 91 | 테마,음악,엔카,Enka,FALSE 92 | 테마,음악,유로비트,Eurobeat,FALSE 93 | 테마,음악,일렉트로니카,Electronica,FALSE 94 | 테마,음악,가스펠,Gaspel,FALSE 95 | 테마,음악,댄스,Dance,FALSE 96 | 테마,음악,디스코,Disco,FALSE 97 | 테마,음악,레게,Reggae,FALSE 98 | 테마,음악,로큰롤,Rock_and_roll,FALSE 99 | 테마,음악,록,Rock,FALSE 100 | 테마,음악,발라드,Ballad,FALSE 101 | 테마,음악,블루스,Blues,FALSE 102 | 테마,음악,소울 음악,soulfulmusic,FALSE 103 | 테마,음악,재즈,Jazz,FALSE 104 | 테마,음악,전자 음악,electronic_music,FALSE 105 | 테마,음악,클래식,Classic,FALSE 106 | 테마,음악,팝,Pop,FALSE 107 | 테마,음악,펑크,Funk,FALSE 108 | 테마,음악,포크,Fork,FALSE 109 | 테마,미술,일본화,nihonga,FALSE 110 | 테마,미술,일본 페인팅,sumi-e,FALSE 111 | 테마,미술,우키요에,ukiyo-e,FALSE 112 | 테마,미술,아르데코,art_deco,FALSE 113 | 테마,미술,아르누보,art_nouveau,FALSE 114 | 테마,미술,낭만주의,Romanticism,FALSE 115 | 테마,미술,르네상스,Renaissance,FALSE 116 | 테마,미술,바로크,Baroque,FALSE 117 | 테마,미술,로코코,Rococo,FALSE 118 | 테마,미술,화염주의,flame_painter,FALSE 119 | 테마,미술,인상주의,impressionism,FALSE 120 | 테마,미술,미니멀리즘,minimalism,FALSE 121 | 테마,미술,콘트라포스토,contrapposto,FALSE 122 | 테마,미술,초현실주의,surreal,FALSE 123 | 테마,도구,구아슈,gouache,FALSE 124 | 테마,도구,마커,marker,FALSE 125 | 테마,도구,밀리펜,millipen,FALSE 126 | 테마,도구,볼펜,ballpoint_pen,FALSE 127 | 테마,도구,분필,chalk,FALSE 128 | 테마,도구,브러시,brush,FALSE 129 | 테마,도구,색 잉크,color_ink,FALSE 130 | 테마,도구,색연필,colored_pencil,FALSE 131 | 테마,도구,서예 붓,calligraphy_brush,FALSE 132 | 테마,도구,수채화,watercolor,FALSE 133 | 테마,도구,수채화 연필,watercolor_pencil,FALSE 134 | 테마,도구,숯,charcoal,FALSE 135 | 테마,도구,아크릴 물감,acrylic_paint,FALSE 136 | 테마,도구,에어브러시,airbrush,FALSE 137 | 테마,도구,유화,oil_painting,FALSE 138 | 테마,도구,잉크,ink,FALSE 139 | 테마,도구,캔버스,canvas,FALSE 140 | 테마,도구,크레용,crayon,FALSE 141 | 테마,도구,파스텔,pastel,FALSE 142 | 테마,도구,펜촉,nib_pen,FALSE 143 | 테마,도구,플라스틱 연필,coupy_pencil,FALSE 144 | 테마,도구,회화,painting,FALSE 145 | 테마,도구,흑연,graphite,FALSE 146 | 테마,포르노,AV,Adult_Video,TRUE 147 | 테마,포르노,포르노,porn,TRUE 148 | 테마,포르노,섹스 비디오 ,Sex_Video,TRUE 149 | 테마,포르노,리벤지 포르노 ,Revenge_Porn,TRUE 150 | 초점,집중,단독 집중,solo_focus,FALSE 151 | 초점,집중,남자에게 집중한다,male_focus,FALSE 152 | 초점,집중,여자에게 집중한다,girl_focus,FALSE 153 | 초점,집중,앞에 집중한다,front_focus,FALSE 154 | 초점,집중,뒤에 집중한다,back_focus,FALSE 155 | 초점,집중,밖에 집중한다,other_focus,FALSE 156 | 초점,집중,눈에 집중한다,eye_focus,FALSE 157 | 초점,집중,손에 집중한다,hand_focus,FALSE 158 | 초점,집중,발에 집중한다,foot_focus,FALSE 159 | 초점,집중,가슴에 집중한다,breast_focus,FALSE 160 | 초점,집중,가슴에 집중한다,pectoral_focus,FALSE 161 | 초점,집중,겨드랑이에 집중한다,armpit_focus,FALSE 162 | 초점,집중,배꼽에 집중한다,navel_focus,FALSE 163 | 초점,집중,허벅지에 집중한다,thigh_focus,FALSE 164 | 초점,집중,엉덩이에 집중한다,ass_focus,FALSE 165 | 초점,집중,엉덩이에 집중한다,hip_focus,FALSE 166 | 초점,강조,얼굴을 강조한다,face,FALSE 167 | 초점,강조,초상화,portrait,FALSE 168 | 초점,강조,상체에 집중한다,upper_body,FALSE 169 | 초점,강조,하체에 집중한다,lower_body,FALSE 170 | 초점,강조,얼굴~허벅지에 집중한다,cowboy_shot,FALSE 171 | 초점,강조,얼굴~발목에 집중한다,feet_out_of_frame,FALSE 172 | 초점,강조,몸에 집중한다,fullbody,FALSE 173 | 초점,강조,멀리서 몸에 집중한다,wide_shot,FALSE 174 | 초점,강조,더 멀리서 몸에 집중한다,very_wide_shot,FALSE 175 | 초점,시점,뷰어를 보고 있다,looking_at_viewer,FALSE 176 | 초점,시점,위를 보고 있다,looking_up,FALSE 177 | 초점,시점,아래를 보고 있다,looking_down,FALSE 178 | 초점,시점,앞을 보고 있다,looking_front,FALSE 179 | 초점,시점,뒤를 보고 있다,looking_back,FALSE 180 | 초점,시점,옆을 보고 있다,looking_away,FALSE 181 | 초점,시점,먼 곳을 보고 있다,looking_afar,FALSE 182 | 초점,시점,밖을 보고 있다,looking_outside,FALSE 183 | 초점,시점,측면을 보고 있다,looking_to_the_side,FALSE 184 | 초점,시점,눈을 보고 있다,eye_contact,FALSE 185 | 초점,시점,손을 보고 있다,looking_at_hand,FALSE 186 | 초점,시점,다리를 보고 있다,looking_through_legs,FALSE 187 | 초점,시점,가슴을 보고 있다,looking_at_breasts,FALSE 188 | 초점,시점,엉덩이를 보고 있다,looking_at_ass,FALSE 189 | 초점,시점,다른 사람을 보고 있다,looking_at_another,FALSE 190 | 초점,시점,거울을 보고 있다,looking_at_mirror,FALSE 191 | 초점,시점,휴대전화를 보고 있다,looking_at_phone,FALSE 192 | 초점,시점,안경 밖을 보고 있다,looking_over_eyewear,FALSE 193 | 연출,컷,1컷,1koma,FALSE 194 | 연출,컷,2컷,2koma,FALSE 195 | 연출,컷,3컷,3koma,FALSE 196 | 연출,컷,4컷,4koma,FALSE 197 | 연출,컷,다중 4컷,multiple_4koma,FALSE 198 | 연출,컷,5컷,5koma,FALSE 199 | 연출,컷,추가적인 컷씬,cross-section,FALSE 200 | 연출,컷,테두리 없는 컷,borderless_panels,FALSE 201 | 연출,컷,왼쪽에서 오른쪽 컷 진행,left-to-right_manga,FALSE 202 | 연출,컷,오른쪽에서 왼쪽 컷 진행,right-to-left_comic,FALSE 203 | 연출,컷,상하반전,upside-down,FALSE 204 | 연출,효과,불 효과,fire*_effect,FALSE 205 | 연출,효과,화염 효과,flame*_effect,FALSE 206 | 연출,효과,전기 효과,spark*_effect*_spark,FALSE 207 | 연출,효과,번개 효과,lightning*_effect,FALSE 208 | 연출,효과,바람 효과,Wind*_effect,FALSE 209 | 연출,효과,파도 효과,Wave*_effect,FALSE 210 | 연출,효과,매지컬 효과,magical*_effect,FALSE 211 | 연출,효과,광택 효과,effect*_glossy,FALSE 212 | 연출,효과,광선 효과,effect*_light_rays,FALSE 213 | 연출,효과,집중선 효과,effect*_speed_lines,FALSE 214 | 연출,효과,떨림 효과*,effect*_trembling,FALSE 215 | 연출,효과,블러 효과,effect*_blur,FALSE 216 | 연출,효과,모션 블러 효과,effect*_motion_blur,FALSE 217 | 연출,액션,역동적인 각도,dynamic_angle,FALSE 218 | 연출,액션,역동적인 포즈,dynamic_pose,FALSE 219 | 연출,효과,반짝이는 입자 효과,*_light_particle,FALSE 220 | 연출,효과,회색 입자가 반짝히는 효과,light*_gray_particle,FALSE 221 | 연출,효과,흰색 입자가 반짝히는 효과,light*_white_particle,FALSE 222 | 연출,효과,갈색 입자가 반짝히는 효과,light*_brown_particle,FALSE 223 | 연출,효과,빨강색 입자가 반짝히는 효과,light*_Red_particle,FALSE 224 | 연출,효과,분홍색 입자가 반짝히는 효과,light*_pink_particle,FALSE 225 | 연출,효과,주황색 입자가 반짝히는 효과,light*_orange_particle,FALSE 226 | 연출,효과,노란색 입자가 반짝히는 효과,light*_yellow_particle,FALSE 227 | 연출,효과,황금색 입자가 반짝히는 효과,light*_golden_particle,FALSE 228 | 연출,효과,연두색 입자가 반짝히는 효과,light*_light_green_particle,FALSE 229 | 연출,효과,초록색 입자가 반짝히는 효과,light*_green_particle,FALSE 230 | 연출,효과,하늘색 입자가 반짝히는 효과,light*_sky_blue_particle,FALSE 231 | 연출,효과,파란색 입자가 반짝히는 효과,light*_blue_particle,FALSE 232 | 연출,효과,보라색 입자가 반짝히는 효과,light*_Purple_particle,FALSE 233 | 연출,효과,검은색 입자가 반짝히는 효과,light*_black_particle,FALSE 234 | 연출,효과,무지개색 입자가 반짝히는 효과,light*_rainbow_particle,FALSE 235 | 연출,효과,캐릭터 주변을 휘몰아치는 효과,*_swirling_around_the_character,FALSE 236 | 연출,효과,불이 휘몰아치는 효과,fire*_swirling_around_the_character,FALSE 237 | 연출,효과,물이 휘몰아치는 효과,water*_swirling_around_the_character,FALSE 238 | 연출,효과,바람이 휘몰아치는 효과,wind*_swirling_around_the_character,FALSE 239 | 연출,효과,번개가 휘몰아치는 효과,lighting*_swirling_around_the_character,FALSE 240 | 연출,효과,파도가 휘몰아치는 효과,wave*_swirling_around_the_character,FALSE 241 | 배경,위치,앞쪽 배경,foreground,FALSE 242 | 배경,위치,뒤쪽 배경,background,FALSE 243 | 배경,컬러,회색,gray,FALSE 244 | 배경,컬러,흰색,white,FALSE 245 | 배경,컬러,갈색,brown,FALSE 246 | 배경,컬러,빨강색,Red,FALSE 247 | 배경,컬러,분홍색,pink,FALSE 248 | 배경,컬러,주황색,orange,FALSE 249 | 배경,컬러,노란색,yellow,FALSE 250 | 배경,컬러,황금색,golden,FALSE 251 | 배경,컬러,연두색,light_green,FALSE 252 | 배경,컬러,초록색,green,FALSE 253 | 배경,컬러,하늘색,sky_blue,FALSE 254 | 배경,컬러,파란색,blue,FALSE 255 | 배경,컬러,보라색,Purple,FALSE 256 | 배경,컬러,검은색,black,FALSE 257 | 배경,컬러,무지개색,rainbow,FALSE 258 | 배경,컬러,투 톤,two-tone,FALSE 259 | 배경,컬러,줄무늬,streaked,FALSE 260 | 배경,컬러,그라데이션,gradient,FALSE 261 | 배경,컬러,색깔 분열,split-color,FALSE 262 | 배경,컬러,여러 색깔,multicolored,FALSE 263 | 배경,컬러,내부 착색,colored_inner,FALSE 264 | 배경,무늬,격자 무늬,plaid,FALSE 265 | 배경,무늬,딸기 무늬,strawberry,FALSE 266 | 배경,무늬,무지개 무늬,rainbow,FALSE 267 | 배경,무늬,물방울 무늬,polka_dot,FALSE 268 | 배경,무늬,미국 국기 무늬,american_flag,FALSE 269 | 배경,무늬,아가일 무늬,argyle,FALSE 270 | 배경,무늬,위장 무늬,camouflage,FALSE 271 | 배경,무늬,인쇄한 무늬,print,FALSE 272 | 배경,무늬,줄무늬,striped,FALSE 273 | 배경,무늬,사선 줄무늬,diagonal-striped,FALSE 274 | 배경,무늬,세로 줄무늬,vertical-striped,FALSE 275 | 배경,무늬,체크 무늬,checkered,FALSE 276 | 장소,국가,아시아,Asia,FALSE 277 | 장소,국가,한국,Korea,FALSE 278 | 장소,국가,북한,North_Korea,FALSE 279 | 장소,국가,일본,Japan,FALSE 280 | 장소,국가,중국,China,FALSE 281 | 장소,국가,홍콩,Hong_Kong,FALSE 282 | 장소,국가,대만,Taiwan,FALSE 283 | 장소,국가,몽골,Mongolia,FALSE 284 | 장소,국가,태국,Thailand,FALSE 285 | 장소,국가,베트남,Vietnam,FALSE 286 | 장소,국가,캐나다,Canada,FALSE 287 | 장소,국가,멕시코,Mexico,FALSE 288 | 장소,국가,미국,America,FALSE 289 | 장소,국가,브라질,Brazil,FALSE 290 | 장소,국가,아르헨티나,Argentina,FALSE 291 | 장소,국가,우르과이,Uruguay,FALSE 292 | 장소,국가,칠레,Chile,FALSE 293 | 장소,국가,콜롬비아,Colombia,FALSE 294 | 장소,국가,파라과이,Paraguay,FALSE 295 | 장소,국가,러시아,Russia,FALSE 296 | 장소,국가,벨라루스,Belarus,FALSE 297 | 장소,국가,우크라이나,Ukraine,FALSE 298 | 장소,국가,네덜란드,Netherlands,FALSE 299 | 장소,국가,모나코,Monaco,FALSE 300 | 장소,국가,벨기에,Belgium,FALSE 301 | 장소,국가,아일랜드,Ireland,FALSE 302 | 장소,국가,영국,Briton,FALSE 303 | 장소,국가,프랑스,France,FALSE 304 | 장소,국가,그리스,Greece,FALSE 305 | 장소,국가,루마니아,Romania,FALSE 306 | 장소,국가,바티칸,Vatican,FALSE 307 | 장소,국가,불가리아,Bulgaria,FALSE 308 | 장소,국가,스페인,Spain,FALSE 309 | 장소,국가,이탈리아,Italy,FALSE 310 | 장소,국가,터키,Turkey,FALSE 311 | 장소,국가,포르투갈,Portugal,FALSE 312 | 장소,국가,노르웨이,Norway,FALSE 313 | 장소,국가,덴마크,Denmark,FALSE 314 | 장소,국가,스웨덴,Sweden,FALSE 315 | 장소,국가,핀란드,Finland,FALSE 316 | 장소,국가,아이슬란드,Iceland,FALSE 317 | 장소,가정,집,house,FALSE 318 | 장소,가정,아파트,apartment,FALSE 319 | 장소,가정,오두막,hut,FALSE 320 | 장소,가정,오두막집,shack,FALSE 321 | 장소,가정,나무 위의집,treehouse,FALSE 322 | 장소,가정,물 위의 집,stilt_house,FALSE 323 | 장소,가정,옷장,closet,FALSE 324 | 장소,가정,화장실,bathroom,FALSE 325 | 장소,가정,욕조,bathtub,FALSE 326 | 장소,가정,침실,bedroom,FALSE 327 | 장소,가정,탈의실,changing_room,FALSE 328 | 장소,가정,탈의실,dressing_room,FALSE 329 | 장소,가정,피팅룸,fitting_room,FALSE 330 | 장소,가정,주방,kitchen,FALSE 331 | 장소,가정,거실,living_room,FALSE 332 | 장소,가정,지저분한방,messy_room,FALSE 333 | 장소,가정,오타쿠방,otaku_room,FALSE 334 | 장소,가정,샤워실,shower,FALSE 335 | 장소,가정,칸막이화장실,toilet_stall,FALSE 336 | 장소,시설,감방,prison_cell,FALSE 337 | 장소,시설,감옥,prison,FALSE 338 | 장소,시설,지하 감옥,dungeon,FALSE 339 | 장소,시설,건물 난간,minaret,FALSE 340 | 장소,시설,교회,church,FALSE 341 | 장소,시설,군사 기지,military_base,FALSE 342 | 장소,시설,군사 벙커,bunker,FALSE 343 | 장소,시설,도서관,library,FALSE 344 | 장소,시설,도시,city,FALSE 345 | 장소,시설,공원,park,FALSE 346 | 장소,시설,마을,village,FALSE 347 | 장소,시설,빌딩,building,FALSE 348 | 장소,시설,시골,rural,FALSE 349 | 장소,시설,이동하는 도시,floating_city,FALSE 350 | 장소,시설,정원,garden,FALSE 351 | 장소,시설,묘지,graveyard,FALSE 352 | 장소,시설,법정,courtroom,FALSE 353 | 장소,시설,병실,infirmary,FALSE 354 | 장소,시설,병원,hospital,FALSE 355 | 장소,시설,사원,mosque,FALSE 356 | 장소,시설,성,castle,FALSE 357 | 장소,시설,러브 호텔,love hotel,FALSE 358 | 장소,시설,호텔,hotel,FALSE 359 | 장소,시설,호텔방,hotel_room,FALSE 360 | 장소,시설,신사,shrine,FALSE 361 | 장소,시설,유적,ruins,FALSE 362 | 장소,시설,전화 부스,phone_booth,FALSE 363 | 장소,시설,절,temple,FALSE 364 | 장소,시설,학교,school,FALSE 365 | 장소,시설,건물 옥상,rooftop,FALSE 366 | 장소,시설,교실,classroom,FALSE 367 | 장소,시설,동아리실,clubroom,FALSE 368 | 장소,시설,사무실,office,FALSE 369 | 장소,시설,직원실,staff_room,FALSE 370 | 장소,시설,1인 사무실,cubicle_1_cubicle,FALSE 371 | 장소,유흥,게임장,arcade,FALSE 372 | 장소,유흥,경기장,stadium,FALSE 373 | 장소,유흥,관람차,ferris_wheel,FALSE 374 | 장소,유흥,영화관,amphitheater,FALSE 375 | 장소,유흥,원형극장,theater,FALSE 376 | 장소,유흥,놀이공원,amusement_park,FALSE 377 | 장소,유흥,동물원,zoo,FALSE 378 | 장소,유흥,롤러코스터,roller_coaster,FALSE 379 | 장소,유흥,미술관,art_gallery,FALSE 380 | 장소,유흥,박물관,museum,FALSE 381 | 장소,유흥,쇼핑센터,mall,FALSE 382 | 장소,유흥,수족관,aquarium,FALSE 383 | 장소,유흥,술집,bar,FALSE 384 | 장소,유흥,영화관,movie_theater,FALSE 385 | 장소,유흥,온천,onsen,FALSE 386 | 장소,유흥,클럽,nightclub,FALSE 387 | 장소,유흥,투기장,arena,FALSE 388 | 장소,유흥,회전목마,carousel,FALSE 389 | 장소,유흥,무대,stage,FALSE 390 | 장소,유흥,이벤트 무대,convention,FALSE 391 | 장소,운동,라커룸,locker_room,FALSE 392 | 장소,운동,볼링장,bowling_alley,FALSE 393 | 장소,운동,수영장,pool,FALSE 394 | 장소,운동,스케이트장,skating_rink,FALSE 395 | 장소,운동,운동장,playground,FALSE 396 | 장소,운동,육상경기장,running_track,FALSE 397 | 장소,운동,축구장,soccer_field,FALSE 398 | 장소,운동,워터파크,waterpark,FALSE 399 | 장소,운동,체육관창고,gym_storeroom,FALSE 400 | 장소,운동,풀사이드,poolside,FALSE 401 | 장소,운동,헬스장,gym,FALSE 402 | 장소,가게,가게,shop,FALSE 403 | 장소,가게,구내식당,cafeteria,FALSE 404 | 장소,가게,꽃집,flower_shop,FALSE 405 | 장소,가게,레스토랑,restaurant,FALSE 406 | 장소,가게,무기상점,weapon_shop,FALSE 407 | 장소,가게,무기창고,armory,FALSE 408 | 장소,가게,빵집,bakery,FALSE 409 | 장소,가게,샬롱,salon,FALSE 410 | 장소,가게,서점,bookstore,FALSE 411 | 장소,가게,성인 도구가게,sex_shop,FALSE 412 | 장소,가게,슈퍼 마켓,supermarket,FALSE 413 | 장소,가게,시장,market,FALSE 414 | 장소,가게,시장,market_stall,FALSE 415 | 장소,가게,식당,dining_room,FALSE 416 | 장소,가게,야외,pharmacy,FALSE 417 | 장소,가게,옷장,closet,FALSE 418 | 장소,가게,창고,storage_room,FALSE 419 | 장소,가게,카페,cafe,FALSE 420 | 장소,가게,편의점,convenience_store,FALSE 421 | 장소,이동,거리,street,FALSE 422 | 장소,이동,골목,alley,FALSE 423 | 장소,이동,길,path,FALSE 424 | 장소,이동,다리,bridge,FALSE 425 | 장소,이동,보도,sidewalk,FALSE 426 | 장소,이동,횡단보도,crosswalk,FALSE 427 | 장소,이동,돌 산책로,stone_walkway,FALSE 428 | 장소,이동,나무 다리,wooden_bridge,FALSE 429 | 장소,이동,밧줄 다리,rope_bridge,FALSE 430 | 장소,이동,도로,road,FALSE 431 | 장소,이동,고속도로,highway,FALSE 432 | 장소,이동,차고,garage,FALSE 433 | 장소,이동,터널,tunnel,FALSE 434 | 장소,이동,주유소,gas_station,FALSE 435 | 장소,이동,주차장,parking_lot,FALSE 436 | 장소,이동,기차역,train_station,FALSE 437 | 장소,이동,철도 선로,railroad_tracks,FALSE 438 | 장소,이동,교차로,railroad_crossing,FALSE 439 | 장소,이동,항구,harbor,FALSE 440 | 장소,이동,운하,canal,FALSE 441 | 장소,이동,교각,pier,FALSE 442 | 장소,이동,선착장,jetty,FALSE 443 | 장소,이동,공항,airport,FALSE 444 | 장소,이동,비행장,airfield,FALSE 445 | 장소,이동,격납고,hangar,FALSE 446 | 장소,이동,활주로,runway,FALSE 447 | 장소,이동,컨트롤 타워,control_tower,FALSE 448 | 장소,현장,건설현장,construction_site,FALSE 449 | 장소,현장,공장,factory,FALSE 450 | 장소,현장,꽃밭,flower_field,FALSE 451 | 장소,현장,냉각탑,cooling_tower,FALSE 452 | 장소,현장,밀밭,wheat_field,FALSE 453 | 장소,현장,발전소,powerplant,FALSE 454 | 장소,현장,밭,field,FALSE 455 | 장소,현장,실험실,laboratory,FALSE 456 | 장소,현장,쌀밭,rice_paddy,FALSE 457 | 장소,현장,온실,conservatory,FALSE 458 | 장소,현장,온실,greenhouse,FALSE 459 | 장소,현장,외양간,barn,FALSE 460 | 장소,현장,원자력 발전소,nuclear_powerplant,FALSE 461 | 장소,현장,작업장,workshop,FALSE 462 | 장소,현장,(정원의) 정자,gazebo,FALSE 463 | 장소,현장,정련소,refinery,FALSE 464 | 장소,현장,창고,warehouse,FALSE 465 | 장소,자연,강,river,FALSE 466 | 장소,자연,개울,stream,FALSE 467 | 장소,자연,낭떠러지,cliff,FALSE 468 | 장소,자연,대나무숲,bamboo_forest,FALSE 469 | 장소,자연,대양,ocean,FALSE 470 | 장소,자연,동굴,cave,FALSE 471 | 장소,자연,목초지,meadow,FALSE 472 | 장소,자연,밀림,jungle,FALSE 473 | 장소,자연,빙하,glacier,FALSE 474 | 장소,자연,사막,desert,FALSE 475 | 장소,자연,사바나,savannah,FALSE 476 | 장소,자연,산,mountain,FALSE 477 | 장소,자연,섬,island,FALSE 478 | 장소,자연,섬이 떠다니다,floating_island,FALSE 479 | 장소,자연,언덕,hill,FALSE 480 | 장소,자연,연못,pond,FALSE 481 | 장소,자연,오아시스,oasis,FALSE 482 | 장소,자연,온천,geyser,FALSE 483 | 장소,자연,자연,nature,FALSE 484 | 장소,자연,폭포,waterfall,FALSE 485 | 장소,자연,해변,beach,FALSE 486 | 장소,자연,해변가,shore,FALSE 487 | 장소,자연,해저,ocean_bottom,FALSE 488 | 장소,자연,협곡,canyon,FALSE 489 | 장소,자연,호수,lake,FALSE 490 | 장소,자연,화산,volcano,FALSE 491 | 장소,자연,황무지,wasteland,FALSE 492 | 장소,건축물,거대 구조물,megastructure,FALSE 493 | 장소,건축물,경비탑,guard_tower,FALSE 494 | 장소,건축물,댐,dam,FALSE 495 | 장소,건축물,둑,dock,FALSE 496 | 장소,건축물,등대,lighthouse,FALSE 497 | 장소,건축물,마천루,skyscraper,FALSE 498 | 장소,건축물,분수,fountain,FALSE 499 | 장소,건축물,수로,aqueduct,FALSE 500 | 장소,건축물,시계탑,clock_tower,FALSE 501 | 장소,건축물,우주 엘리베이터,space_elevator,FALSE 502 | 장소,건축물,종탑,bell_tower,FALSE 503 | 장소,건축물,탑,pagoda,FALSE 504 | 장소,건축물,탑,tower,FALSE -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[동작 2].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 의상,행동,옷을 고치다,adjusting_clothes,FALSE 3 | 의상,행동,옷을 당기다,clothes_grab,FALSE 4 | 의상,행동,옷을 풀린다,untying,FALSE 5 | 의상,행동,옷을 풀었다,open_clothes,FALSE 6 | 의상,행동,옷의 물을 짜다,wringing_clothes,FALSE 7 | 의상,행동,옷을 묶지 않았다,untied,FALSE 8 | 의상,행동,옷을 갈아 입는다,undressing,FALSE 9 | 의상,행동,옷의 지퍼를 풀다,unzipped,FALSE 10 | 의상,행동,옷의 지퍼를 내리다,unzipping,FALSE 11 | 의상,행동,옷을 아래로 내리다,clothes_down,FALSE 12 | 의상,행동,옷을 옆으로 넘기다,clothing_aside,FALSE 13 | 의상,행동,옷을 옆으로 내리다,open_hoodie,FALSE 14 | 의상,행동,옷을 상의만 입었다,topless,FALSE 15 | 의상,행동,옷을 하의만 입었다,bottomless,FALSE 16 | 의상,행동,수건을 풀었다,open_towel,FALSE 17 | 의상,행동,수건을 벗겨졌다,towel_slip,FALSE 18 | 의상,행동,잠옷을 아래로 내렸다,pajamas_pull,FALSE 19 | 의상,행동,기모노를 벗다,open_kimono,FALSE 20 | 의상,행동,기모노를 위로 올리다,kimono_lift,FALSE 21 | 의상,행동,기모노를 아래로 내리다,kimono_pull,FALSE 22 | 의상,행동,유카타를 위로 올리다,yukata_lift,FALSE 23 | 의상,행동,레오타드를 위로 당기다,leotard_pull,FALSE 24 | 의상,행동,레오타드를 옆으로 넘기다,leotard_aside,FALSE 25 | 드레스,행동,드레스를 위로 올리다,dress_pull,FALSE 26 | 드레스,행동,드레스를 아래로 내리다,dress_tug,FALSE 27 | 드레스,행동,드레스를 옆으로 넘기다,dress_aside,FALSE 28 | 수영복,행동,수영복을 고치다,adjusting_swimsuit,FALSE 29 | 수영복,행동,수영복을 풀었다,open_bikini,FALSE 30 | 수영복,행동,수영복을 찢었다,torn_swimsuit,FALSE 31 | 수영복,행동,수영복을 위로 올리다,bikini_lift,FALSE 32 | 수영복,행동,수영복을 위로 당기다,bikini_pull,FALSE 33 | 수영복,행동,수영복을 위로 당기다,swimsuit_pull,FALSE 34 | 수영복,행동,수영복을 옆으로 넘기다,bikini_aside,FALSE 35 | 수영복,행동,수영복을 옆으로 넘기다,swimsuit_aside,FALSE 36 | 수영복,행동,수영복을 상의만 입다,bikini_top_only,FALSE 37 | 수영복,행동,수영복을 하의만 입다,bikini_bottom_only,FALSE 38 | 수영복,행동,수영복 위로 옷을 입다,swimsuit_cover-up,FALSE 39 | 수영복,행동,수영복을 옷 안에 입다,swimsuit_under_clothes,FALSE 40 | 상의,행동,셔츠를 풀었다,open_shirt,FALSE 41 | 상의,행동,재킷를 풀었다,open_jacket,FALSE 42 | 상의,행동,코트를 풀었다,open_coat,FALSE 43 | 상의,행동,로브를 풀었다,open_robe,FALSE 44 | 상의,행동,셔츠의 옷깃을 풀었다,open_collar,FALSE 45 | 상의,행동,셔츠의 옷깃을 잡았다,collar_grab,FALSE 46 | 상의,행동,셔츠의 옷깃을 당기다,collar_tug,FALSE 47 | 상의,행동,셔츠를 위로 올렸다,shirt_lift,FALSE 48 | 상의,행동,망토를 위로 올렸다,cape_lift,FALSE 49 | 상의,행동,스웨터를 위로 올렸다,sweater_lift,FALSE 50 | 상의,행동,셔츠를 옆으로 당기다,shirt_pull,FALSE 51 | 상의,행동,셔츠를 옆으로 내리다,shirt_slip,FALSE 52 | 상의,행동,셔츠를 옆으로 넘기다,shirt_aside,FALSE 53 | 상의,행동,가운을 옆으로 넘겼다,robe_slip,FALSE 54 | 상의,행동,셔츠를 아래로 당기다,shirt_tug,FALSE 55 | 상의,행동,후드를 아래로 내리다,hood_down,FALSE 56 | 상의,행동,셔츠의 끈을 위로 올린다,strap_lift,FALSE 57 | 상의,행동,셔츠의 끈을 아래로 내리다,strap_slip,FALSE 58 | 상의,행동,셔츠의 소매를 위로 올렸다,sleeves_rolled_up,FALSE 59 | 상의,행동,셔츠의 끝을 위로 올려 묶다,sleeves_pushed_up,FALSE 60 | 상의,행동,셔츠를 내려 가슴 한쪽을 노출하다,one_breast_out,FALSE 61 | 상의,행동,셔츠를 내려 가슴 양쪽을 노출하다,breasts_out,FALSE 62 | 하의,행동,바지를 풀었다,open_pants,FALSE 63 | 하의,행동,바지를 아래로 내렸다,pants_pull,FALSE 64 | 하의,행동,반바지를 풀었다,open_shorts,FALSE 65 | 하의,행동,반바지를 아래로 내리다,shorts_pull,FALSE 66 | 하의,행동,반바지를 옆으로 넘기다,shorts_aside,FALSE 67 | 하의,행동,브루마를 아래로 내렸다,buruma_pull,FALSE 68 | 하의,행동,브루마를 옆으로 넘기다,buruma_aside,FALSE 69 | 하의,행동,하카마를 아래로 내리다,hakama_pull,FALSE 70 | 하의,행동,치마를 잡았다,skirt_grab,FALSE 71 | 하의,행동,치마를 풀었다,open_skirt,FALSE 72 | 하의,행동,치마를 위로 올리다,skirt_lift,FALSE 73 | 하의,행동,치마를 위로 올라갔다,upskirt,FALSE 74 | 하의,행동,치마를 아래로 당기다,skirt_tug,FALSE 75 | 하의,행동,치마를 아래로 내리다,skirt_pull,FALSE 76 | 하의,행동,치마를 안에서 엿보다,extended_upskirt,FALSE 77 | 하의,행동,치마를 다리에 걸었다,skirt_around_one_leg,FALSE 78 | 하의,행동,치마를 발목에 걸었다,skirt_around_ankles,FALSE 79 | 브래지어,행동,브래지어를 벗다,bra_removed,FALSE 80 | 브래지어,행동,브래지어를 벗었다,bra_pull,FALSE 81 | 브래지어,행동,브래지어를 들다,holding_bra,FALSE 82 | 브래지어,행동,브래지어를 찢었다,torn_bra,FALSE 83 | 브래지어,행동,브래지어를 고치다,adjusting_bra,FALSE 84 | 브래지어,행동,브래지어를 풀었다,open_bra,FALSE 85 | 브래지어,행동,브래지어를 입지 않다,no_bra,FALSE 86 | 브래지어,행동,브래지어를 위로 올리다,bra_lift,FALSE 87 | 브래지어,행동,브래지어를 머리에 씌우다,bra_on_head,FALSE 88 | 브래지어,행동,브래지어를 엉덩이에 씌우다,bra_on_ass,FALSE 89 | 팬티,행동,팬티를 들다,holding_panties,FALSE 90 | 팬티,행동,팬티를 고치다,adjusting_panties,FALSE 91 | 팬티,행동,팬티를 손대다,hand_in_panties,FALSE 92 | 팬티,행동,팬티를 발목에 걸다,panties_around_ankles,FALSE 93 | 팬티,행동,팬티를 다리에 걸다,panties_around_one_leg,FALSE 94 | 팬티,행동,팬티를 입 안에 넣다,panties_in_mouth,FALSE 95 | 팬티,행동,팬티를 위로 올리다,panty_lift,FALSE 96 | 팬티,행동,팬티를 아래로 내리다,panty_pull,FALSE 97 | 팬티,행동,팬티를 옆으로 넘기다,panties_aside,FALSE 98 | 팬티,행동,팬티를 가슴에 씌우다,panties_on_breasts,FALSE 99 | 팬티,행동,팬티를 머리에 씌우다,panties_on_head,FALSE 100 | 양말,행동,양말을 들다,holding_legwear,FALSE 101 | 양말,행동,양말을 입다,putting_on_legwear,FALSE 102 | 양말,행동,양말을 벗다,pulling_off_legwear,FALSE 103 | 양말,행동,양말을 벗었다,removing_legwear,FALSE 104 | 양말,행동,양말을 고치다,adjusting_legwear,FALSE 105 | 양말,행동,양말이 젖었다,wet_legwear,FALSE 106 | 양말,행동,양말이 찢어졌다,torn_legwear,FALSE 107 | 양말,행동,양말이 팽팽하다,taut_legwear,FALSE 108 | 양말,행동,양말이 다른 걸 입다,mismatched_legwear,FALSE 109 | 양말,행동,팬티 스타킹을 내리다,pantyhose_pull,FALSE 110 | 모자,행동,모자를 들다,holding_hat,FALSE 111 | 모자,행동,모자를 벗다,hat_removed,FALSE 112 | 모자,행동,모자를 잡다,hat_tip,FALSE 113 | 모자,행동,모자를 씌우다,putting_on_headwear,FALSE 114 | 모자,행동,모자를 날리다,hat_loss,FALSE 115 | 모자,행동,모자를 찢었다,torn_hat,FALSE 116 | 모자,행동,모자를 기울이다,tilted_headwear,FALSE 117 | 모자,행동,모자를 고치다,adjusting_headwear,FALSE 118 | 모자,행동,모자를 거꾸로 쓰다,backwards_hat,FALSE 119 | 모자,행동,모자를 옆으로 쓰다,sideways_hat,FALSE 120 | 모자,행동,모자를 손으로 잡다,hand_on_headwear,FALSE 121 | 모자,행동,모자를 가슴 위에 올리다,hat_on_chest,FALSE 122 | 모자,행동,모자를 눈 한쪽 위에 올리다,hat_over_one_eye,FALSE 123 | 모자,행동,모자를 눈 양쪽 위에 올리다,hat_over_eyes,FALSE 124 | 안경,행동,안경을 잡다,holding_eyewear,FALSE 125 | 안경,행동,안경을 찾다,looking_for_glasses,FALSE 126 | 안경,행동,안경을 벗다,removing_eyewear,FALSE 127 | 안경,행동,안경을 벗었다,eyewear_removed,FALSE 128 | 안경,행동,안경을 기울이다,crooked_eyewear,FALSE 129 | 안경,행동,안경을 조정하다,adjusting_eyewear,FALSE 130 | 안경,행동,안경을 바꿔 끼다,eyewear_switch,FALSE 131 | 안경,행동,안경을 끼고 엿본다,looking_over_eyewear,FALSE 132 | 안경,행동,안경을 끼고 본다,eyewear_view,FALSE 133 | 안경,행동,안경을 옷 위에 걸다,eyewear_hang,FALSE 134 | 안경,행동,안경을 입으로 물다,eyewear_in_mouth,FALSE 135 | 안경,행동,안경을 살짝 위로 올린다,hand_on_eyewear,FALSE 136 | 안경,행동,안경을 머리 위에 올리다,eyewear_on_head,FALSE 137 | 안경,행동,안경을 모자 위에 올리다,eyewear_on_headwear,FALSE 138 | 마스크,행동,마스크를 들다,holding_mask,FALSE 139 | 마스크,행동,마스크를 벗다,removing_mask,FALSE 140 | 마스크,행동,마스크를 벗었다,mask_removed,FALSE 141 | 마스크,행동,마스크를 목에 걸다,mask_around_neck,FALSE 142 | 마스크,행동,마스크를 위로 올리다,mask_lift,FALSE 143 | 마스크,행동,마스크를 아래로 당기다,mask_pull,FALSE 144 | 마스크,행동,마스크를 눈 위에 올리다,mask_over_one_eye,FALSE 145 | 마스크,행동,마스크를 머리 위에 올리다,mask_on_head,FALSE 146 | 넥타이,행동,넥타이를 잡다,necktie_grab,FALSE 147 | 귀걸이,행동,귀걸이를 고치다,adjusting_earrings,FALSE 148 | ,,,,FALSE 149 | ,,,,FALSE 150 | ,,,,FALSE 151 | ,,,,FALSE 152 | ,,,,FALSE 153 | ,,,,FALSE 154 | ,,,,FALSE 155 | ,,,,FALSE 156 | ,,,,FALSE 157 | ,,,,FALSE 158 | ,,,,FALSE 159 | ,,,,FALSE 160 | ,,,,FALSE 161 | ,,,,FALSE 162 | ,,,,FALSE 163 | ,,,,FALSE 164 | ,,,,FALSE 165 | ,,,,FALSE 166 | ,,,,FALSE 167 | ,,,,FALSE 168 | ,,,,FALSE 169 | ,,,,FALSE 170 | ,,,,FALSE 171 | ,,,,FALSE 172 | ,,,,FALSE 173 | ,,,,FALSE 174 | ,,,,FALSE 175 | ,,,,FALSE 176 | ,,,,FALSE 177 | ,,,,FALSE 178 | ,,,,FALSE 179 | ,,,,FALSE 180 | ,,,,FALSE 181 | ,,,,FALSE 182 | ,,,,FALSE 183 | ,,,,FALSE 184 | ,,,,FALSE 185 | ,,,,FALSE 186 | ,,,,FALSE 187 | ,,,,FALSE 188 | ,,,,FALSE 189 | ,,,,FALSE 190 | ,,,,FALSE 191 | ,,,,FALSE 192 | ,,,,FALSE 193 | ,,,,FALSE 194 | ,,,,FALSE 195 | ,,,,FALSE 196 | ,,,,FALSE 197 | ,,,,FALSE 198 | ,,,,FALSE 199 | ,,,,FALSE 200 | ,,,,FALSE 201 | ,,,,FALSE 202 | ,,,,FALSE 203 | ,,,,FALSE 204 | ,,,,FALSE 205 | ,,,,FALSE 206 | ,,,,FALSE 207 | ,,,,FALSE 208 | ,,,,FALSE 209 | ,,,,FALSE 210 | ,,,,FALSE 211 | ,,,,FALSE 212 | ,,,,FALSE 213 | ,,,,FALSE 214 | ,,,,FALSE 215 | ,,,,FALSE 216 | ,,,,FALSE 217 | ,,,,FALSE 218 | ,,,,FALSE 219 | ,,,,FALSE 220 | ,,,,FALSE 221 | ,,,,FALSE 222 | ,,,,FALSE 223 | ,,,,FALSE 224 | ,,,,FALSE 225 | ,,,,FALSE 226 | ,,,,FALSE 227 | ,,,,FALSE 228 | ,,,,FALSE 229 | ,,,,FALSE 230 | ,,,,FALSE 231 | ,,,,FALSE 232 | ,,,,FALSE 233 | ,,,,FALSE 234 | ,,,,FALSE 235 | ,,,,FALSE 236 | ,,,,FALSE 237 | ,,,,FALSE 238 | ,,,,FALSE 239 | ,,,,FALSE 240 | ,,,,FALSE 241 | ,,,,FALSE 242 | ,,,,FALSE 243 | ,,,,FALSE 244 | ,,,,FALSE 245 | ,,,,FALSE 246 | ,,,,FALSE 247 | ,,,,FALSE 248 | ,,,,FALSE 249 | ,,,,FALSE 250 | ,,,,FALSE 251 | ,,,,FALSE 252 | ,,,,FALSE 253 | ,,,,FALSE 254 | ,,,,FALSE 255 | ,,,,FALSE 256 | ,,,,FALSE 257 | ,,,,FALSE 258 | ,,,,FALSE 259 | ,,,,FALSE 260 | ,,,,FALSE 261 | ,,,,FALSE 262 | ,,,,FALSE 263 | ,,,,FALSE 264 | ,,,,FALSE 265 | ,,,,FALSE 266 | ,,,,FALSE 267 | ,,,,FALSE 268 | ,,,,FALSE 269 | ,,,,FALSE 270 | ,,,,FALSE 271 | ,,,,FALSE 272 | ,,,,FALSE 273 | ,,,,FALSE 274 | ,,,,FALSE 275 | ,,,,FALSE 276 | ,,,,FALSE 277 | ,,,,FALSE 278 | ,,,,FALSE 279 | ,,,,FALSE 280 | ,,,,FALSE 281 | ,,,,FALSE 282 | ,,,,FALSE 283 | ,,,,FALSE 284 | ,,,,FALSE 285 | ,,,,FALSE 286 | ,,,,FALSE 287 | ,,,,FALSE 288 | ,,,,FALSE 289 | ,,,,FALSE 290 | ,,,,FALSE 291 | ,,,,FALSE 292 | ,,,,FALSE 293 | ,,,,FALSE 294 | ,,,,FALSE 295 | ,,,,FALSE 296 | ,,,,FALSE 297 | ,,,,FALSE 298 | ,,,,FALSE 299 | ,,,,FALSE 300 | ,,,,FALSE 301 | ,,,,FALSE 302 | ,,,,FALSE 303 | ,,,,FALSE 304 | ,,,,FALSE 305 | ,,,,FALSE 306 | ,,,,FALSE 307 | ,,,,FALSE 308 | ,,,,FALSE 309 | ,,,,FALSE 310 | ,,,,FALSE 311 | ,,,,FALSE 312 | ,,,,FALSE 313 | ,,,,FALSE 314 | ,,,,FALSE 315 | ,,,,FALSE 316 | ,,,,FALSE 317 | ,,,,FALSE 318 | ,,,,FALSE 319 | ,,,,FALSE 320 | ,,,,FALSE 321 | ,,,,FALSE 322 | ,,,,FALSE 323 | ,,,,FALSE 324 | ,,,,FALSE 325 | ,,,,FALSE 326 | ,,,,FALSE 327 | ,,,,FALSE 328 | ,,,,FALSE 329 | ,,,,FALSE 330 | ,,,,FALSE 331 | ,,,,FALSE 332 | ,,,,FALSE 333 | ,,,,FALSE 334 | ,,,,FALSE 335 | ,,,,FALSE 336 | ,,,,FALSE 337 | ,,,,FALSE 338 | ,,,,FALSE 339 | ,,,,FALSE 340 | ,,,,FALSE 341 | ,,,,FALSE 342 | ,,,,FALSE 343 | ,,,,FALSE 344 | ,,,,FALSE 345 | ,,,,FALSE 346 | ,,,,FALSE 347 | ,,,,FALSE 348 | ,,,,FALSE 349 | ,,,,FALSE 350 | ,,,,FALSE 351 | ,,,,FALSE 352 | ,,,,FALSE 353 | ,,,,FALSE 354 | ,,,,FALSE 355 | ,,,,FALSE 356 | ,,,,FALSE 357 | ,,,,FALSE 358 | ,,,,FALSE 359 | ,,,,FALSE 360 | ,,,,FALSE 361 | ,,,,FALSE 362 | ,,,,FALSE 363 | ,,,,FALSE 364 | ,,,,FALSE 365 | ,,,,FALSE 366 | ,,,,FALSE 367 | ,,,,FALSE 368 | ,,,,FALSE 369 | ,,,,FALSE 370 | ,,,,FALSE 371 | ,,,,FALSE 372 | ,,,,FALSE 373 | ,,,,FALSE 374 | ,,,,FALSE 375 | ,,,,FALSE 376 | ,,,,FALSE 377 | ,,,,FALSE 378 | ,,,,FALSE 379 | ,,,,FALSE 380 | ,,,,FALSE 381 | ,,,,FALSE 382 | ,,,,FALSE 383 | ,,,,FALSE 384 | ,,,,FALSE 385 | ,,,,FALSE 386 | ,,,,FALSE 387 | ,,,,FALSE 388 | ,,,,FALSE 389 | ,,,,FALSE 390 | ,,,,FALSE 391 | ,,,,FALSE 392 | ,,,,FALSE 393 | ,,,,FALSE 394 | ,,,,FALSE 395 | ,,,,FALSE 396 | ,,,,FALSE 397 | ,,,,FALSE 398 | ,,,,FALSE 399 | ,,,,FALSE 400 | ,,,,FALSE 401 | ,,,,FALSE 402 | ,,,,FALSE 403 | ,,,,FALSE 404 | ,,,,FALSE 405 | ,,,,FALSE 406 | ,,,,FALSE 407 | ,,,,FALSE 408 | ,,,,FALSE 409 | ,,,,FALSE 410 | ,,,,FALSE 411 | ,,,,FALSE 412 | ,,,,FALSE 413 | ,,,,FALSE 414 | ,,,,FALSE 415 | ,,,,FALSE 416 | ,,,,FALSE 417 | ,,,,FALSE 418 | ,,,,FALSE 419 | ,,,,FALSE 420 | ,,,,FALSE 421 | ,,,,FALSE 422 | ,,,,FALSE 423 | ,,,,FALSE 424 | ,,,,FALSE 425 | ,,,,FALSE 426 | ,,,,FALSE 427 | ,,,,FALSE 428 | ,,,,FALSE 429 | ,,,,FALSE 430 | ,,,,FALSE 431 | ,,,,FALSE 432 | ,,,,FALSE 433 | ,,,,FALSE 434 | ,,,,FALSE 435 | ,,,,FALSE 436 | ,,,,FALSE 437 | ,,,,FALSE 438 | ,,,,FALSE 439 | ,,,,FALSE 440 | ,,,,FALSE 441 | ,,,,FALSE 442 | ,,,,FALSE 443 | ,,,,FALSE 444 | ,,,,FALSE 445 | ,,,,FALSE 446 | ,,,,FALSE 447 | ,,,,FALSE 448 | ,,,,FALSE 449 | ,,,,FALSE 450 | ,,,,FALSE 451 | ,,,,FALSE 452 | ,,,,FALSE 453 | ,,,,FALSE 454 | ,,,,FALSE 455 | ,,,,FALSE 456 | ,,,,FALSE 457 | ,,,,FALSE 458 | ,,,,FALSE 459 | ,,,,FALSE 460 | ,,,,FALSE 461 | ,,,,FALSE 462 | ,,,,FALSE 463 | ,,,,FALSE 464 | ,,,,FALSE 465 | ,,,,FALSE 466 | ,,,,FALSE 467 | ,,,,FALSE 468 | ,,,,FALSE 469 | ,,,,FALSE 470 | ,,,,FALSE 471 | ,,,,FALSE 472 | ,,,,FALSE 473 | ,,,,FALSE 474 | ,,,,FALSE 475 | ,,,,FALSE 476 | ,,,,FALSE 477 | ,,,,FALSE 478 | ,,,,FALSE 479 | ,,,,FALSE 480 | ,,,,FALSE 481 | ,,,,FALSE 482 | ,,,,FALSE 483 | ,,,,FALSE 484 | ,,,,FALSE 485 | ,,,,FALSE 486 | ,,,,FALSE 487 | ,,,,FALSE 488 | ,,,,FALSE 489 | ,,,,FALSE 490 | ,,,,FALSE 491 | ,,,,FALSE 492 | ,,,,FALSE 493 | ,,,,FALSE -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[외모].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 얼굴,부위,얼굴,face,FALSE 3 | 얼굴,부위,뺨,cheek,FALSE 4 | 얼굴,부위,턱,chin,FALSE 5 | 얼굴,모양,얼굴이 작다,small_face,FALSE 6 | 얼굴,모양,얼굴이 살짝 작다,small_medium_face,FALSE 7 | 얼굴,모양,얼굴이 평범하다,medium_face,FALSE 8 | 얼굴,모양,얼굴이 크다,large_face,FALSE 9 | 얼굴,모양,얼굴이 매우 크다,huge_face,FALSE 10 | 얼굴,모양,얼굴이 날렵하다,sharp_face,FALSE 11 | 얼굴,모양,얼굴이 뾰족하다,pointed_face,FALSE 12 | 얼굴,모양,얼굴이 땅콩형이다,peanut_face,FALSE 13 | 얼굴,모양,얼굴이 타원형이다,round_face,FALSE 14 | 얼굴,모양,얼굴이 계란형이다,egg-shaped_face,FALSE 15 | 얼굴,모양,얼굴이 삼각형이다,triangular_face,FALSE 16 | 얼굴,모양,얼굴이 역삼각형이다,inverted_triangle_of_faces,FALSE 17 | 얼굴,모양,얼굴이 사각형이다,squareface,FALSE 18 | 얼굴,모양,얼굴이 마름모형이다,diamond_face,FALSE 19 | 얼굴,모양,얼굴이 육각형이다,hexagonal_face,FALSE 20 | 얼굴,모양,얼굴이 하트형이다,Heart-shaped_face,FALSE 21 | 얼굴,특징,뺨을 붉혔다,blush,FALSE 22 | 얼굴,특징,울고 있다,crying,FALSE 23 | 얼굴,특징,울면서 슬퍼한다,cried_so_sadly,FALSE 24 | 머리카락,색깔,흰색 머리카락,white hair,FALSE 25 | 머리카락,색깔,갈색 머리카락,brown hair,FALSE 26 | 머리카락,색깔,빨강색 머리카락,red hair,FALSE 27 | 머리카락,색깔,분홍색 머리카락,pink hair,FALSE 28 | 머리카락,색깔,주황색 머리카락,orange hair,FALSE 29 | 머리카락,색깔,노란색 머리카락,yellow hair,FALSE 30 | 머리카락,색깔,황금색 머리카락,Blonde hair,FALSE 31 | 머리카락,색깔,연두색 머리카락,light green hair,FALSE 32 | 머리카락,색깔,초록색 머리카락,green hair,FALSE 33 | 머리카락,색깔,하늘색 머리카락,sky blue hair,FALSE 34 | 머리카락,색깔,파란색 머리카락,blue hair,FALSE 35 | 머리카락,색깔,보라색 머리카락,purple hair,FALSE 36 | 머리카락,색깔,검은색 머리카락,black hair,FALSE 37 | 머리카락,색깔,무지개색 머리카락,rainbow hair,FALSE 38 | 머리카락,색깔,머리카락 색깔이 두 가지다,two-tone hair,FALSE 39 | 머리카락,색깔,머리카락 색깔이 줄무늬다,streaked hair,FALSE 40 | 머리카락,색깔,머리카락 색깔이 층을 이룬다,gradient hair,FALSE 41 | 머리카락,색깔,머리카락 색깔이 절반씩 다르다,split-color hair,FALSE 42 | 머리카락,색깔,머리카락 색깔이 매우 다양하다,multicolored hair,FALSE 43 | 머리카락,색깔,머리카락 안쪽을 염색했다,colored inner hair,FALSE 44 | 머리카락,색깔,머리카락을 아래→위로 염색하다,ombre,FALSE 45 | 머리카락,색깔,머리카락을 위→아래로 염색하다,sombre,FALSE 46 | 머리카락,모양,머리카락이 짧다,short_hair,FALSE 47 | 머리카락,모양,머리카락이 매우 짧다,very_short_hair,FALSE 48 | 머리카락,모양,머리카락이 엄청 짧다,absurdly_short_hair,FALSE 49 | 머리카락,모양,머리카락이 살짝 길다,medium_hair,FALSE 50 | 머리카락,모양,머리카락이 길다,long_hair,FALSE 51 | 머리카락,모양,머리카락이 매우 길다,very_long_hair,FALSE 52 | 머리카락,모양,머리카락이 엄청 길다,absurdly_long_hair,FALSE 53 | 머리카락,모양,머리카락이 곧다,straight_hair,FALSE 54 | 머리카락,모양,머리카락이 곱슬거린다,curly_hair,FALSE 55 | 머리카락,모양,머리카락이 구불댄다,wavy_hair,FALSE 56 | 머리카락,모양,머리카락이 날카롭다,spiked_hair,FALSE 57 | 머리카락,모양,머리카락이 뒤집혔다,flipped_hair,FALSE 58 | 머리카락,모양,머리카락이 뭉툭하다,bluntbangs,FALSE 59 | 머리카락,모양,머리카락이 뾰족하다,pointy_hair,FALSE 60 | 머리카락,모양,머리카락이 헝클어졌다,messy_hair,FALSE 61 | 머리카락,특징,앞머리가 가지런하다,Blunt_bangs,FALSE 62 | 머리카락,특징,앞머리가 양쪽으로 갈라진다,parted_bangs,FALSE 63 | 머리카락,특징,앞머리가 미간에서 교차한다,crossed_bangs,FALSE 64 | 머리카락,특징,앞머리가 한쪽으로 몰렸다,swept_bangs,FALSE 65 | 머리카락,특징,앞머리를 한쪽으로 땋았다,braided_bangs,FALSE 66 | 머리카락,특징,앞머리가 한쪽 눈을 가렸다,hair_over_one_eye,FALSE 67 | 머리카락,특징,앞머리가 양쪽 눈을 가렸다,hair_over_eyes,FALSE 68 | 머리카락,특징,앞머리가 눈 사이를 가린다,hair_between_eyes,FALSE 69 | 머리카락,특징,"앞머리가 한쪽만 길고, 한쪽은 짧다",asymmetrical_bangs,FALSE 70 | 머리카락,스타일,픽시컷,pixie_cut,FALSE 71 | 머리카락,스타일,언더컷,undercut,FALSE 72 | 머리카락,스타일,콘로우,cornrows,FALSE 73 | 머리카락,스타일,드레드,dreadlocks,FALSE 74 | 머리카락,스타일,브레이드,braid,FALSE 75 | 머리카락,스타일,앞머리 브레이드,braided_bangs,FALSE 76 | 머리카락,스타일,앞머리 브레이드,front_braid,FALSE 77 | 머리카락,스타일,사이드 브레이드,side_braid,FALSE 78 | 머리카락,스타일,프렌치 브레이드,french_braid,FALSE 79 | 머리카락,스타일,크라운 브레이드,crown_braid,FALSE 80 | 머리카락,스타일,싱글 브레이드,single_braid,FALSE 81 | 머리카락,스타일,여러 브레이드,multiple_braids,FALSE 82 | 머리카락,스타일,트윈 브레이드,twin_braids,FALSE 83 | 머리카락,스타일,트라이 브레이드,tri_braids,FALSE 84 | 머리카락,스타일,퀴드 브레이드,quad_braids,FALSE 85 | 머리카락,스타일,롤빵,hair_bun,FALSE 86 | 머리카락,스타일,묶은 롤빵,braided_bun,FALSE 87 | 머리카락,스타일,싱글 롤빵,single_hair_bun,FALSE 88 | 머리카락,스타일,더블 롤빵,double_bun,FALSE 89 | 머리카락,스타일,트윈 롤빵,triple_bun,FALSE 90 | 머리카락,스타일,콘헤어 롤빵,cone_hair_bun,FALSE 91 | 머리카락,스타일,도넛헤어 롤빵,doughnut_hair_bun,FALSE 92 | 머리카락,스타일,하트헤어 롤빵,heart_hair_bun,FALSE 93 | 머리카락,스타일,원 사이드 업,one_side_up,FALSE 94 | 머리카락,스타일,투 사이드 업,two_side_up,FALSE 95 | 머리카락,스타일,포니테일,ponytail,FALSE 96 | 머리카락,스타일,접힌 포니테일,folded_ponytail,FALSE 97 | 머리카락,스타일,앞머리 포니테일,front_ponytail,FALSE 98 | 머리카락,스타일,높은 포니테일,high_ponytail,FALSE 99 | 머리카락,스타일,낮은 포니테일,short_ponytail,FALSE 100 | 머리카락,스타일,사이드 포니테일,side_ponytail,FALSE 101 | 머리카락,스타일,스플릿 포니테일,split_ponytail,FALSE 102 | 머리카락,스타일,트윈테일,twintails,FALSE 103 | 머리카락,스타일,낮은 트윈테일,low_twintails,FALSE 104 | 머리카락,스타일,짧은 트윈테일,short_twintails,FALSE 105 | 머리카락,스타일,험한 트윈테일,uneven_twintails,FALSE 106 | 머리카락,스타일,트라티 테일,tri_tails,FALSE 107 | 머리카락,스타일,퀴드 테일,quad_tails,FALSE 108 | 머리카락,스타일,퀸테일,quin_tails,FALSE 109 | 머리카락,스타일,회색 브리지,gray_hair_streak,FALSE 110 | 머리카락,스타일,흰색 브리지,white_hair_streak,FALSE 111 | 머리카락,스타일,갈색 브리지,brown_hair_streak,FALSE 112 | 머리카락,스타일,빨강색 브리지,Red_hair_streak,FALSE 113 | 머리카락,스타일,분홍색 브리지,pink_hair_streak,FALSE 114 | 머리카락,스타일,주황색 브리지,orange_hair_streak,FALSE 115 | 머리카락,스타일,노란색 브리지,yellow_hair_streak,FALSE 116 | 머리카락,스타일,황금색 브리지,Blonde_hair_streak,FALSE 117 | 머리카락,스타일,연두색 브리지,light_green_hair_streak,FALSE 118 | 머리카락,스타일,초록색 브리지,green_hair_streak,FALSE 119 | 머리카락,스타일,하늘색 브리지,sky_blue_hair_streak,FALSE 120 | 머리카락,스타일,파란색 브리지,blue_hair_streak,FALSE 121 | 머리카락,스타일,보라색 브리지,Purple_hair_streak,FALSE 122 | 머리카락,스타일,검은색 브리지,black_hair_streak,FALSE 123 | 머리카락,스타일,무지개색 브리지,rainbow_hair_streak,FALSE 124 | 눈,부위,눈,Eyes,FALSE 125 | 눈,부위,눈썹,Eyebrow,FALSE 126 | 눈,부위,속눈썹,Eyelashes,FALSE 127 | 눈,모양,눈이 작다,short_eyes,FALSE 128 | 눈,크기,눈이 크다,long_eyes,FALSE 129 | 눈,크기,눈썹이 짧다,short_eyebrow,FALSE 130 | 눈,크기,눈썹이 길다,long_eyebrow,FALSE 131 | 눈,크기,눈썹이 가늘다,slender_eyebrow,FALSE 132 | 눈,크기,눈썹이 두껍다,heavy_eyebrow,FALSE 133 | 눈,크기,속눈썹이 짧다,short_eyelashes,FALSE 134 | 눈,크기,속눈썹이 길다,long_eyelashes,FALSE 135 | 눈,크기,속눈썹이 가늘다,slender_eyelashes,FALSE 136 | 눈,크기,속눈썹이 두껍다,heavy_eyelashes,FALSE 137 | 눈,색깔,회색 눈,gray_eyes,FALSE 138 | 눈,색깔,흰색 눈,white_eyes,FALSE 139 | 눈,색깔,갈색 눈,brown_eyes,FALSE 140 | 눈,색깔,빨강색 눈,red_eyes,FALSE 141 | 눈,색깔,분홍색 눈,pink_eyes,FALSE 142 | 눈,색깔,주황색 눈,orange_eyes,FALSE 143 | 눈,색깔,노란색 눈,yellow_eyes,FALSE 144 | 눈,색깔,황금색 눈,golden_eyes,FALSE 145 | 눈,색깔,연두색 눈,light_green_eyes,FALSE 146 | 눈,색깔,초록색 눈,green_eyes,FALSE 147 | 눈,색깔,하늘색 눈,sky_blue_eyes,FALSE 148 | 눈,색깔,파란색 눈,blue_eyes,FALSE 149 | 눈,색깔,보라색 눈,purple_eyes,FALSE 150 | 눈,색깔,검은색 눈,black_eyes,FALSE 151 | 눈,색깔,다름,Odd_Eye,FALSE 152 | 눈,색깔,다중,multicolored_eye,FALSE 153 | 눈,색깔,이색,heterochromia,FALSE 154 | 눈,모양,심볼,symbol-shaped_pupils,FALSE 155 | 눈,모양,하트,heart-shaped_pupils,FALSE 156 | 눈,모양,스페이드,spade-shaped_pupils,FALSE 157 | 눈,모양,클로버,clover-shaped_pupils,FALSE 158 | 눈,모양,다이아몬드,diamond-shaped_pupils,FALSE 159 | 눈,모양,별,star-shaped_pupils,FALSE 160 | 눈,모양,꽃,flower-shaped_pupils,FALSE 161 | 눈,모양,죽은 눈,blanked_eyes,FALSE 162 | 눈,모양,강간당한 눈,empty_eyes,FALSE 163 | 눈,모양,수축된 눈,sconstricted_pupils,FALSE 164 | 눈,모양,확장된 눈,dilated_pupils,FALSE 165 | 눈,모양,충혈된 눈,bloodshot_pupils,FALSE 166 | 눈,모양,발화된 눈,flaming_pupils,FALSE 167 | 눈,모양,발광한 눈,glowing_pupils,FALSE 168 | 눈,특징,눈물이 맺힌다,tears,FALSE 169 | 눈,특징,눈물을 흘린다,crying_eyes,FALSE 170 | 눈,특징,눈물에 화장이 번졌다,mascars_tears,FALSE 171 | 눈,특징,눈꺼풀을 화장하다,eyeshadow,FALSE 172 | 눈,특징,눈꼬리를 화장하다,eyeliner,FALSE 173 | 눈,특징,속눈썹을 화장하다,mascara,FALSE 174 | 눈,특징,눈이 죽었다,blanked_eyes,FALSE 175 | 눈,특징,눈이 수축된다,sconstricted_pupils,FALSE 176 | 눈,특징,눈이 확장된다,dilated_pupils,FALSE 177 | 눈,특징,눈이 충혈된다,bloodshot_pupils,FALSE 178 | 눈,특징,눈이 발화된다,flaming_pupils,FALSE 179 | 눈,특징,눈이 발광한다,glowing_pupils,FALSE 180 | 눈,특징,눈이 빛을 잃었다,empty_eyes,FALSE 181 | 눈,특징,눈을 한쪽만 감았다,one_eye_closed,FALSE 182 | 눈,특징,눈을 양쪽을 감았다,eyes_closed,FALSE 183 | 눈,특징,눈의 초점이 어긋났다,uneven_eyes,FALSE 184 | 입,부위,입,mouth,FALSE 185 | 입,부위,입술,lips,FALSE 186 | 입,부위,혀,tongue,FALSE 187 | 입,모양,입이 작다,small_mouth,FALSE 188 | 입,모양,입이 크다,big_mouth,FALSE 189 | 입,모양,입술이 얇다,thin_lips,FALSE 190 | 입,모양,입술이 두껍다,thick_lips,FALSE 191 | 입,모양,혀가 짧다,short_tongue,FALSE 192 | 입,모양,혀가 길다,long_tongue,FALSE 193 | 입,상태,입을 열다,open_mouth,FALSE 194 | 입,상태,입을 다물다,close_mouth,FALSE 195 | 입,상태,입에서 혀를 내밀다,stick_out_tongue,FALSE 196 | 입,상태,입에서 침을 흘리다,drooling,FALSE 197 | 입,색깔,회색 입술,gray lips,FALSE 198 | 입,색깔,흰색 입술,white lips,FALSE 199 | 입,색깔,갈색 입술,brown lips,FALSE 200 | 입,색깔,빨강색 입술,red lips,FALSE 201 | 입,색깔,분홍색 입술,pink lips,FALSE 202 | 입,색깔,주황색 입술,orange lips,FALSE 203 | 입,색깔,노란색 입술,yellow lips,FALSE 204 | 입,색깔,황금색 입술,golden lips,FALSE 205 | 입,색깔,연두색 입술,light green lips,FALSE 206 | 입,색깔,초록색 입술,green lips,FALSE 207 | 입,색깔,하늘색 입술,sky blue lips,FALSE 208 | 입,색깔,파란색 입술,blue lips,FALSE 209 | 입,색깔,보라색 입술,purple lips,FALSE 210 | 입,색깔,검은색 입술,black lips,FALSE 211 | 입,색깔,회색 혀,gray tongue,FALSE 212 | 입,색깔,흰색 혀,white tongue,FALSE 213 | 입,색깔,갈색 혀,brown tongue,FALSE 214 | 입,색깔,빨강색 혀,red tongue,FALSE 215 | 입,색깔,분홍색 혀,pink tongue,FALSE 216 | 입,색깔,주황색 혀,orange tongue,FALSE 217 | 입,색깔,노란색 혀,yellow tongue,FALSE 218 | 입,색깔,황금색 혀,golden tongue,FALSE 219 | 입,색깔,연두색 혀,light green tongue,FALSE 220 | 입,색깔,초록색 혀,green tongue,FALSE 221 | 입,색깔,하늘색 혀,sky blue tongue,FALSE 222 | 입,색깔,파란색 혀,blue tongue,FALSE 223 | 입,색깔,보라색 혀,purple tongue,FALSE 224 | 입,색깔,검은색 혀,black tongue,FALSE 225 | 귀,부위,귀,ears,FALSE 226 | 귀,부위,귓볼,earlobes,FALSE 227 | 귀,모양,귀가 길다,long_ears,FALSE 228 | 귀,모양,귀가 매우 짧다,very_short_ears,FALSE 229 | 귀,모양,귀가 매우 길다,very_long_ears,FALSE 230 | 귀,모양,귀가 가늘다,slender_ears,FALSE 231 | 귀,모양,귀가 두껍다,heavy_ears,FALSE 232 | 귀,모양,귓불이 짧다,short_earlobes,FALSE 233 | 귀,모양,귓불이 길다,long_earlobes,FALSE 234 | 귀,상태,귀가 뾰족하다,pointy_ears,FALSE 235 | 귀,상태,귀가 짧고 뾰족하다,short_pointy_ears,FALSE 236 | 귀,상태,귀가 길고 뾰족하다,long_pointy_ears,FALSE 237 | 귀,모양,동물귀,animal_ears,FALSE 238 | 귀,모양,가짜 동물귀,fake_animal_ears,FALSE 239 | 귀,모양,강아지 귀,dog_ears,FALSE 240 | 귀,모양,고릴라,Gorilla_ears,FALSE 241 | 귀,모양,고양이 귀,cat_ears,FALSE 242 | 귀,모양,곰 귀,bear_ears,FALSE 243 | 귀,모양,너구리 귀,raccoon_ears,FALSE 244 | 귀,모양,늑대 귀,wolf_ears,FALSE 245 | 귀,모양,다람쥐 귀,squirrel_ears,FALSE 246 | 귀,모양,돼지 귀,pig_ears,FALSE 247 | 귀,모양,말 귀,horse_ears,FALSE 248 | 귀,모양,박쥐 귀,bat_ears,FALSE 249 | 귀,모양,사슴 귀,deer_ears,FALSE 250 | 귀,모양,사자 귀,lion_ears,FALSE 251 | 귀,모양,소 귀,cow_ears,FALSE 252 | 귀,모양,양 귀,sheep_ears,FALSE 253 | 귀,모양,여우 귀,fox_ears,FALSE 254 | 귀,모양,염소 귀,goat_ears,FALSE 255 | 귀,모양,원숭이 귀,monkey_ears,FALSE 256 | 귀,모양,족제비 귀,ferret_ears,FALSE 257 | 귀,모양,쥐 귀,mouse_ears,FALSE 258 | 귀,모양,토끼 귀,rabbit_ears,FALSE 259 | 귀,모양,팬더 귀,panda_ears,FALSE 260 | 귀,모양,호랑이 귀,tiger_ears,FALSE 261 | 코,모양,코가 작다,small_nose,FALSE 262 | 코,모양,코가 길다,long_nose,FALSE 263 | 코,길이,코가 가늘다,slender_nose,FALSE 264 | 코,길이,코가 두껍다,heavy_nose,FALSE 265 | 코,모양,코가 넓적하다,broad_nose,FALSE 266 | 코,모양,코가 끝만 높다,high-end_nose,FALSE 267 | 코,모양,코가 들창코다,wild_boogged_nose,FALSE 268 | 코,모양,코가 메부리코다,aquiline_nose,FALSE 269 | ,,,,FALSE 270 | ,,,,FALSE 271 | ,,,,FALSE 272 | ,,,,FALSE 273 | ,,,,FALSE 274 | ,,,,FALSE 275 | ,,,,FALSE 276 | ,,,,FALSE 277 | ,,,,FALSE 278 | ,,,,FALSE 279 | ,,,,FALSE 280 | ,,,,FALSE 281 | ,,,,FALSE 282 | ,,,,FALSE 283 | ,,,,FALSE 284 | ,,,,FALSE 285 | ,,,,FALSE 286 | ,,,,FALSE 287 | ,,,,FALSE 288 | ,,,,FALSE 289 | ,,,,FALSE 290 | ,,,,FALSE 291 | ,,,,FALSE 292 | ,,,,FALSE 293 | ,,,,FALSE 294 | ,,,,FALSE 295 | ,,,,FALSE 296 | ,,,,FALSE 297 | ,,,,FALSE 298 | ,,,,FALSE 299 | ,,,,FALSE 300 | ,,,,FALSE 301 | ,,,,FALSE 302 | ,,,,FALSE 303 | ,,,,FALSE 304 | ,,,,FALSE 305 | ,,,,FALSE 306 | ,,,,FALSE 307 | ,,,,FALSE 308 | ,,,,FALSE 309 | ,,,,FALSE 310 | ,,,,FALSE 311 | ,,,,FALSE 312 | ,,,,FALSE 313 | ,,,,FALSE 314 | ,,,,FALSE 315 | ,,,,FALSE 316 | ,,,,FALSE 317 | ,,,,FALSE 318 | ,,,,FALSE 319 | ,,,,FALSE 320 | ,,,,FALSE 321 | ,,,,FALSE 322 | ,,,,FALSE 323 | ,,,,FALSE 324 | ,,,,FALSE 325 | ,,,,FALSE 326 | ,,,,FALSE 327 | ,,,,FALSE 328 | ,,,,FALSE 329 | ,,,,FALSE 330 | ,,,,FALSE 331 | ,,,,FALSE 332 | ,,,,FALSE 333 | ,,,,FALSE 334 | ,,,,FALSE 335 | ,,,,FALSE 336 | ,,,,FALSE 337 | ,,,,FALSE 338 | ,,,,FALSE 339 | ,,,,FALSE 340 | ,,,,FALSE 341 | ,,,,FALSE 342 | ,,,,FALSE 343 | ,,,,FALSE 344 | ,,,,FALSE 345 | ,,,,FALSE 346 | ,,,,FALSE 347 | ,,,,FALSE 348 | ,,,,FALSE 349 | ,,,,FALSE 350 | ,,,,FALSE 351 | ,,,,FALSE 352 | ,,,,FALSE 353 | ,,,,FALSE 354 | ,,,,FALSE 355 | ,,,,FALSE 356 | ,,,,FALSE 357 | ,,,,FALSE 358 | ,,,,FALSE 359 | ,,,,FALSE 360 | ,,,,FALSE 361 | ,,,,FALSE 362 | ,,,,FALSE 363 | ,,,,FALSE 364 | ,,,,FALSE 365 | ,,,,FALSE 366 | ,,,,FALSE 367 | ,,,,FALSE 368 | ,,,,FALSE 369 | ,,,,FALSE 370 | ,,,,FALSE 371 | ,,,,FALSE 372 | ,,,,FALSE 373 | ,,,,FALSE 374 | ,,,,FALSE 375 | ,,,,FALSE 376 | ,,,,FALSE 377 | ,,,,FALSE 378 | ,,,,FALSE 379 | ,,,,FALSE 380 | ,,,,FALSE 381 | ,,,,FALSE 382 | ,,,,FALSE 383 | ,,,,FALSE 384 | ,,,,FALSE 385 | ,,,,FALSE 386 | ,,,,FALSE 387 | ,,,,FALSE 388 | ,,,,FALSE 389 | ,,,,FALSE 390 | ,,,,FALSE 391 | ,,,,FALSE 392 | ,,,,FALSE 393 | ,,,,FALSE 394 | ,,,,FALSE 395 | ,,,,FALSE 396 | ,,,,FALSE 397 | ,,,,FALSE 398 | ,,,,FALSE 399 | ,,,,FALSE 400 | ,,,,FALSE 401 | ,,,,FALSE 402 | ,,,,FALSE 403 | ,,,,FALSE 404 | ,,,,FALSE 405 | ,,,,FALSE 406 | ,,,,FALSE 407 | ,,,,FALSE 408 | ,,,,FALSE 409 | ,,,,FALSE 410 | ,,,,FALSE 411 | ,,,,FALSE 412 | ,,,,FALSE 413 | ,,,,FALSE 414 | ,,,,FALSE 415 | ,,,,FALSE 416 | ,,,,FALSE 417 | ,,,,FALSE 418 | ,,,,FALSE 419 | ,,,,FALSE 420 | ,,,,FALSE 421 | ,,,,FALSE 422 | ,,,,FALSE 423 | ,,,,FALSE 424 | ,,,,FALSE 425 | ,,,,FALSE 426 | ,,,,FALSE 427 | ,,,,FALSE 428 | ,,,,FALSE 429 | ,,,,FALSE 430 | ,,,,FALSE 431 | ,,,,FALSE 432 | ,,,,FALSE 433 | ,,,,FALSE 434 | ,,,,FALSE 435 | ,,,,FALSE 436 | ,,,,FALSE 437 | ,,,,FALSE 438 | ,,,,FALSE 439 | ,,,,FALSE 440 | ,,,,FALSE 441 | ,,,,FALSE 442 | ,,,,FALSE 443 | ,,,,FALSE 444 | ,,,,FALSE 445 | ,,,,FALSE 446 | ,,,,FALSE 447 | ,,,,FALSE 448 | ,,,,FALSE 449 | ,,,,FALSE 450 | ,,,,FALSE 451 | ,,,,FALSE 452 | ,,,,FALSE 453 | ,,,,FALSE 454 | ,,,,FALSE 455 | ,,,,FALSE 456 | ,,,,FALSE 457 | ,,,,FALSE 458 | ,,,,FALSE 459 | ,,,,FALSE 460 | ,,,,FALSE 461 | ,,,,FALSE 462 | ,,,,FALSE 463 | ,,,,FALSE 464 | ,,,,FALSE 465 | ,,,,FALSE 466 | ,,,,FALSE 467 | ,,,,FALSE 468 | ,,,,FALSE 469 | ,,,,FALSE 470 | ,,,,FALSE 471 | ,,,,FALSE 472 | ,,,,FALSE 473 | ,,,,FALSE 474 | ,,,,FALSE 475 | ,,,,FALSE 476 | ,,,,FALSE 477 | ,,,,FALSE 478 | ,,,,FALSE 479 | ,,,,FALSE 480 | ,,,,FALSE 481 | ,,,,FALSE 482 | ,,,,FALSE 483 | ,,,,FALSE 484 | ,,,,FALSE 485 | ,,,,FALSE 486 | ,,,,FALSE 487 | ,,,,FALSE 488 | ,,,,FALSE 489 | ,,,,FALSE 490 | ,,,,FALSE 491 | ,,,,FALSE 492 | ,,,,FALSE 493 | ,,,,FALSE 494 | ,,,,FALSE 495 | ,,,,FALSE 496 | ,,,,FALSE 497 | ,,,,FALSE 498 | ,,,,FALSE 499 | ,,,,FALSE 500 | ,,,,FALSE 501 | ,,,,FALSE 502 | ,,,,FALSE 503 | ,,,,FALSE 504 | ,,,,FALSE 505 | ,,,,FALSE 506 | ,,,,FALSE 507 | ,,,,FALSE 508 | ,,,,FALSE 509 | ,,,,FALSE 510 | ,,,,FALSE 511 | ,,,,FALSE 512 | ,,,,FALSE 513 | ,,,,FALSE 514 | ,,,,FALSE 515 | ,,,,FALSE 516 | ,,,,FALSE 517 | ,,,,FALSE 518 | ,,,,FALSE 519 | ,,,,FALSE 520 | ,,,,FALSE 521 | ,,,,FALSE 522 | ,,,,FALSE 523 | ,,,,FALSE 524 | ,,,,FALSE 525 | ,,,,FALSE 526 | ,,,,FALSE 527 | ,,,,FALSE 528 | ,,,,FALSE 529 | ,,,,FALSE 530 | ,,,,FALSE 531 | ,,,,FALSE 532 | ,,,,FALSE 533 | ,,,,FALSE 534 | ,,,,FALSE 535 | ,,,,FALSE 536 | ,,,,FALSE 537 | ,,,,FALSE 538 | ,,,,FALSE 539 | ,,,,FALSE 540 | ,,,,FALSE 541 | ,,,,FALSE 542 | ,,,,FALSE 543 | ,,,,FALSE 544 | ,,,,FALSE 545 | ,,,,FALSE 546 | ,,,,FALSE 547 | ,,,,FALSE 548 | ,,,,FALSE 549 | ,,,,FALSE 550 | ,,,,FALSE 551 | ,,,,FALSE 552 | ,,,,FALSE 553 | ,,,,FALSE 554 | ,,,,FALSE 555 | ,,,,FALSE 556 | ,,,,FALSE 557 | ,,,,FALSE 558 | ,,,,FALSE 559 | ,,,,FALSE 560 | ,,,,FALSE 561 | ,,,,FALSE 562 | ,,,,FALSE 563 | ,,,,FALSE 564 | ,,,,FALSE 565 | ,,,,FALSE 566 | ,,,,FALSE 567 | ,,,,FALSE 568 | ,,,,FALSE 569 | ,,,,FALSE 570 | ,,,,FALSE 571 | ,,,,FALSE 572 | ,,,,FALSE 573 | ,,,,FALSE 574 | ,,,,FALSE 575 | ,,,,FALSE 576 | ,,,,FALSE 577 | ,,,,FALSE 578 | ,,,,FALSE -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[의상].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 의상,특징,옷의 팔을 노출하다,arm_cutout,FALSE 3 | 의상,특징,옷의 겨드랑이를 노출하다,armpit_cutout,FALSE 4 | 의상,특징,옷의 어깨를 노출하다,bare_shoulders,FALSE 5 | 의상,특징,옷의 어깨를 살짝 노출하다,shoulder_cutout,FALSE 6 | 의상,특징,옷의 옆구리를 노출하다,low-cut_armhole,FALSE 7 | 의상,특징,옷의 옆구리 위쪽을 노출하다,high-waist_sideboob,FALSE 8 | 의상,특징,옷의 옆구리를 전부 노출하다,sideless_outfit,FALSE 9 | 의상,특징,옷의 등을 노출하다,bare_back,FALSE 10 | 의상,특징,옷의 등을 숨기지 않는다,backless_outfit,FALSE 11 | 의상,특징,옷의 가슴을 노출하다,breast_slip,FALSE 12 | 의상,특징,옷의 가슴골을 노출하다,cleavage_cutout,FALSE 13 | 의상,특징,옷의 가슴 사이를 노출하다,center_opening,FALSE 14 | 의상,특징,옷의 가슴을 전부 노출하다,breastless_clothes,FALSE 15 | 의상,특징,옷의 옆가슴을 노출하다,sideboob,FALSE 16 | 의상,특징,옷의 뒷가슴을 노출하다,backboob,FALSE 17 | 의상,특징,옷의 밑가슴을 노출하다,underboob,FALSE 18 | 의상,특징,옷의 밑가슴 사이를 노출하다,underboob_cutout,FALSE 19 | 의상,특징,옷의 젖꼭지를 노출하다,nipple_slip,FALSE 20 | 의상,특징,옷의 유륜을 노출하다,areola_slip,FALSE 21 | 의상,특징,옷의 배를 노출하다,midriff,FALSE 22 | 의상,특징,옷의 배를 노출하다,stomach_cutout,FALSE 23 | 의상,특징,옷의 배꼽을 노출하다,navel_cutout,FALSE 24 | 의상,특징,옷의 다리가 노출되다,side_slit,FALSE 25 | 의상,특징,옷의 허벅지를 노출하다,zettai_ryouiki,FALSE 26 | 의상,특징,옷의 가랑이를 노출하다,crotch_cutout,FALSE 27 | 의상,특징,옷의 골반을 노출하다,hip_vent,FALSE 28 | 의상,특징,옷의 엉덩이를 노출하다,ass_cutout,FALSE 29 | 의상,특징,옷의 엉덩이를 노출하다,butt_crack,FALSE 30 | 의상,특징,옷의 소매가 없다,sleeveless,FALSE 31 | 의상,특징,옷의 단추가 없다,unbuttoned_shirt,FALSE 32 | 의상,특징,옷이 비쳐 보인다,see-through,FALSE 33 | 의상,특징,옷의 노출이 심하다,revealing_clothes,FALSE 34 | 의상,특징,옷의 선을 X자로 묶었다,cross-laced_clothes,FALSE 35 | 의상,특징,옷의 선을 X자로 묶어 노출하다,cross-laced_cutout,FALSE 36 | 의상,알몸,알몸 가슴천막,naked_tabard,TRUE 37 | 의상,알몸,알몸 가운,naked_robe,TRUE 38 | 의상,알몸,알몸 리본,naked_ribbon,TRUE 39 | 의상,알몸,알몸 망토,naked_cape,TRUE 40 | 의상,알몸,알몸 망토,naked_cloak,TRUE 41 | 의상,알몸,알몸 멜빵,naked_suspenders,TRUE 42 | 의상,알몸,알몸 붕대,naked_bandage,TRUE 43 | 의상,알몸,알몸 셔츠,naked_shirt,TRUE 44 | 의상,알몸,알몸 속옷,underwear_only,TRUE 45 | 의상,알몸,알몸 스카프,naked_scarf,TRUE 46 | 의상,알몸,알몸 이불,naked_sheet,TRUE 47 | 의상,알몸,알몸 작업복,naked_overalls,TRUE 48 | 의상,알몸,알몸 재킷,naked_jacket,TRUE 49 | 의상,알몸,알몸 초콜릿,naked_chocolate,TRUE 50 | 의상,알몸,알몸 코트,naked_coat,TRUE 51 | 의상,알몸,알몸 타올,naked_towel,TRUE 52 | 의상,알몸,알몸 후드,naked_hoodie,TRUE 53 | 의상,알몸,알몸 후드 망토,naked_capelet,TRUE 54 | 의상,알몸,알몸 에이프런,naked_apron,TRUE 55 | 의상,알몸,알몸 에이프런,nearly_naked_apron,TRUE 56 | 의상,제복,가쿠란,gakuran,FALSE 57 | 의상,제복,교복,school_uniform,FALSE 58 | 의상,제복,군복,military_uniform,FALSE 59 | 의상,제복,메이지 여학생 교복,meiji_schoolgirl_uniform,FALSE 60 | 의상,제복,발레복,tutu,FALSE 61 | 의상,제복,방호복,hazmat_suit,FALSE 62 | 의상,제복,밴드복,band_uniform,FALSE 63 | 의상,제복,벨리댄서,harem_outfit,FALSE 64 | 의상,제복,보호복,hev_suit,FALSE 65 | 의상,제복,사제복,cassock,FALSE 66 | 의상,제복,사제복,habit,FALSE 67 | 의상,제복,선원복,sailor_(naval_uniform),FALSE 68 | 의상,제복,세일러복,serafuku_(sailor_uniform),FALSE 69 | 의상,제복,원시 의복,loincloth,FALSE 70 | 의상,제복,작업복,overalls,FALSE 71 | 의상,제복,잠옷,pajamas,FALSE 72 | 의상,제복,여성 점원,waitress clothes,FALSE 73 | 의상,제복,치어리더,cheerleader,FALSE 74 | 의상,정장,정장(남성),suit,FALSE 75 | 의상,정장,정장(여성),skirtsuit,FALSE 76 | 의상,정장,신사복,business_suit,FALSE 77 | 의상,정장,정장 바지,pant_suit,FALSE 78 | 의상,정장,정장 치마,skirt_suit,FALSE 79 | 의상,정장,턱시도,tuxedo,FALSE 80 | 의상,슈트,자전거 슈트,bikesuit,FALSE 81 | 의상,슈트,레이싱 슈트,racing_suit,FALSE 82 | 의상,슈트,파일럿 슈트,pilot_suit,FALSE 83 | 의상,슈트,플러그 슈트,plugsuit,FALSE 84 | 의상,슈트,바디슈트,bodysuit,FALSE 85 | 의상,슈트,점프슈트,jumpsuit,FALSE 86 | 의상,슈트,짧은 점프 슈트,short_jumpsuit,FALSE 87 | 의상,운동복,운동복,sweatpants,FALSE 88 | 의상,운동복,운동복,track_suit,FALSE 89 | 의상,운동복,체육복,gym_uniform,FALSE 90 | 의상,운동복,축구복,football_uniform,FALSE 91 | 의상,운동복,농구복,basketball_uniform,FALSE 92 | 의상,운동복,야구복,baseball_uniform,FALSE 93 | 의상,운동복,배구복,volleyball_uniform,FALSE 94 | 의상,운동복,골프복,golf_uniform,FALSE 95 | 의상,운동복,육상복,running_uniform,FALSE 96 | 의상,운동복,테니스복,tennis_uniform,FALSE 97 | 의상,운동복,레오타드,leotard,FALSE 98 | 의상,운동복,끈 없는 레오타드,strapless_leotard,FALSE 99 | 의상,코스튬,산타 드레스,santa_dress,FALSE 100 | 의상,코스튬,산타 복장,santa_costume,FALSE 101 | 의상,코스튬,카우보이,cowboy_western,FALSE 102 | 의상,코스튬,강아지 코스튬,dog_costume,FALSE 103 | 의상,코스튬,고릴라 코스튬,Gorilla_costume,FALSE 104 | 의상,코스튬,고양이 코스튬,cat_costume,FALSE 105 | 의상,코스튬,곰 코스튬,bear_costume,FALSE 106 | 의상,코스튬,너구리 코스튬,raccoon_costume,FALSE 107 | 의상,코스튬,늑대 코스튬,wolf_costume,FALSE 108 | 의상,코스튬,다람쥐 코스튬,squirrel_costume,FALSE 109 | 의상,코스튬,돼지 코스튬,pig_costume,FALSE 110 | 의상,코스튬,말 코스튬,horse_costume,FALSE 111 | 의상,코스튬,박쥐 코스튬,bat_costume,FALSE 112 | 의상,코스튬,사슴 코스튬,deer_costume,FALSE 113 | 의상,코스튬,사자 코스튬,lion_costume,FALSE 114 | 의상,코스튬,소 코스튬,cow_costume,FALSE 115 | 의상,코스튬,양 코스튬,sheep_costume,FALSE 116 | 의상,코스튬,여우 코스튬,fox_costume,FALSE 117 | 의상,코스튬,염소 코스튬,goat_costume,FALSE 118 | 의상,코스튬,원숭이 코스튬,monkey_costume,FALSE 119 | 의상,코스튬,족제비 코스튬,ferret_costume,FALSE 120 | 의상,코스튬,쥐 코스튬,mouse_costume,FALSE 121 | 의상,코스튬,토끼 코스튬,rabbit_costume,FALSE 122 | 의상,코스튬,팬더 코스튬,panda_costume,FALSE 123 | 의상,코스튬,호랑이 코스튬,tiger_costume,FALSE 124 | 의상,코스튬,너스 메이드복,Nuss_maid_costume,FALSE 125 | 의상,코스튬,레이디스 메이드복,Ladies_maid_costume,FALSE 126 | 의상,코스튬,밀리터리 메이드복,Military_maid_costume,FALSE 127 | 의상,코스튬,빅토리아 메이드복,Victoria_Maid_costume,FALSE 128 | 의상,코스튬,사이버 메이드복,Cybermaid_costume,FALSE 129 | 의상,코스튬,스팀펑크 메이드복,Steampunk_maid_costume,FALSE 130 | 의상,코스튬,일본풍 메이드복,Japanese-style_maid_costume,FALSE 131 | 의상,코스튬,차이나 메이드복,China-style_maid_costume,FALSE 132 | 의상,코스튬,클래식 메이드복,Classic_maid_costume,FALSE 133 | 의상,코스튬,키친 메이드복,Kitchen_maid_costume,FALSE 134 | 의상,코스튬,팔러 메이드복,Faller_maid_costume,FALSE 135 | 의상,코스튬,프렌치 메이드복,French_maid_costume,FALSE 136 | 의상,코스튬,하우스 메이드복,House_maid_costume,FALSE 137 | 의상,코스튬,하우스키퍼,Housekeeper_costume,FALSE 138 | 의상,드레스,가운,gown,FALSE 139 | 의상,드레스,네글리제,negligee,FALSE 140 | 의상,드레스,웨딩 드레스,wedding_dress,FALSE 141 | 의상,드레스,테니스 드레스,tennis_dress,FALSE 142 | 의상,드레스,이브닝 드레스,evening_gown,FALSE 143 | 의상,드레스,잠옷 드레스,nightgown,FALSE 144 | 의상,드레스,장례식 드레스,funeral_dress,FALSE 145 | 의상,드레스,칵테일 드레스,cocktail_dress,FALSE 146 | 의상,드레스,코트 드레스,coat_dress,FALSE 147 | 의상,드레스,프릴 드레스,frilled_dress,FALSE 148 | 의상,드레스,라텍스 드레스,latex_dress,FALSE 149 | 의상,드레스,칼라 드레스,collared_dress,FALSE 150 | 의상,드레스,모피 장식 드레스,fur-trimmed_dress,FALSE 151 | 의상,드레스,레이스 장식 드레스,lace-trimmed_dress,FALSE 152 | 의상,드레스,리본 장식 드레스,ribbon-trimmed_dress,FALSE 153 | 의상,드레스,천이 여러 겹인 드레스,layered_dress,FALSE 154 | 의상,드레스,여름용 드레스,sundress,FALSE 155 | 의상,드레스,팽팽한 드레스,taut_dress,FALSE 156 | 의상,드레스,밑단이 넓은 드레스,trapeze_dress,FALSE 157 | 의상,드레스,비쳐 보이는 드레스,see-through_dress,FALSE 158 | 의상,드레스,흐르는 듯한 드레스,flowing_dress,FALSE 159 | 의상,드레스,긴 드레스,long_dress,FALSE 160 | 의상,드레스,다리노출 긴 드레스,highleg_dress,FALSE 161 | 의상,드레스,매우 짧은 드레스,high-low_dress,FALSE 162 | 의상,드레스,짧은 드레스,short_dress,FALSE 163 | 의상,드레스,끈 없는 드레스,strapless_dress,FALSE 164 | 의상,드레스,끈 없이 밀착한 드레스,tube_dress,FALSE 165 | 의상,드레스,등이 노출된 드레스,backless_dress,FALSE 166 | 의상,드레스,목과 연결된 드레스,halter_dress,FALSE 167 | 의상,드레스,몸에 꼭 맞는 드레스,pencil_dress,FALSE 168 | 의상,드레스,소매 없는 드레스,sleeveless_dress,FALSE 169 | 의상,드레스,발목까지 내려오는 드레스,hobble_dress,FALSE 170 | 의상,드레스,길게 V자로 갈라진 드레스,plunging_neckline_dress,FALSE 171 | 의상,드레스,세로로 주름진 드레스,pleated_dress,FALSE 172 | 의상,드레스,어깨가 보이는드레스,off-shoulder_dress,FALSE 173 | 의상,드레스,절반으로 나뉜 드레스,half-dress,FALSE 174 | 의상,드레스,피부가 꽉 조이는 드레스,skin_tight_dress,FALSE 175 | 의상,드레스,허벅지가 갈라진 드레스,side_slit_dress,FALSE 176 | 의상,수영복,비키니,bikini,FALSE 177 | 의상,수영복,슬링샷,slingshot_swimsuit,FALSE 178 | 의상,수영복,레쉬 가드,rash_guard_(swim_shirt),FALSE 179 | 의상,수영복,비키니 스커트,bikini_skirt,FALSE 180 | 의상,수영복,스포츠 비키니,sports_bikini,FALSE 181 | 의상,수영복,옛날 수영복,old-fashioned_swimsuit,FALSE 182 | 의상,수영복 ,학교 수영복,sukumizu,FALSE 183 | 의상,수영복,학생용 수영복,school_swimsuit,FALSE 184 | 의상,수영복,선수용 수영복,competition_swimsuit,FALSE 185 | 의상,수영복,원피스 수영복,one-piece_swimsuit,FALSE 186 | 의상,수영복,드레스 수영복,dress_swimsuit,FALSE 187 | 의상,수영복,캐주얼 원피스 수영복,casual_one-piece_swimsuit,FALSE 188 | 의상,수영복,살짝 짧은 비키니,lowleg_bikini,FALSE 189 | 의상,수영복,매우 짧은 비키니,micro_bikini,FALSE 190 | 의상,수영복,짧은 상의와 연결된 비키니,tankini,FALSE 191 | 의상,수영복,몸에 밀착한 수영복,impossible_swimsuit,FALSE 192 | 의상,수영복,끈이 많은 비키니,thong_bikini,FALSE 193 | 의상,수영복,끈으로 묶인 비키니,side-tie_bikini_bottom,FALSE 194 | 의상,수영복,끈으로 가슴만 연결한 비키니,string_bikini,FALSE 195 | 의상,수영복,고리가 달린 비키니,o-ring_bikini,FALSE 196 | 의상,수영복,고리가 위쪽과 연결한 비키니,o-ring_top,FALSE 197 | 의상,수영복,고리가 아래쪽과 연결한 비키니,o-ring_bottom,FALSE 198 | 의상,복장,탕좡,tangzhuang,FALSE 199 | 의상,복장,치파오,changpao,FALSE 200 | 의상,복장,차이나 드레스,china_dress,FALSE 201 | 의상,복장,디른들,dirndl,FALSE 202 | 의상,복장,베트남 드레스,vietnamese_dress,FALSE 203 | 의상,복장,훈도시,fundoshi,FALSE 204 | 의상,복장,야마카사,yamakasa,FALSE 205 | 의상,복장,하카마,hakama,FALSE 206 | 의상,복장,하카마 바지,hakama_pants,FALSE 207 | 의상,복장,하카마 치마,hakama_skirt,FALSE 208 | 의상,복장,하카마 짧은 치마,hakama_short_skirt,FALSE 209 | 의상,복장,기모노,kimono,FALSE 210 | 의상,복장,후리소데,furisode,FALSE 211 | 의상,복장,유카타,yukata,FALSE 212 | 의상,복장,우치카케,uchikake=(wedding_kimono),FALSE 213 | 의상,복장,짧은 기모노,short_kimono,FALSE 214 | 의상,복장,기모노 스커트,kimono_skirt,FALSE 215 | 의상,복장,몇 겹 겹친 기모노,layered_kimono,FALSE 216 | 의상,복장,하오리,haori,FALSE 217 | 의상,복장,반소매 하오리,happi,FALSE 218 | 의상,복장,긴 하오리,chanchanko,FALSE 219 | 의상,복장,도테라,dotera,FALSE 220 | 의상,복장,한텐,hanten,FALSE 221 | 의상,복장,무녀복,miko,FALSE 222 | 의상,복장,개조한 무녀복nontraditional,miko,FALSE 223 | 의상,복장,사라시,sarashi,FALSE 224 | 의상,복장,복부 사라시,Midriff_sarashi,FALSE 225 | 의상,복장,가슴 사라시,Chest_sarashi,FALSE 226 | 의상,복장,몸통 사라시,Budget_sarashi,FALSE 227 | 의상,복장,풀린 사라시,Undone_sarashi,FALSE 228 | 의상,복장,기모노 끈,tasuki,FALSE 229 | 상의,셔츠,셔츠,shirt,FALSE 230 | 상의,셔츠,티셔츠,t-shirt,FALSE 231 | 상의,셔츠,프릴 셔츠,frilled_shirt,FALSE 232 | 상의,셔츠,칼라 셔츠,collared_shirt,FALSE 233 | 상의,셔츠,드레스 셔츠,dress_shirt,FALSE 234 | 상의,셔츠,줄무늬 셔츠,striped_shirt,FALSE 235 | 상의,셔츠,민소매 셔츠,sleeveless_shirt,FALSE 236 | 상의,셔츠,밀착한 셔츠,compression_shirt,FALSE 237 | 상의,셔츠,오픈숄더 셔츠,off-shoulder_shirt,FALSE 238 | 상의,셔츠,버튼을 반만 푼 셔츠,unbuttoned_white_shirt,FALSE 239 | 상의,셔츠,탱크탑,tank_top,FALSE 240 | 상의,셔츠,튜브탑,tube_top,FALSE 241 | 상의,셔츠,배꼽티,crop_top,FALSE 242 | 상의,셔츠,블라우스,blouse,FALSE 243 | 상의,셔츠,어깨가 보이는 블라우스,downblouse,FALSE 244 | 상의,스웨터,홀터넥,halterneck,FALSE 245 | 상의,스웨터,스웨터,sweater,FALSE 246 | 상의,스웨터,풀오버,pullover,FALSE 247 | 상의,스웨터,터틀넥,turtleneck,FALSE 248 | 상의,스웨터,스웨터 조끼,sweater_vest,FALSE 249 | 상의,스웨터,스웨터 드레스,sweater_dress,FALSE 250 | 상의,스웨터,선 그인 스웨터,ribbed_sweater,FALSE 251 | 상의,스웨터,털 있는 스웨터,aran_sweater,FALSE 252 | 상의,스웨터,민소매 터틀넥,sleeveless_turtleneck,FALSE 253 | 상의,재킷,재킷,jacket,FALSE 254 | 상의,재킷,블레이저,blazer,FALSE 255 | 상의,재킷,크롭 재킷,cropped_jacket,FALSE 256 | 상의,재킷,레터맨 재킷,letterman_jacket,FALSE 257 | 상의,재킷,사파리 재킷,safari_jacket,FALSE 258 | 상의,재킷,정장 재킷,suit_jacket,FALSE 259 | 상의,재킷,스카잔(일본 불량배),sukajan,FALSE 260 | 상의,코트,코트,coat,FALSE 261 | 상의,코트,외투,overcoat,FALSE 262 | 상의,코트,우비,raincoat,FALSE 263 | 상의,코트,연미복,tailcoat,FALSE 264 | 상의,코트,더플 코트,duffel_coat,FALSE 265 | 상의,코트,롱코트,long_coat,FALSE 266 | 상의,코트,피코트,peacoat,FALSE 267 | 상의,코트,트레치 코트,trench_coat,FALSE 268 | 상의,코트,모피 코트,fur_coat,FALSE 269 | 상의,코트,모피 장식 코트,fur-trimmed_coat,FALSE 270 | 상의,후드,후드,hoodie,FALSE 271 | 상의,후드,배꼽 보이는 후드,cropped_hoodie,FALSE 272 | 상의,후드,폴카 무늬,polka_dot_hoodie,FALSE 273 | 상의,후드,인쇄한 후드,print_hoodie,FALSE 274 | 상의,후드,민소매 후드,sleeveless_hoodie,FALSE 275 | 상의,후드,줄무늬 후드,striped_hoodie,FALSE 276 | 상의,겉옷,로브,robe,FALSE 277 | 상의,겉옷,목욕 가운,bathrobe,FALSE 278 | 상의,겉옷,앞치마,apron,FALSE 279 | 상의,겉옷,양복 조끼,waistcoat,FALSE 280 | 상의,겉옷,어깨 망토,shoulder_cape,FALSE 281 | 상의,겉옷,어깨를 덮는 망토,cape,FALSE 282 | 상의,겉옷,어깨만 덮는 작은 망토,capelet,FALSE 283 | 상의,겉옷,열린 로브,open_robe,FALSE 284 | 상의,겉옷,조끼,vest,FALSE 285 | 상의,겉옷,카디건,cardigan,FALSE 286 | 상의,겉옷,카디건 조끼,cardigan_vest,FALSE 287 | 하의,바지,청바지,jeans,FALSE 288 | 하의,바지,청반바지,cutoff_jeans,FALSE 289 | 하의,바지,카우보이 바지,chaps,FALSE 290 | 하의,바지,몸에 꽉 끼는 바지,tight_pants,FALSE 291 | 하의,바지,무릎 아래가 넓은 바지,bell-bottoms,FALSE 292 | 하의,바지,발목 위까지 오는 바지,capri_pants,FALSE 293 | 하의,바지,엉덩이 골이 보이는 바지,downpants,FALSE 294 | 하의,바지,엉덩이와 허벅지에 꽉 끼는 바지,lowleg_pants,FALSE 295 | 하의,바지,발목과 무릎 사이가 접힌 바지,pants_rolled_up,FALSE 296 | 하의,반바지,반바지,shorts,FALSE 297 | 하의,반바지,데님 반바지,denim_shorts,FALSE 298 | 하의,반바지,자전거 반바지,bike_shorts,FALSE 299 | 하의,반바지,체육복 반바지,gym_shorts,FALSE 300 | 하의,반바지,부루마,buruma,FALSE 301 | 하의,반바지,블루머,bloomers,FALSE 302 | 하의,반바지,돌핀 팬츠,dolphin_shorts,FALSE 303 | 하의,반바지,짧은 반바지,short_shorts,FALSE 304 | 하의,반바지,살짝 짧은 반바지,lowleg_shorts,FALSE 305 | 하의,반바지,매우 짧은 반바지,micro_shorts,FALSE 306 | 하의,반바지,치마 아래 반바지,shorts_under_skirt,FALSE 307 | 하의,치마,긴 치마,Long_skirt,FALSE 308 | 하의,치마,짧은 치마,miniskirt,FALSE 309 | 하의,치마,살짝 짧은 치마,lowleg_skirt,FALSE 310 | 하의,치마,매우 짦은 치마,micro_skirt,FALSE 311 | 하의,치마,매우 넓은 치마,high-waist_skirt,FALSE 312 | 하의,치마,매우 좁은 치마,high-low_skirt,FALSE 313 | 하의,치마,랩 스커트,wrap_skirt,FALSE 314 | 하의,치마,레이어드 스커트,layered_skirt,FALSE 315 | 하의,치마,머메이드 스커트,mermaid_skirt,FALSE 316 | 하의,치마,멜빵 치마,overall_skirt,FALSE 317 | 하의,치마,멜빵과 연결된 치마,overall_skirt,FALSE 318 | 하의,치마,멜빵이 잡는 치마,suspender_skirt,FALSE 319 | 하의,치마,치마 바지,skirt_pants,FALSE 320 | 하의,치마,타이트 스커트,tight_skirt,FALSE 321 | 하의,치마,튤립 스커트,tulip_skirt,FALSE 322 | 하의,치마,파니에 스커트,pannier_skirt,FALSE 323 | 하의,치마,플레어 스커트,flared_skirt,FALSE 324 | 하의,치마,플리츠 스커트,pleated_skirt,FALSE 325 | 하의,치마,피나포 드레스,pinapo_dress,FALSE 326 | 속옷,브래지어,가슴 가리개,bandeau,FALSE 327 | 속옷,브래지어,뷔스티에,bustier,FALSE 328 | 속옷,브래지어,캐미솔,camisole,FALSE 329 | 속옷,브래지어,코르셋,corset,FALSE 330 | 속옷,브래지어,브래지어 끈,bra_strap,FALSE 331 | 속옷,브래지어,접착 브래지어,adhesive_bra,FALSE 332 | 속옷,브래지어,벨트 브래지어,beltbra,FALSE 333 | 속옷,브래지어,프릴 브래지어,frilled_bra,FALSE 334 | 속옷,브래지어,리본 브래지어,bow_bra,FALSE 335 | 속옷,브래지어,스포츠 브래지어,sports_bra,FALSE 336 | 속옷,브래지어,트레이닝 브래지어,training_bra,FALSE 337 | 속옷,브래지어,노출된 브래지어,cupless_bra,FALSE 338 | 속옷,브래지어,노출된 브래지어,shelf_bra,FALSE 339 | 속옷,브래지어,끈이 없는 브래지어,strapless_bra,FALSE 340 | 속옷,브래지어,앞에서 묶는 브래지어,front-tie_bra,FALSE 341 | 속옷,브래지어,앞으로 잠그는 브래지어,front-hook_bra,FALSE 342 | 속옷,팬티,삼각형 팬티,bow_panties,FALSE 343 | 속옷,팬티,끈(양쪽) 팬티,side-tie_panties,FALSE 344 | 속옷,팬티,끈 팬티,string_panties,FALSE 345 | 속옷,팬티,가랑이가 노출된 팬티,crotchless_panties,FALSE 346 | 속옷,팬티,가랑이가 보이는 팬티,crotch_seam,FALSE 347 | 속옷,팬티,가랑이만 노출된 팬티,strapless_bottom,FALSE 348 | 속옷,팬티,엉덩이만 노출된 팬티,backless_panties,FALSE 349 | 속옷,팬티,주름 있는 팬티,frilled_panties,FALSE 350 | 속옷,팬티,느슨한 팬티,loose_panties,FALSE 351 | 속옷,팬티,매우 작은 팬티,micro_panties,FALSE 352 | 속옷,팬티,매우 짧은 팬티,lowleg_panties,FALSE 353 | 속옷,팬티,짧고 긴 팬티,highleg_panties,FALSE 354 | 속옷,팬티,매우 큰 팬티,Sizes_of_panties,FALSE 355 | 속옷,양말,양말,socks,FALSE 356 | 속옷,양말,버선,tabi,FALSE 357 | 속옷,양말,발목 양말,ankle_socks,FALSE 358 | 속옷,양말,바비 양말,bobby_socks,FALSE 359 | 속옷,양말,헐랑한 양말,loose_socks,FALSE 360 | 속옷,양말,발가략 양말,toe_socks,FALSE 361 | 속옷,양말,튜브 양말,tube_socks,FALSE 362 | 속옷,양말,스타킹,Stocking,FALSE 363 | 속옷,양말,레깅스,leggings,FALSE 364 | 속옷,양말,하이레그,High_Legs,FALSE 365 | 속옷,양말,분리된 레깅스,detached_leggings,FALSE 366 | 속옷,양말,팬티 스타킹,pantyhose,FALSE 367 | 속옷,양말,니 삭스(무릎),kneehighs,FALSE 368 | 속옷,양말,오버 니 삭스(무릎 위),over-kneehighs,FALSE 369 | 속옷,양말,하이 식스(허벅지),thighhighs,FALSE 370 | 속옷,양말,사이 하이 삭스(허벅지),Thigh_High_Socks,FALSE 371 | 속옷,양말,허벅지 끈,thigh_strap,FALSE 372 | 속옷,양말,가터벨트,garter_belt,FALSE 373 | 속옷,양말,가터 스트랩,garter_straps,FALSE 374 | 속옷,양말,레그웨어 가터,legwear_garter,FALSE 375 | 속옷,양말,반짝이는 양말,shiny_legwear,FALSE 376 | 속옷,양말,보호하는 양말,armored_legwear,FALSE 377 | 속옷,양말,위로 올리는 양말,lace-up_legwear,FALSE 378 | 속옷,양말,비쳐 보이는 양말,see-through_legwear,FALSE 379 | 속옷,양말,발가락만 보이는 양말,toeless_legwear,FALSE 380 | 속옷,양말,발가락이 보이는 양말,bridal_legwear,FALSE 381 | 속옷,양말,선이 있는 양말,seamed_legwear,FALSE 382 | 속옷,양말,앞에 선 있는 양말,front-seamed_legwear,FALSE 383 | 속옷,양말,뒤에 선 있는 양말,back-seamed_legwear,FALSE 384 | 속옷,양말,옆에 선 있는 양말,side-seamed_legwear,FALSE 385 | 속옷,양말,끈(한쪽)이 달린 양말,side-tie_legwear,FALSE 386 | 속옷,양말,등자가 달린 양말,stirrup_legwear,FALSE 387 | 속옷,양말,스파이크 달린 양말,spiked_legwear,FALSE 388 | 속옷,양말,지퍼 달린 양말,zipper_legwear,FALSE 389 | 속옷,양말,징이 박힌 양말,studded_legwear,FALSE 390 | 속옷,양말,끈(십자형) 장식 달린 양말,cross-laced_legwear,FALSE 391 | 속옷,양말,레이스 장식 달린 양말,lace-trimmed_legwear,FALSE 392 | 속옷,양말,리본 장식 다린 양말,ribbon-trimmed_legwear,FALSE 393 | 속옷,양말,리본이 달린 양말,ribbon_legwear,FALSE 394 | 속옷,양말,모피 장식 달린 양말,fur-trimmed_legwear,FALSE 395 | 속옷,양말,고리 장식 달린 양말,o-ring_legwear,FALSE 396 | 속옷,양말,종 장식이 달린 양말,legwear_bell,FALSE 397 | 신발,신발,운동화,sneakers,FALSE 398 | 신발,신발,운동화,converse,FALSE 399 | 신발,신발,하이탑,high_tops,FALSE 400 | 신발,신발,교복 신발,loafers,FALSE 401 | 신발,신발,정장 신발,pumps,FALSE 402 | 신발,신발,중국 신발,flats,FALSE 403 | 신발,신발,영국 신발,mary_janes,FALSE 404 | 신발,신발,학교 실내화,uwabaki,FALSE 405 | 신발,신발,뾰족한 신발,pointy_footwear,FALSE 406 | 신발,신발,끈 달린 교복 신발,kiltie_loafers,FALSE 407 | 신발,신발,리본 달린 신발,footwear_ribbon,FALSE 408 | 신발,신발,끈이 달린 신발,cross-laced_footwear,FALSE 409 | 신발,신발,두꺼운 굽 있는 신발,platform_footwear,FALSE 410 | 신발,신발,발가락이 보이는 신발,toeless_footwear,FALSE 411 | 신발,신발,발꿈치에 날개 달린 신발,winged_footwear,FALSE 412 | 신발,구두,하이힐,high_heels,FALSE 413 | 신발,구두,웨지힐,wedge_heels,FALSE 414 | 신발,부츠,부츠,boots,FALSE 415 | 신발,부츠,무릎 부츠,knee_boots,FALSE 416 | 신발,부츠,발목 부츠,ankle_boots,FALSE 417 | 신발,부츠,발목 위 부츠,lace-up_boots,FALSE 418 | 신발,부츠,허벅지 부츠,thigh_boots,FALSE 419 | 신발,부츠,보호 부츠,armored_boots,FALSE 420 | 신발,부츠,하이힐 부츠,high_heel_boots,FALSE 421 | 신발,부츠,고무 장화,rubber_boots,FALSE 422 | 신발,부츠,카우보이 부츠,cowboy_boots,FALSE 423 | 신발,샌들,샌들,sandals,FALSE 424 | 신발,샌들,나막신 샌들,clog_sandals,FALSE 425 | 신발,샌들,검투사 샌들,gladiator_sandals,FALSE 426 | 신발,샌들,끈이 얽힌 샌들,cross-laced_sandals,FALSE 427 | 신발,샌들,발목이 고정되지 않는 샌들,flip-flops,FALSE 428 | 신발,샌들,게다(일본 나무 샌들),geta,FALSE 429 | 신발,샌들,오코보(일본 게이샤 샌들),okobo,FALSE 430 | 신발,샌들,와자지(일본 짚신),waraji,FALSE 431 | 신발,샌들,조리(일본 샌들),zouri,FALSE 432 | ,,,,FALSE 433 | ,,,,FALSE 434 | ,,,,FALSE 435 | ,,,,FALSE 436 | ,,,,FALSE 437 | ,,,,FALSE 438 | ,,,,FALSE 439 | ,,,,FALSE 440 | ,,,,FALSE 441 | ,,,,FALSE 442 | ,,,,FALSE 443 | ,,,,FALSE 444 | ,,,,FALSE 445 | ,,,,FALSE 446 | ,,,,FALSE 447 | ,,,,FALSE 448 | ,,,,FALSE 449 | ,,,,FALSE 450 | ,,,,FALSE 451 | ,,,,FALSE 452 | ,,,,FALSE 453 | ,,,,FALSE 454 | ,,,,FALSE 455 | ,,,,FALSE 456 | ,,,,FALSE 457 | ,,,,FALSE 458 | ,,,,FALSE 459 | ,,,,FALSE 460 | ,,,,FALSE 461 | ,,,,FALSE 462 | ,,,,FALSE 463 | ,,,,FALSE 464 | ,,,,FALSE 465 | ,,,,FALSE 466 | ,,,,FALSE 467 | ,,,,FALSE 468 | ,,,,FALSE 469 | ,,,,FALSE 470 | ,,,,FALSE 471 | ,,,,FALSE 472 | ,,,,FALSE 473 | ,,,,FALSE 474 | ,,,,FALSE 475 | ,,,,FALSE 476 | ,,,,FALSE 477 | ,,,,FALSE 478 | ,,,,FALSE 479 | ,,,,FALSE 480 | ,,,,FALSE 481 | ,,,,FALSE 482 | ,,,,FALSE 483 | ,,,,FALSE 484 | ,,,,FALSE 485 | ,,,,FALSE 486 | ,,,,FALSE 487 | ,,,,FALSE 488 | ,,,,FALSE 489 | ,,,,FALSE 490 | ,,,,FALSE 491 | ,,,,FALSE 492 | ,,,,FALSE 493 | ,,,,FALSE 494 | ,,,,FALSE 495 | ,,,,FALSE 496 | ,,,,FALSE 497 | ,,,,FALSE 498 | ,,,,FALSE 499 | ,,,,FALSE 500 | ,,,,FALSE 501 | ,,,,FALSE 502 | ,,,,FALSE 503 | ,,,,FALSE 504 | ,,,,FALSE 505 | ,,,,FALSE 506 | ,,,,FALSE 507 | ,,,,FALSE 508 | ,,,,FALSE 509 | ,,,,FALSE 510 | ,,,,FALSE 511 | ,,,,FALSE 512 | ,,,,FALSE 513 | ,,,,FALSE 514 | ,,,,FALSE 515 | ,,,,FALSE 516 | ,,,,FALSE 517 | ,,,,FALSE 518 | ,,,,FALSE 519 | ,,,,FALSE 520 | ,,,,FALSE 521 | ,,,,FALSE 522 | ,,,,FALSE 523 | ,,,,FALSE 524 | ,,,,FALSE 525 | ,,,,FALSE 526 | ,,,,FALSE 527 | ,,,,FALSE 528 | ,,,,FALSE 529 | ,,,,FALSE 530 | ,,,,FALSE 531 | ,,,,FALSE 532 | ,,,,FALSE -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[인물].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 인원,숫자,1명,1other,FALSE 3 | 인원,숫자,2명,2others,FALSE 4 | 인원,숫자,3명,3others,FALSE 5 | 인원,숫자,4명,4others,FALSE 6 | 인원,숫자,5명,5others,FALSE 7 | 인원,숫자,6명,6others,FALSE 8 | 인원,남성,남성 1명 ,1boy,FALSE 9 | 인원,남성,남성 2명,2boys,FALSE 10 | 인원,남성,남성 3명,3boys,FALSE 11 | 인원,남성,남성 4명,4boys,FALSE 12 | 인원,남성,남성 5명,5boys,FALSE 13 | 인원,남성,남성 6명,6+boys,FALSE 14 | 인원,여성,여성 1명,1girl,FALSE 15 | 인원,여성,여성 2명,2girls,FALSE 16 | 인원,여성,여성 3명,3girls,FALSE 17 | 인원,여성,여성 4명,4girls,FALSE 18 | 인원,여성,여성 5명,5girls,FALSE 19 | 인원,여성,여성 6명,6+girls,FALSE 20 | 인물,위치,아들,son,FALSE 21 | 인물,위치,딸,daughter,FALSE 22 | 인물,위치,아버지,father,FALSE 23 | 인물,위치,어머니,mother,FALSE 24 | 인물,위치,이모,aunt,FALSE 25 | 인물,위치,삼촌,uncle,FALSE 26 | 인물,위치,사촌,cousins,FALSE 27 | 인물,위치,할아버지,granddaughter,FALSE 28 | 인물,위치,할머니,grandmother,FALSE 29 | 인물,위치,형,brother,FALSE 30 | 인물,위치,누나,older_sister,FALSE 31 | 인물,위치,남동생,Younger_brother,FALSE 32 | 인물,위치,여동생,Younger_Sister,FALSE 33 | 인물,위치,형제,siblings,FALSE 34 | 인물,위치,형제,brothers,FALSE 35 | 인물,위치,자매,sisters,FALSE 36 | 인물,위치,형제와 자매,brother_and_sister,FALSE 37 | 인물,위치,의붓 형제,step-siblings,FALSE 38 | 인물,위치,이복 형제자매,half-siblings,FALSE 39 | 인물,위치,다태아,multiple_births,FALSE 40 | 인물,위치,쌍둥이,twins,FALSE 41 | 인물,위치,세 쌍둥이,triplets,FALSE 42 | 인물,위치,네 쌍둥이,quadruplets,FALSE 43 | 인물,위치,다섯 쌍둥이,sextuplets,FALSE 44 | 인물,위치,일곱 쌍둥이,septuplets,FALSE 45 | 인물,관계,아버지와 아들,father_and_son,FALSE 46 | 인물,관계,아버지와 딸,father_and_daughter,FALSE 47 | 인물,관계,어머니와 아들,mother_and_son,FALSE 48 | 인물,관계,어머니와 딸,mother_and_daughter,FALSE 49 | 인물,관계,삼촌과 남자 조카,uncle_and_nephew,FALSE 50 | 인물,관계,삼촌과 여자 조카,uncle_and_niece,FALSE 51 | 인물,관계,이모와 여자 조카,aunt_and_niece,FALSE 52 | 인물,관계,이모와 남자 조카,aunt_and_nephew,FALSE 53 | 인물,관계,할아버지와 손자,grandfather_and_grandson,FALSE 54 | 인물,관계,할아버지와 손녀,grandfather_and_granddaughter,FALSE 55 | 인물,관계,할머니와 손자,grandmother_and_grandson,FALSE 56 | 인물,관계,할머니와 손녀,grandmother_and_granddaughter,FALSE 57 | 인종,피부색,황인,yellow_man,FALSE 58 | 인종,피부색,동앙계 혼혈,a_mixed_Eastern_blood,FALSE 59 | 인종,피부색,동양계 쿼터,Eastern_Quota,FALSE 60 | 인종,피부색,백인,White_man,FALSE 61 | 인종,피부색,백인계 혼혈,a_mixed_race_of_white_blood,FALSE 62 | 인종,피부색,백인계 쿼터,white_quarter,FALSE 63 | 인종,피부색,흑인,black_man,FALSE 64 | 인종,피부색,흑인계 혼혈,a_mixed_race_of_black_people,FALSE 65 | 인종,피부색,흑인계 쿼터,black_quarter,FALSE 66 | 인종,국가,한국인,Korean,FALSE 67 | 인종,국가,북한인,North_Korean,FALSE 68 | 인종,국가,일본인,Japanese,FALSE 69 | 인종,국가,중국인,Chinese,FALSE 70 | 인종,국가,홍콩인,Hong_Kong_people,FALSE 71 | 인종,국가,대만인,Taiwanese,FALSE 72 | 인종,국가,몽골인,Mongolians,FALSE 73 | 인종,국가,태국인,Thai,FALSE 74 | 인종,국가,베트남인,Vietnamese_people,FALSE 75 | 인종,국가,캐나다인,Canadian,FALSE 76 | 인종,국가,멕시코인,Mexicans,FALSE 77 | 인종,국가,미국인,American,FALSE 78 | 인종,국가,브라질인,Brazilians,FALSE 79 | 인종,국가,아르헨티나인,Argentines,FALSE 80 | 인종,국가,우루과이인,Uruguayan_people,FALSE 81 | 인종,국가,칠레인,Chilean_people,FALSE 82 | 인종,국가,콜롬비아인,Colombian_people,FALSE 83 | 인종,국가,파라과이인,Paraguayan_people,FALSE 84 | 인종,국가,러시아인,Russian_people_of_Russia,FALSE 85 | 인종,국가,벨라루스인,Belarusian_people,FALSE 86 | 인종,국가,우크라이나인,Ukrainians,FALSE 87 | 인종,국가,네덜란드인,Dutch,FALSE 88 | 인종,국가,모나코인,People_of_Monaco,FALSE 89 | 인종,국가,벨기에인,Belgians,FALSE 90 | 인종,국가,아일랜드인,Irishman,FALSE 91 | 인종,국가,영국인,British,FALSE 92 | 인종,국가,프랑스인,French,FALSE 93 | 인종,국가,그리스인,Greeks,FALSE 94 | 인종,국가,루마니아인,Romanian_people,FALSE 95 | 인종,국가,바티칸인,Vatican_people,FALSE 96 | 인종,국가,불가리아인,Bulgarian,FALSE 97 | 인종,국가,스페인인,Spanish,FALSE 98 | 인종,국가,이탈리아인,Italians,FALSE 99 | 인종,국가,터키인,Turkish_people,FALSE 100 | 인종,국가,포르투갈인,Portuguese_people,FALSE 101 | 인종,국가,노르웨이인,Norwegian_people,FALSE 102 | 인종,국가,덴마크인,Danish_people,FALSE 103 | 인종,국가,스웨덴인,Swedes,FALSE 104 | 인종,국가,핀란드인,Finns,FALSE 105 | 인종,국가,아이슬란드인,Icelanders,FALSE 106 | 특징,데레,다루데레,Darudere,FALSE 107 | 특징,데레,메가데레,Megadere,FALSE 108 | 특징,데레,멘헤라,Menhera,FALSE 109 | 특징,데레,보코데레,Bokodere,FALSE 110 | 특징,데레,얀데레,Yandere,FALSE 111 | 특징,데레,츤데레,Tsundere,FALSE 112 | 특징,데레,쿨데레,kuudere,FALSE 113 | 특징,성향,질서 선,Lawful_Good,FALSE 114 | 특징,성향,질서 중립,Lawful_Neutral,FALSE 115 | 특징,성향,질서 악,Lawful_Evil,FALSE 116 | 특징,성향,중립 선,Neutral_Good,FALSE 117 | 특징,성향,중립,True_Neutral,FALSE 118 | 특징,성향,중립 악,Neutral_Evil,FALSE 119 | 특징,성향,혼돈 선,Chaotic_Good,FALSE 120 | 특징,성향,혼돈 중립,Chaotic_Neutral,FALSE 121 | 특징,성향,혼돈 악,Chaotic_Evil,FALSE 122 | 종족,판타지,고블린,Goblin,FALSE 123 | 종족,판타지,슬라임,Slime,FALSE 124 | 종족,판타지,엘프,Elf,FALSE 125 | 종족,판타지,다크 엘프,Dark_Elf,FALSE 126 | 종족,판타지,하이 엘프,High_Elf,FALSE 127 | 종족,판타지,오크,Orc,FALSE 128 | 종족,판타지,요괴,Monster,FALSE 129 | 종족,판타지,요정,Fairy,FALSE 130 | 종족,판타지,용,Dragon,FALSE 131 | 종족,판타지,유령,Ghost,FALSE 132 | 종족,판타지,정령,Spirit,FALSE 133 | 종족,판타지,천사,Angel,FALSE 134 | 종족,판타지,악마,devil,FALSE 135 | 종족,판타지,흡혈귀,Vampire,FALSE 136 | 종족,동물,강아지,dog,FALSE 137 | 종족,동물,고릴라,Gorilla,FALSE 138 | 종족,동물,고양이,cat,FALSE 139 | 종족,동물,곰,bear,FALSE 140 | 종족,동물,너구리,raccoon,FALSE 141 | 종족,동물,늑대,wolf,FALSE 142 | 종족,동물,다람쥐,squirrel,FALSE 143 | 종족,동물,돼지,pig,FALSE 144 | 종족,동물,말,horse,FALSE 145 | 종족,동물,박쥐,bat,FALSE 146 | 종족,동물,사슴,deer,FALSE 147 | 종족,동물,사자,lion,FALSE 148 | 종족,동물,소,cow,FALSE 149 | 종족,동물,양,sheep,FALSE 150 | 종족,동물,여우,fox,FALSE 151 | 종족,동물,염소,goat,FALSE 152 | 종족,동물,족제비,ferret,FALSE 153 | 종족,동물,쥐,mouse,FALSE 154 | 종족,동물,토끼,rabbit,FALSE 155 | 종족,동물,팬더,panda,FALSE 156 | 종족,동물,호랑이,tiger,FALSE 157 | 종족,수인,강아지 인간,dog_human,FALSE 158 | 종족,수인,고릴라 인간,Gorilla_human,FALSE 159 | 종족,수인,고양이 인간,cat_human,FALSE 160 | 종족,수인,곰 인간,bear_human,FALSE 161 | 종족,수인,너구리 인간,raccoon_human,FALSE 162 | 종족,수인,늑대 인간,Werewolf,FALSE 163 | 종족,수인,다람쥐 인간,squirrel_human,FALSE 164 | 종족,수인,돼지 인간,Pig_human,FALSE 165 | 종족,수인,말 인간,horse_human,FALSE 166 | 종족,수인,박쥐 인간,bat_human,FALSE 167 | 종족,수인,사슴 인간,deer_human,FALSE 168 | 종족,수인,사자 인간,lion_human,FALSE 169 | 종족,수인,소 인간,cow_human,FALSE 170 | 종족,수인,양 인간,sheep_human,FALSE 171 | 종족,수인,여우 인간,fox_human,FALSE 172 | 종족,수인,염소 인간,goat_human,FALSE 173 | 종족,수인,원숭이 인간,monkey_human,FALSE 174 | 종족,수인,족제비 인간,ferret_human,FALSE 175 | 종족,수인,쥐 인간,mouse_human,FALSE 176 | 종족,수인,토끼 인간,rabbit_human,FALSE 177 | 종족,수인,팬더 인간,panda_human,FALSE 178 | 종족,수인,호랑이 인간,tiger_human,FALSE 179 | 종족,퍼리,강아지 수인,dog_furry,FALSE 180 | 종족,퍼리,고릴라 수인,Gorilla_furry,FALSE 181 | 종족,퍼리,고양이 수인,cat_furry,FALSE 182 | 종족,퍼리,곰 수인,bear_furry,FALSE 183 | 종족,퍼리,너구리 수인,raccoon_furry,FALSE 184 | 종족,퍼리,늑대 수인,wolf_furry,FALSE 185 | 종족,퍼리,다람쥐 수인,squirrel_furry,FALSE 186 | 종족,퍼리,돼지 수인,pig_furry,FALSE 187 | 종족,퍼리,말 수인,horse_furry,FALSE 188 | 종족,퍼리,박쥐 수인,bat_furry,FALSE 189 | 종족,퍼리,사슴 수인,deer_furry,FALSE 190 | 종족,퍼리,사자 수인,lion_furry,FALSE 191 | 종족,퍼리,소 수인,cow_furry,FALSE 192 | 종족,퍼리,양 수인,sheep_furry,FALSE 193 | 종족,퍼리,여우 수인,fox_furry,FALSE 194 | 종족,퍼리,염소 수인,goat_furry,FALSE 195 | 종족,퍼리,원숭이 순인,monkey_furry,FALSE 196 | 종족,퍼리,족제비 수인,_ferret_furry,FALSE 197 | 종족,퍼리,쥐 수인,mouse_furry,FALSE 198 | 종족,퍼리,토끼 수인,rabbit_furry,FALSE 199 | 종족,퍼리,팬더 수인,panda_furry,FALSE 200 | 종족,퍼리,호랑이 수인,tiger_furry,FALSE 201 | 직업,일반,강도,burglar,FALSE 202 | 직업,일반,갸루,gyaru,FALSE 203 | 직업,일반,건설 노동자,construction_worker,FALSE 204 | 직업,일반,광부,miner,FALSE 205 | 직업,일반,꽃집 직원,florist,FALSE 206 | 직업,일반,나무꾼,lumberjack,FALSE 207 | 직업,일반,사서,librarian,FALSE 208 | 직업,일반,상인,croupier,FALSE 209 | 직업,일반,상인,merchant,FALSE 210 | 직업,일반,양치기,shepherd,FALSE 211 | 직업,일반,정비공,mechanic,FALSE 212 | 직업,일반,정치가,politician,FALSE 213 | 직업,일반,테러리스트,terrorist,FALSE 214 | 직업,일반,판사,judge,FALSE 215 | 직업,일반,학생,student,FALSE 216 | 직업,일반,해커,hacker,FALSE 217 | 직업,일반,회사원(남성),salaryman,FALSE 218 | 직업,일반,회사원(여성),office_lady,FALSE 219 | 직업,전문,경비원,guard,FALSE 220 | 직업,전문,경찰,police,FALSE 221 | 직업,전문,관리인,janitor,FALSE 222 | 직업,전문,군인,soldier,FALSE 223 | 직업,전문,군인(기수),standard-bearer,FALSE 224 | 직업,전문,군인(장교),officer,FALSE 225 | 직업,전문,근위대,lifeguard,FALSE 226 | 직업,전문,선원,sailor,FALSE 227 | 직업,전문,소방관,firefighter,FALSE 228 | 직업,전문,스파이,spy,FALSE 229 | 직업,전문,우주 비행사,astronaut,FALSE 230 | 직업,전문,요리사,chef,FALSE 231 | 직업,전문,지휘자,conductor,FALSE 232 | 직업,전문,친위대,bodyguard,FALSE 233 | 직업,서비스,바텐더,bartender,FALSE 234 | 직업,서비스,웨이터,waiter,FALSE 235 | 직업,서비스,웨이트리스,waitress,FALSE 236 | 직업,서비스,집사,butler,FALSE 237 | 직업,서비스,카운터 직원,cashier,FALSE 238 | 직업,메이드,메이드,maid,FALSE 239 | 직업,메이드,너스 메이드,Nurse_Maid,FALSE 240 | 직업,메이드,레이디스 메이드,Ladies_Maid,FALSE 241 | 직업,메이드,밀리터리 메이드,Military_Maid,FALSE 242 | 직업,메이드,빅토리아 메이드,Victoria_Maid,FALSE 243 | 직업,메이드,사이버 메이드,CyberMaid,FALSE 244 | 직업,메이드,스팀펑크 메이드,Steampunk_Maid,FALSE 245 | 직업,메이드,일본풍 메이드,Japanese-style_Maid,FALSE 246 | 직업,메이드,차이나 메이드,China-style_Maid,FALSE 247 | 직업,메이드,클래식 메이드,Classic_maid,FALSE 248 | 직업,메이드,키친 메이드,Kitchen_Maid,FALSE 249 | 직업,메이드,팔러 메이드,Faller_Maid,FALSE 250 | 직업,메이드,프렌치 메이드,French_Maid,FALSE 251 | 직업,메이드,하우스 메이드,House_Maid,FALSE 252 | 직업,메이드,하우스키퍼,Housekeeper,FALSE 253 | 직업,과학,과학자,scientist,FALSE 254 | 직업,과학,화학자,chemist,FALSE 255 | 직업,과학,엔지니어,engineer,FALSE 256 | 직업,예술,게이샤,geisha,FALSE 257 | 직업,예술,아이돌,idol,FALSE 258 | 직업,예술,남성 배우,actor,FALSE 259 | 직업,예술,여성 배우,actress,FALSE 260 | 직업,예술,음악가,musician,FALSE 261 | 직업,예술,화가,painter,FALSE 262 | 직업,예술,예술가,artist,FALSE 263 | 직업,운동,운동선수,athlete,FALSE 264 | 직업,운동,축구선수,Footballer,FALSE 265 | 직업,운동,농구선수,a_basketball_player.,FALSE 266 | 직업,운동,야구선수,Baseball_player,FALSE 267 | 직업,운동,배구선수,volleyball_player,FALSE 268 | 직업,운동,골프 선수,golfer,FALSE 269 | 직업,운동,테니스 선수,tennis_player,FALSE 270 | 직업,운동,자전거 선수,cyclist,FALSE 271 | 직업,교육,교사,teacher,FALSE 272 | 직업,교육,수학 교사,math_teacher,FALSE 273 | 직업,교육,과학 교사,science_teacher,FALSE 274 | 직업,교육,영어 교사,English_teacher,FALSE 275 | 직업,교육,보건 교사,health_teacher,FALSE 276 | 직업,교육,보건 교사,school_nurse,FALSE 277 | 직업,이동,운전사,driver,FALSE 278 | 직업,이동,조종사,pilot,FALSE 279 | 직업,이동,기차 안내원,train_attendant,FALSE 280 | 직업,이동,기차 운전사,train_conductor,FALSE 281 | 직업,이동,비행기 안내원,flight_attendant,FALSE 282 | 직업,이동,트럭 운전사,trucker,FALSE 283 | 직업,의료,의사,doctor,FALSE 284 | 직업,의료,간호사,nurse,FALSE 285 | 직업,의료,치과 의사,dentist,FALSE 286 | 직업,신분,노예,slave,FALSE 287 | 직업,신분,농장주,farmer,FALSE 288 | 직업,신분,여왕,queen,FALSE 289 | 직업,신분,왕,king,FALSE 290 | 직업,신분,죄인,prisoner,FALSE 291 | 직업,신분,지배자,dominatrix,FALSE 292 | 직업,판타지,기사,knight,FALSE 293 | 직업,판타지,닌자,ninja,FALSE 294 | 직업,판타지,마녀,witch,FALSE 295 | 직업,판타지,마법사,wizard,FALSE 296 | 직업,판타지,무녀,miko,FALSE 297 | 직업,판타지,사무라이,samurai,FALSE 298 | 직업,판타지,성직자,priest,FALSE 299 | 직업,판타지,수녀,nun,FALSE 300 | 직업,판타지,수도사,monk,FALSE 301 | 직업,판타지,연금술사,alchemist,FALSE 302 | 직업,판타지,전사,warrior,FALSE 303 | 직업,성인,암캐,Slut,FALSE 304 | 직업,성인,걸레,Skank,FALSE 305 | 직업,성인,창녀,bitch,FALSE 306 | 직업,성인,빗치,whore,FALSE 307 | 직업,성인,콜걸,call_girl,FALSE 308 | 직업,성인,스트립퍼,stripper,FALSE 309 | 직업,성인,매춘부,prostitution,FALSE 310 | 직업,성인,포르노 배우,Porno_Actor,FALSE 311 | ,,,,FALSE 312 | ,,,,FALSE 313 | ,,,,FALSE 314 | ,,,,FALSE 315 | ,,,,FALSE 316 | ,,,,FALSE 317 | ,,,,FALSE 318 | ,,,,FALSE 319 | ,,,,FALSE 320 | ,,,,FALSE 321 | ,,,,FALSE 322 | ,,,,FALSE 323 | ,,,,FALSE 324 | ,,,,FALSE 325 | ,,,,FALSE 326 | ,,,,FALSE 327 | ,,,,FALSE 328 | ,,,,FALSE 329 | ,,,,FALSE 330 | ,,,,FALSE 331 | ,,,,FALSE 332 | ,,,,FALSE 333 | ,,,,FALSE 334 | ,,,,FALSE 335 | ,,,,FALSE 336 | ,,,,FALSE 337 | ,,,,FALSE 338 | ,,,,FALSE 339 | ,,,,FALSE 340 | ,,,,FALSE 341 | ,,,,FALSE 342 | ,,,,FALSE 343 | ,,,,FALSE 344 | ,,,,FALSE 345 | ,,,,FALSE 346 | ,,,,FALSE 347 | ,,,,FALSE 348 | ,,,,FALSE 349 | ,,,,FALSE 350 | ,,,,FALSE 351 | ,,,,FALSE 352 | ,,,,FALSE 353 | ,,,,FALSE 354 | ,,,,FALSE 355 | ,,,,FALSE 356 | ,,,,FALSE 357 | ,,,,FALSE 358 | ,,,,FALSE 359 | ,,,,FALSE 360 | ,,,,FALSE 361 | ,,,,FALSE 362 | ,,,,FALSE 363 | ,,,,FALSE 364 | ,,,,FALSE 365 | ,,,,FALSE 366 | ,,,,FALSE 367 | ,,,,FALSE 368 | ,,,,FALSE 369 | ,,,,FALSE 370 | ,,,,FALSE 371 | ,,,,FALSE 372 | ,,,,FALSE 373 | ,,,,FALSE 374 | ,,,,FALSE 375 | ,,,,FALSE 376 | ,,,,FALSE 377 | ,,,,FALSE 378 | ,,,,FALSE 379 | ,,,,FALSE 380 | ,,,,FALSE 381 | ,,,,FALSE 382 | ,,,,FALSE 383 | ,,,,FALSE 384 | ,,,,FALSE 385 | ,,,,FALSE 386 | ,,,,FALSE 387 | ,,,,FALSE 388 | ,,,,FALSE 389 | ,,,,FALSE 390 | ,,,,FALSE 391 | ,,,,FALSE 392 | ,,,,FALSE 393 | ,,,,FALSE 394 | ,,,,FALSE 395 | ,,,,FALSE 396 | ,,,,FALSE 397 | ,,,,FALSE 398 | ,,,,FALSE 399 | ,,,,FALSE 400 | ,,,,FALSE 401 | ,,,,FALSE 402 | ,,,,FALSE 403 | ,,,,FALSE 404 | ,,,,FALSE 405 | ,,,,FALSE 406 | ,,,,FALSE 407 | ,,,,FALSE 408 | ,,,,FALSE 409 | ,,,,FALSE 410 | ,,,,FALSE 411 | ,,,,FALSE 412 | ,,,,FALSE 413 | ,,,,FALSE 414 | ,,,,FALSE 415 | ,,,,FALSE 416 | ,,,,FALSE 417 | ,,,,FALSE 418 | ,,,,FALSE 419 | ,,,,FALSE 420 | ,,,,FALSE 421 | ,,,,FALSE 422 | ,,,,FALSE 423 | ,,,,FALSE 424 | ,,,,FALSE 425 | ,,,,FALSE 426 | ,,,,FALSE 427 | ,,,,FALSE 428 | ,,,,FALSE 429 | ,,,,FALSE 430 | ,,,,FALSE 431 | ,,,,FALSE 432 | ,,,,FALSE 433 | ,,,,FALSE 434 | ,,,,FALSE 435 | ,,,,FALSE 436 | ,,,,FALSE 437 | ,,,,FALSE 438 | ,,,,FALSE 439 | ,,,,FALSE 440 | ,,,,FALSE 441 | ,,,,FALSE 442 | ,,,,FALSE 443 | ,,,,FALSE 444 | ,,,,FALSE 445 | ,,,,FALSE 446 | ,,,,FALSE 447 | ,,,,FALSE 448 | ,,,,FALSE 449 | ,,,,FALSE 450 | ,,,,FALSE 451 | ,,,,FALSE 452 | ,,,,FALSE 453 | ,,,,FALSE 454 | ,,,,FALSE 455 | ,,,,FALSE 456 | ,,,,FALSE 457 | ,,,,FALSE 458 | ,,,,FALSE 459 | ,,,,FALSE 460 | ,,,,FALSE 461 | ,,,,FALSE 462 | ,,,,FALSE 463 | ,,,,FALSE 464 | ,,,,FALSE 465 | ,,,,FALSE 466 | ,,,,FALSE 467 | ,,,,FALSE 468 | ,,,,FALSE 469 | ,,,,FALSE 470 | ,,,,FALSE 471 | ,,,,FALSE 472 | ,,,,FALSE 473 | ,,,,FALSE 474 | ,,,,FALSE 475 | ,,,,FALSE 476 | ,,,,FALSE 477 | ,,,,FALSE 478 | ,,,,FALSE 479 | ,,,,FALSE 480 | ,,,,FALSE 481 | ,,,,FALSE 482 | ,,,,FALSE 483 | ,,,,FALSE 484 | ,,,,FALSE 485 | ,,,,FALSE 486 | ,,,,FALSE 487 | ,,,,FALSE 488 | ,,,,FALSE 489 | ,,,,FALSE 490 | ,,,,FALSE 491 | ,,,,FALSE 492 | ,,,,FALSE 493 | ,,,,FALSE 494 | ,,,,FALSE 495 | ,,,,FALSE -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[장신구].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 머리 장식,머리띠,머리띠,"hairband, headband",FALSE 3 | 머리 장식,머리띠,머리 장식,headdress,FALSE 4 | 머리 장식,머리띠,머리 리본,hair_ribbon,FALSE 5 | 머리 장식,머리띠,이마 보호대,forehead_protector,FALSE 6 | 머리 장식,머리띠,땀띠,sweatband,FALSE 7 | 머리 장식,머리띠,두건(반다나),bandana,FALSE 8 | 머리 장식,머리띠,양갈래 머리띠,bow_hairband,FALSE 9 | 머리 장식,머리띠,프릴 머리띠,frilled_hairband,FALSE 10 | 머리 장식,머리띠,레이스 머리띠,lace_hairband,FALSE 11 | 머리 장식,머리띠,레이스 장식 머리띠,lace-trimmed_hairband,FALSE 12 | 머리 장식,머리띠,로리타 머리띠,lolita_hairband,FALSE 13 | 머리 장식,머리띠,스파이크 머리티,spiked_hairband,FALSE 14 | 머리 장식,머리띠,줄무늬 머리띠,striped_hairband,FALSE 15 | 머리 장식,머리띠,투 톤 머리띠,two-tone_hairband,FALSE 16 | 머리 장식,머리띠,날개 달린,winged_hairband,FALSE 17 | 머리 장식,머리띠,메이드 머리 장식,maid_headdress,FALSE 18 | 머리 장식,모자,베레모,beret,FALSE 19 | 머리 장식,모자,멕시코 모자,sombrero,FALSE 20 | 머리 장식,모자,비니,beanie,FALSE 21 | 머리 장식,모자,모피 모자,fur_hat,FALSE 22 | 머리 장식,모자,수면 모자,nightcap,FALSE 23 | 머리 장식,모자,파티 모자,party_hat,FALSE 24 | 머리 장식,모자,간호사 모자,nurse_cap,FALSE 25 | 머리 장식,모자,광대 모자,jester_cap,FALSE 26 | 머리 장식,모자,군사 모자,kepi,FALSE 27 | 머리 장식,모자,군용 모자,shako_cap,FALSE 28 | 머리 장식,모자,군인(상관) 모자,campaign_hat,FALSE 29 | 머리 장식,모자,귀족 모자,tate_eboshi,FALSE 30 | 머리 장식,모자,마녀 모자,witch_hat,FALSE 31 | 머리 장식,모자,작은 마녀 모자,mini_witch_hat,FALSE 32 | 머리 장식,모자,마법사 모자,wizard_hat,FALSE 33 | 머리 장식,모자,마술사 모자,top_hat,FALSE 34 | 머리 장식,모자,작은 마술사 모자,mini_top_hat,FALSE 35 | 머리 장식,모자,산타,santa_hat,FALSE 36 | 머리 장식,모자,미니 산타,mini_santa_hat,FALSE 37 | 머리 장식,모자,밀짚모자,straw_hat,FALSE 38 | 머리 장식,모자,밀짚모자(도사),rice_hat,FALSE 39 | 머리 장식,모자,밀짚모자(승려),ajirogasa,FALSE 40 | 머리 장식,모자,비행사 모자,aviator_cap,FALSE 41 | 머리 장식,모자,사제 모자,mitre,FALSE 42 | 머리 장식,모자,선원 모자,sailor_hat,FALSE 43 | 머리 장식,모자,성직자 모자,habit,FALSE 44 | 머리 장식,모자,야구 모자,baseball_cap,FALSE 45 | 머리 장식,모자,여성 유니폼 모자,female_service_cap,FALSE 46 | 머리 장식,모자,요리사 모자,chef_hat,FALSE 47 | 머리 장식,모자,빵 요리사 모자,toque_blanche,FALSE 48 | 머리 장식,모자,접힌 요리사 모자,flat_top_chef_hat,FALSE 49 | 머리 장식,모자,일본 결혼식 모자,tsunokakushi,FALSE 50 | 머리 장식,모자,졸업 모자,mortarboard_collage_graduation_hat,FALSE 51 | 머리 장식,모자,카우보이 모자,cowboy_hat,FALSE 52 | 머리 장식,모자,탐정 모자,deerstalker,FALSE 53 | 머리 장식,모자,탐정 모자,fedora,FALSE 54 | 머리 장식,모자,탐험가 모자,pith_helmet,FALSE 55 | 머리 장식,모자,텐구 모자,tokin_hat,FALSE 56 | 머리 장식,모자,해군 모자,dixie_cup_hat,FALSE 57 | 머리 장식,모자,해적 모자,bicorne,FALSE 58 | 머리 장식,모자,해적 모자,pirate_hat,FALSE 59 | 머리 장식,모자,동그란 모자,cloche_hat,FALSE 60 | 머리 장식,모자,바이저 캡,visor_cap,FALSE 61 | 머리 장식,모자,뾰족한 모자,peaked_cap,FALSE 62 | 머리 장식,모자,삼각뿔 모자,tricorne,FALSE 63 | 머리 장식,모자,삼각형 모자,garrison_cap,FALSE 64 | 머리 장식,모자,원통형 모자,fez_hat,FALSE 65 | 머리 장식,모자,챙이 작은 모자,bowler_hat,FALSE 66 | 머리 장식,모자,챙이 긴 모자,sun_hat,FALSE 67 | 머리 장식,모자,챙이 넓고 납작한 모자,boater_hat,FALSE 68 | 머리 장식,모자,폭이 넓고 길쭉한 모자,bucket_hat,FALSE 69 | 머리 장식,모자,한쪽으로 기울인 모자,flat_cap,FALSE 70 | 머리 장식,모자,머리카락을 덮는 모자,mob_cap,FALSE 71 | 머리 장식,헬멧,날개 달린 헬맷,winged_helmet,FALSE 72 | 머리 장식,헬멧,다이빙 헬맷,diving_helmet,FALSE 73 | 머리 장식,헬멧,독일군 헬맷,pickelhaube,FALSE 74 | 머리 장식,헬멧,미식축구,american_football_helmet,FALSE 75 | 머리 장식,헬멧,뿔 달린 헬맷,horned_helmet,FALSE 76 | 머리 장식,헬멧,야구 헬맷,baseball_helmet,FALSE 77 | 머리 장식,헬멧,오토바이 헬멧,motorcycle_helmet,FALSE 78 | 머리 장식,헬멧,자전거 헬맷,bicycle_helmet,FALSE 79 | 머리 장식,장신구,베일,veil,FALSE 80 | 머리 장식,장신구,보닛,bonnet,FALSE 81 | 머리 장식,장신구,서클릿,circlet,FALSE 82 | 머리 장식,장신구,왕관,Crowns,FALSE 83 | 머리 장식,장신구,작은 왕관,mini_crown,FALSE 84 | 머리 장식,장신구,천 왕관,diadem,FALSE 85 | 머리 장식,장신구,티아라,tiara,FALSE 86 | 얼굴 장식,안경,3D 안경,3d_glasses,FALSE 87 | 얼굴 장식,안경,고글,goggles,FALSE 88 | 얼굴 장식,안경,단안경,monocle,FALSE 89 | 얼굴 장식,안경,오페라 안경,opera_glasses,FALSE 90 | 얼굴 장식,안경,다이빙 안경,diving_mask,FALSE 91 | 얼굴 장식,안경,보호 안결,safety_glasses,FALSE 92 | 얼굴 장식,안경,비행 고글,flight_goggles,FALSE 93 | 얼굴 장식,안경,비행가 안경,aviator_sunglasses,FALSE 94 | 얼굴 장식,안경,사격 안경,shooting_glasses,FALSE 95 | 얼굴 장식,안경,스키 고글,ski_goggles,FALSE 96 | 얼굴 장식,안경,연구원 안경,coke-bottle_glasses,FALSE 97 | 얼굴 장식,안경,둥근 모양 안경,round_eyewear,FALSE 98 | 얼굴 장식,안경,직사각형 안경,rectangular_eyewear,FALSE 99 | 얼굴 장식,안경,하트 모양 안경,heart-shaped_eyewear,FALSE 100 | 얼굴 장식,안경,별 모양 안경,star-shaped_eyewear,FALSE 101 | 얼굴 장식,안경,눈물 모양 안경,teardrop-framed_glasses,FALSE 102 | 얼굴 장식,안경,재밌는 안경,funny_glasses,FALSE 103 | 얼굴 장식,안경,반투명한 안경,triangular_eyewear,FALSE 104 | 얼굴 장식,안경,불투명한 안경,opaque_glasses,FALSE 105 | 얼굴 장식,안경,손으로 잡는 안경,lorgnette,FALSE 106 | 얼굴 장식,안경,콧대에 지지하는 안경,pince-nez,FALSE 107 | 얼굴 장식,안경,안경끈 달린 안경,eyewear_strap,FALSE 108 | 얼굴 장식,안경,안경테가 없는 안경,rimless_eyewear,FALSE 109 | 얼굴 장식,안경,안경테가 두꺼운 안경,over-rim_eyewear,FALSE 110 | 얼굴 장식,안경,안경테가 위쪽만 있는 안경,under-rim_eyewear,FALSE 111 | 얼굴 장식,안경,안경테가 아래쪽만 있는 안경,teardrop-framed_glasses,FALSE 112 | 얼굴 장식,안경,안경테가 하단만 있는 안경,semi-rimless_eyewear,FALSE 113 | 얼굴 장식,가면,광대 가면,clown_mask,FALSE 114 | 얼굴 장식,가면,닌자 가면,ninja_mask,FALSE 115 | 얼굴 장식,가면,도미노 가면,domino_mask,FALSE 116 | 얼굴 장식,가면,레슬링,wrestling_mask,FALSE 117 | 얼굴 장식,가면,루차도르 가면,luchador_mask,FALSE 118 | 얼굴 장식,가면,안대,eye_mask,FALSE 119 | 얼굴 장식,가면,역병의사 가면,plague_doctor_mask,FALSE 120 | 얼굴 장식,가면,오니 마스크,oni_mask,FALSE 121 | 얼굴 장식,가면,축제 가면,carnival_mask,FALSE 122 | 얼굴 장식,가면,캐릭터 가면,character_mask,FALSE 123 | 얼굴 장식,가면,하키 가면,hockey_mask,FALSE 124 | 얼굴 장식,가면,해골 마스크,skull_mask,FALSE 125 | 얼굴 장식,가면,효토코 가면,hyottoko_mask,FALSE 126 | 얼굴 장식,마스크,방독면,gas_mask,FALSE 127 | 얼굴 장식,마스크,다이빙 마스크,diving_mask,FALSE 128 | 얼굴 장식,마스크,산소 마스크,oxygen_mask,FALSE 129 | 얼굴 장식,마스크,수면 마스크,sleep_mask,FALSE 130 | 얼굴 장식,마스크,수술 마스크,surgical_mask,FALSE 131 | 얼굴 장식,마스크,용접 마스크,welding_mask,FALSE 132 | 얼굴 장식,마스크,깨진 가면,broken_mask,FALSE 133 | 얼굴 장식,마스크,반쪽 가면,half_mask,FALSE 134 | 얼굴 장식,마스크,입 가면,mouth_mask,FALSE 135 | 얼굴 장식,마스크,입 베일,mouth_veil,FALSE 136 | 귀 장식,귀걸이,곡옥 귀걸이,Magatama_earrings,FALSE 137 | 귀 장식,귀걸이,술이 달린 귀걸이,Tassel_earrings,FALSE 138 | 귀 장식,귀걸이,쉘 귀걸이,Shell_earrings,FALSE 139 | 귀 장식,귀걸이,음양사 귀걸이,Yin_yang_earrings,FALSE 140 | 귀 장식,귀걸이,종 귀걸이,Bell_earrings,FALSE 141 | 귀 장식,귀걸이,초승달 귀걸이,Crescent_earrings,FALSE 142 | 귀 장식,귀걸이,털 장식 귀걸이,Pom_pom_earrings,FALSE 143 | 귀 장식,귀걸이,해골 귀걸이,Skull_earrings,FALSE 144 | 귀 장식,귀걸이,꽃 귀걸이,Flower_earrings,FALSE 145 | 귀 장식,귀걸이,수정 귀걸이,Crystal_earrings,FALSE 146 | 귀 장식,귀걸이,눈송이 귀걸이,Snowflake_earrings,FALSE 147 | 귀 장식,귀걸이,딸기 귀걸이,Strawberry_earrings,FALSE 148 | 귀 장식,귀걸이,별 귀걸이,Star_earrings,FALSE 149 | 귀 장식,귀걸이,스페이드 귀걸이,Spade_earrings,FALSE 150 | 귀 장식,귀걸이,십자가 귀걸이,Cross_earrings,FALSE 151 | 귀 장식,귀걸이,알약 귀걸이,Pill_earrings,FALSE 152 | 귀 장식,귀걸이,하트 귀걸이,Heart_earrings,FALSE 153 | 귀 장식,귀걸이,행성 귀걸이,Planet_earrings,FALSE 154 | 목 장식,넥타이,스카프,scarf,FALSE 155 | 목 장식,넥타이,크라밧,Cravate,FALSE 156 | 목 장식,넥타이,자벳,Jabot,FALSE 157 | 목 장식,넥타이,애스콧 타이,Ascot_Tie,FALSE 158 | 목 장식,넥타이,나비 넥타이,bowtie,FALSE 159 | 목 장식,넥타이,스톡 타이,Stock_Tie,FALSE 160 | 목 장식,넥타이,볼로 타이,Bolo_Tie,FALSE 161 | 목 장식,넥타이,리본 타이,neck_ribbon,FALSE 162 | 목 장식,넥타이,끈 타이,cross_tie,FALSE 163 | 목 장식,넥타이,쵸커,choker,FALSE 164 | 목 장식,넥타이,리본 쵸커,ribbon_choker,FALSE 165 | 목 장식,넥타이,종 쵸커,bell_choker,FALSE 166 | 목 장식,목걸이,목걸이,necklace,FALSE 167 | 목 장식,목걸이,로켓,locket,FALSE 168 | 목 장식,목걸이,팬던트,amulet,FALSE 169 | 목 장식,목걸이,팬타클,pentacle,FALSE 170 | 목 장식,목걸이,꽃 목걸이,flower_necklace,FALSE 171 | 목 장식,목걸이,진주 목걸이,pendant,FALSE 172 | 목 장식,목걸이,체인 목걸이,chain_necklace,FALSE 173 | 목 장식,목걸이,마가타마(일본 옥 목걸이),magatama,FALSE 174 | 목 장식,장신구,고글,goggles_around_neck,FALSE 175 | 목 장식,장신구,목도리,neckerchief,FALSE 176 | 목 장식,장신구,사원증,lanyard,FALSE 177 | 목 장식,장신구,스톨,stole,FALSE 178 | 목 장식,장신구,헤드폰,headphones_around_neck,FALSE 179 | 손 장식,장갑,너클,brass_knuckles,FALSE 180 | 손 장식,장갑,뾰족한 너클,spiked_knuckles,FALSE 181 | 손 장식,장갑,고무 장갑,rubber_gloves,FALSE 182 | 손 장식,장갑,가죽 장갑,leather_gloves,FALSE 183 | 손 장식,장갑,비닐 장갑,plastic_gloves,FALSE 184 | 손 장식,장갑,라텍스 장갑,latex_gloves,FALSE 185 | 손 장식,장갑,격투기 장갑,martial_arts_gloves,FALSE 186 | 손 장식,장갑,골키퍼 장갑,goalkeeper_gloves,FALSE 187 | 손 장식,장갑,골프 장갑,golf_gloves,FALSE 188 | 손 장식,장갑,권투 클러브,boxing_club,FALSE 189 | 손 장식,장갑,당구 장갑,billiard_gloves,FALSE 190 | 손 장식,장갑,등산용 장갑,climbing_gloves,FALSE 191 | 손 장식,장갑,레이싱 글러브,racing_gloves,FALSE 192 | 손 장식,장갑,빙상용 장갑,ice_gloves,FALSE 193 | 손 장식,장갑,스키 장갑,ski_gloves,FALSE 194 | 손 장식,장갑,야구 장갑,baseball_glove,FALSE 195 | 손 장식,장갑,야구 장갑,baseball_gloves,FALSE 196 | 손 장식,장갑,오토바이 장갑,motorcycle_gloves,FALSE 197 | 손 장식,장갑,헬스 글러브,Health_glove,FALSE 198 | 손 장식,장갑,오페라 글러브,opera_glove,FALSE 199 | 손 장식,장갑,의례용 면장갑,ceremonial_cotton_gloves,FALSE 200 | 손 장식,장갑,안전 장갑,safety_gloves,FALSE 201 | 손 장식,장갑,전술 장갑,tactical_gloves,FALSE 202 | 손 장식,장갑,전투용 장갑,combat_gloves,FALSE 203 | 손 장식,장갑,방열 장갑,heat-dissipating_gloves,FALSE 204 | 손 장식,장갑,방검 장갑,gas-proof_gloves,FALSE 205 | 손 장식,장갑,방한 장갑,cold_gloves,FALSE 206 | 기타,날개,날개 달린 귀,wing_ears,FALSE 207 | 기타,날개,날개 리본,wing_ribbon,FALSE 208 | 기타,날개,날개 달린 모자,winged_hat,FALSE 209 | 기타,날개,날개 달린 신발,Winged_footwear,FALSE 210 | 기타,날개,날개 달린 헬맷,Winged_helmet,FALSE 211 | 기타,날개,날개 달린 가방,Winged_bag,FALSE 212 | 기타,꼬리,꼬리 고리,Tail_ring,FALSE 213 | 기타,꼬리,꼬리 리본,Tail_bow,FALSE 214 | 기타,꼬리,꼬리 리본,Tail_ribbon,FALSE 215 | 기타,꼬리,꼬리 장식품,Tail_ornament,FALSE 216 | 기타,꼬리,꼬리 종,Tail_bell,FALSE 217 | 기타,꼬리,꼬리 피어싱,Tail_piercing,FALSE 218 | 기타,피어싱,혀 피어싱,Tongue_piercing,FALSE 219 | 기타,피어싱,코 피어싱,Nose_piercing,FALSE 220 | 기타,피어싱,귀 피어싱,Ear_piercing,FALSE 221 | 기타,피어싱,배꼽 피어싱,Collarbone_piercing,FALSE 222 | 기타,피어싱,귀걸이 한 개,Single_earring,FALSE 223 | 기타,피어싱,귀걸이 여러 개,Multiple_earrings,FALSE 224 | 기타,피어싱,위쪽 귀 두 개 피어싱,Industrial_piercing,FALSE 225 | 기타,피어싱,눈썹 피어싱,Eyebrow_piercing,FALSE 226 | 기타,피어싱,눈썹 아래 피어싱,Anti-eyebrow_piercing,FALSE 227 | 기타,피어싱,눈꺼풀 피어싱,Eyelid_piercing,FALSE 228 | ,,,,FALSE 229 | ,,,,FALSE 230 | ,,,,FALSE 231 | ,,,,FALSE 232 | ,,,,FALSE 233 | ,,,,FALSE 234 | ,,,,FALSE 235 | ,,,,FALSE 236 | ,,,,FALSE 237 | ,,,,FALSE 238 | ,,,,FALSE 239 | ,,,,FALSE 240 | ,,,,FALSE 241 | ,,,,FALSE 242 | ,,,,FALSE 243 | ,,,,FALSE 244 | ,,,,FALSE 245 | ,,,,FALSE 246 | ,,,,FALSE 247 | ,,,,FALSE 248 | ,,,,FALSE 249 | ,,,,FALSE 250 | ,,,,FALSE 251 | ,,,,FALSE 252 | ,,,,FALSE 253 | ,,,,FALSE 254 | ,,,,FALSE 255 | ,,,,FALSE 256 | ,,,,FALSE 257 | ,,,,FALSE 258 | ,,,,FALSE 259 | ,,,,FALSE 260 | ,,,,FALSE 261 | ,,,,FALSE 262 | ,,,,FALSE 263 | ,,,,FALSE 264 | ,,,,FALSE 265 | ,,,,FALSE 266 | ,,,,FALSE 267 | ,,,,FALSE 268 | ,,,,FALSE 269 | ,,,,FALSE 270 | ,,,,FALSE 271 | ,,,,FALSE 272 | ,,,,FALSE 273 | ,,,,FALSE 274 | ,,,,FALSE 275 | ,,,,FALSE 276 | ,,,,FALSE 277 | ,,,,FALSE 278 | ,,,,FALSE 279 | ,,,,FALSE 280 | ,,,,FALSE 281 | ,,,,FALSE 282 | ,,,,FALSE 283 | ,,,,FALSE 284 | ,,,,FALSE 285 | ,,,,FALSE 286 | ,,,,FALSE 287 | ,,,,FALSE 288 | ,,,,FALSE 289 | ,,,,FALSE 290 | ,,,,FALSE 291 | ,,,,FALSE 292 | ,,,,FALSE 293 | ,,,,FALSE 294 | ,,,,FALSE 295 | ,,,,FALSE 296 | ,,,,FALSE 297 | ,,,,FALSE 298 | ,,,,FALSE 299 | ,,,,FALSE 300 | ,,,,FALSE 301 | ,,,,FALSE 302 | ,,,,FALSE 303 | ,,,,FALSE 304 | ,,,,FALSE 305 | ,,,,FALSE 306 | ,,,,FALSE 307 | ,,,,FALSE 308 | ,,,,FALSE 309 | ,,,,FALSE 310 | ,,,,FALSE 311 | ,,,,FALSE 312 | ,,,,FALSE 313 | ,,,,FALSE 314 | ,,,,FALSE 315 | ,,,,FALSE 316 | ,,,,FALSE 317 | ,,,,FALSE 318 | ,,,,FALSE 319 | ,,,,FALSE 320 | ,,,,FALSE 321 | ,,,,FALSE 322 | ,,,,FALSE 323 | ,,,,FALSE 324 | ,,,,FALSE 325 | ,,,,FALSE 326 | ,,,,FALSE 327 | ,,,,FALSE 328 | ,,,,FALSE 329 | ,,,,FALSE 330 | ,,,,FALSE 331 | ,,,,FALSE 332 | ,,,,FALSE 333 | ,,,,FALSE 334 | ,,,,FALSE 335 | ,,,,FALSE 336 | ,,,,FALSE 337 | ,,,,FALSE 338 | ,,,,FALSE 339 | ,,,,FALSE 340 | ,,,,FALSE 341 | ,,,,FALSE 342 | ,,,,FALSE 343 | ,,,,FALSE 344 | ,,,,FALSE 345 | ,,,,FALSE 346 | ,,,,FALSE 347 | ,,,,FALSE 348 | ,,,,FALSE 349 | ,,,,FALSE 350 | ,,,,FALSE 351 | ,,,,FALSE 352 | ,,,,FALSE 353 | ,,,,FALSE 354 | ,,,,FALSE 355 | ,,,,FALSE 356 | ,,,,FALSE 357 | ,,,,FALSE 358 | ,,,,FALSE 359 | ,,,,FALSE 360 | ,,,,FALSE 361 | ,,,,FALSE 362 | ,,,,FALSE 363 | ,,,,FALSE 364 | ,,,,FALSE 365 | ,,,,FALSE 366 | ,,,,FALSE 367 | ,,,,FALSE 368 | ,,,,FALSE 369 | ,,,,FALSE 370 | ,,,,FALSE 371 | ,,,,FALSE 372 | ,,,,FALSE 373 | ,,,,FALSE 374 | ,,,,FALSE 375 | ,,,,FALSE 376 | ,,,,FALSE 377 | ,,,,FALSE 378 | ,,,,FALSE 379 | ,,,,FALSE 380 | ,,,,FALSE 381 | ,,,,FALSE 382 | ,,,,FALSE 383 | ,,,,FALSE 384 | ,,,,FALSE 385 | ,,,,FALSE 386 | ,,,,FALSE 387 | ,,,,FALSE 388 | ,,,,FALSE 389 | ,,,,FALSE 390 | ,,,,FALSE 391 | ,,,,FALSE 392 | ,,,,FALSE 393 | ,,,,FALSE 394 | ,,,,FALSE 395 | ,,,,FALSE 396 | ,,,,FALSE 397 | ,,,,FALSE 398 | ,,,,FALSE 399 | ,,,,FALSE 400 | ,,,,FALSE 401 | ,,,,FALSE 402 | ,,,,FALSE 403 | ,,,,FALSE 404 | ,,,,FALSE 405 | ,,,,FALSE 406 | ,,,,FALSE 407 | ,,,,FALSE 408 | ,,,,FALSE 409 | ,,,,FALSE 410 | ,,,,FALSE 411 | ,,,,FALSE 412 | ,,,,FALSE 413 | ,,,,FALSE 414 | ,,,,FALSE 415 | ,,,,FALSE 416 | ,,,,FALSE 417 | ,,,,FALSE 418 | ,,,,FALSE 419 | ,,,,FALSE 420 | ,,,,FALSE 421 | ,,,,FALSE 422 | ,,,,FALSE 423 | ,,,,FALSE 424 | ,,,,FALSE 425 | ,,,,FALSE 426 | ,,,,FALSE 427 | ,,,,FALSE 428 | ,,,,FALSE 429 | ,,,,FALSE 430 | ,,,,FALSE 431 | ,,,,FALSE 432 | ,,,,FALSE 433 | ,,,,FALSE 434 | ,,,,FALSE 435 | ,,,,FALSE 436 | ,,,,FALSE 437 | ,,,,FALSE 438 | ,,,,FALSE 439 | ,,,,FALSE 440 | ,,,,FALSE 441 | ,,,,FALSE 442 | ,,,,FALSE 443 | ,,,,FALSE 444 | ,,,,FALSE 445 | ,,,,FALSE 446 | ,,,,FALSE 447 | ,,,,FALSE 448 | ,,,,FALSE 449 | ,,,,FALSE 450 | ,,,,FALSE 451 | ,,,,FALSE 452 | ,,,,FALSE 453 | ,,,,FALSE 454 | ,,,,FALSE 455 | ,,,,FALSE 456 | ,,,,FALSE 457 | ,,,,FALSE 458 | ,,,,FALSE 459 | ,,,,FALSE 460 | ,,,,FALSE 461 | ,,,,FALSE 462 | ,,,,FALSE 463 | ,,,,FALSE 464 | ,,,,FALSE 465 | ,,,,FALSE 466 | ,,,,FALSE 467 | ,,,,FALSE 468 | ,,,,FALSE 469 | ,,,,FALSE 470 | ,,,,FALSE 471 | ,,,,FALSE 472 | ,,,,FALSE 473 | ,,,,FALSE 474 | ,,,,FALSE 475 | ,,,,FALSE 476 | ,,,,FALSE 477 | ,,,,FALSE 478 | ,,,,FALSE 479 | ,,,,FALSE 480 | ,,,,FALSE 481 | ,,,,FALSE 482 | ,,,,FALSE 483 | ,,,,FALSE 484 | ,,,,FALSE -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[체형].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 몸,성별,남성,male,FALSE 3 | 몸,성별,여성,female,FALSE 4 | 몸,성별,트랜스 남성,Trans_man,FALSE 5 | 몸,성별,트랜스 여성,Trans_woman,FALSE 6 | 몸,나이,소년,"boy, shota",FALSE 7 | 몸,나이,소녀,"girl, loli",FALSE 8 | 몸,나이,청년 남성,teenboy,FALSE 9 | 몸,나이,청년 여성,teengirl,FALSE 10 | 몸,나이,중년 남성,mature_male,FALSE 11 | 몸,나이,중년 여성,"mature_female, milf",FALSE 12 | 몸,길이,키가 작다,short,FALSE 13 | 몸,길이,키가 살짝 작다,littleshort,FALSE 14 | 몸,길이,키가 평범하다,averageheight,FALSE 15 | 몸,길이,키가 크다,tall,FALSE 16 | 몸,길이,키가 매우 크다,verytall,FALSE 17 | 몸,모양,상체,upper_body,FALSE 18 | 몸,모양,하체,lower_body,FALSE 19 | 몸,모양,몸이 말랐다,skinny,FALSE 20 | 몸,모양,몸이 날씬하다,slender,FALSE 21 | 몸,모양,몸이 매혹적이다,glamorous,FALSE 22 | 몸,모양,몸이 통통하다,busty,FALSE 23 | 몸,모양,몸이 살짝 통통하다,curvy,FALSE 24 | 몸,모양,몸이 뚱뚱하다,fat,FALSE 25 | 몸,모양,몸이 살짝 뚱뚱하다,chubby,FALSE 26 | 몸,모양,배가 말랐다,thin_stomach,FALSE 27 | 몸,모양,배가 가늘다,slender_stomach,FALSE 28 | 몸,모양,배가 통통하다,heavy_stomach,FALSE 29 | 몸,모양,배가 뚱뚱하다,chubby_stomach,FALSE 30 | 몸,모양,복근이 가늘다,skinny_abs,FALSE 31 | 몸,모양,복근이 두껍다,thick_abs,FALSE 32 | 몸,모양,복근이 통통하다,chubby_abs,FALSE 33 | 몸,모양,복근이 매끈하다,11_line_abs,FALSE 34 | 몸,모양,허리가 얇다,thinwaist,FALSE 35 | 몸,모양,허리가 가늘다,slenderwaist,FALSE 36 | 몸,모양,허리가 두껍다,thickwaist,FALSE 37 | 몸,모양,허리가 통통하다,chubbywaist,FALSE 38 | 몸,모양,엉덩이가 작다,small_ass,FALSE 39 | 몸,모양,엉덩이가 살짝 작다,small_medium_ass,FALSE 40 | 몸,모양,엉덩이가 평평하다,flat_ass,FALSE 41 | 몸,모양,엉덩이가 평범하다,medium_ass,FALSE 42 | 몸,모양,엉덩이가 크다,large_ass,FALSE 43 | 몸,모양,엉덩이가 매우 크다,huge_ass,FALSE 44 | 몸,모양,엉덩이가 엄청 크다,gigantic_ass,FALSE 45 | 몸,특징,몸이 하얗다,white_skin,FALSE 46 | 몸,특징,몸이 어둡다,dark_skin,FALSE 47 | 몸,특징,몸이 구릿빛이다,tanned_skin,FALSE 48 | 몸,특징,몸이 알몸이다,completely_nude,FALSE 49 | 몸,특징,땀을 흘린다,sweat,FALSE 50 | 몸,특징,땀을 흘린다,sweating_profusely,FALSE 51 | 몸,특징,땀을 뻘뻘 흘린다,steamsweat,FALSE 52 | 몸,특징,몸이 젖었다,wet,FALSE 53 | 몸,특징,몸이 푹 젖었다,"soggywet,soggysweat",FALSE 54 | 몸,특징,몸에 오일에 젖었다,oiledwet,FALSE 55 | 가슴,모양,가슴이 평평하다,flat_chest,FALSE 56 | 가슴,모양,가슴이 작다,small_breasts,FALSE 57 | 가슴,모양,가슴이 살짝 작다,small_medium_breasts,FALSE 58 | 가슴,모양,가슴이 평범하다,medium_breasts,FALSE 59 | 가슴,모양,가슴이 크다,large_breasts,FALSE 60 | 가슴,모양,가슴이 매우 크다,huge_breasts,FALSE 61 | 가슴,모양,가슴이 엄청 크다,gigantic_breasts,FALSE 62 | 가슴,모양,유륜이 작다,small_areolae,FALSE 63 | 가슴,모양,유륜이 크다,large_areolae,FALSE 64 | 가슴,모양,젖꼭지가 작다,small_nipples,FALSE 65 | 가슴,모양,젖꼭지가 길다,long_nipples,FALSE 66 | 가슴,특징,가슴이 늘어졌다,sagging_breasts,FALSE 67 | 가슴,특징,가슴이 풍선같다,veiny_breasts,FALSE 68 | 가슴,특징,가슴이 뾰족하다,pointy_breasts,FALSE 69 | 가슴,특징,가슴이 비대칭이다,asymmetrical_breasts,FALSE 70 | 가슴,특징,유륜이 밝다,light_areolae,FALSE 71 | 가슴,특징,유륜이 어둡다,dark_areolae,FALSE 72 | 가슴,특징,젖꼭지가 밝다,light_nipples,FALSE 73 | 가슴,특징,젖꼭지가 어둡다,dark_nipples,FALSE 74 | 팔,모양,팔이 짧다,short_arm,FALSE 75 | 팔,모양,팔이 길다,long_arm,FALSE 76 | 팔,모양,팔이 가늘다,slender_arm,FALSE 77 | 팔,모양,팔이 두껍다,heavy_arm,FALSE 78 | 팔,모양,팔뚝이 얇다,thin_forearm,FALSE 79 | 팔,모양,팔뚝이 가늘다,slender_forearm,FALSE 80 | 팔,모양,팔뚝이 두껍다,heavy_arm,FALSE 81 | 팔,모양,팔뚝이 통통하다,chubby_forearm,FALSE 82 | 팔,모양,팔꿈치가 둥글다,round_elbow,FALSE 83 | 팔,모양,팔꿈치가 뭉툭하다,blunt_elbow,FALSE 84 | 팔,모양,팔꿈치가 뾰족하다,pointed_elbow,FALSE 85 | 팔,모양,겨드랑이가 밝다,light_armpit,FALSE 86 | 팔,모양,겨드랑이가 어둡다,dark_armpit,FALSE 87 | 손,모양,손이 짧다,short_hand,FALSE 88 | 손,모양,손이 길다,long_hand,FALSE 89 | 손,모양,손이 가늘다,slender_hand,FALSE 90 | 손,모양,손이 두껍다,heavy_hand,FALSE 91 | 손,모양,손목이 얇다,thin_wrist,FALSE 92 | 손,모양,손목이 가늘다,slender_wrist,FALSE 93 | 손,모양,손목이 두껍다,thick_wrist,FALSE 94 | 손,모양,손가락이 짧다,short_fingers,FALSE 95 | 손,모양,손가락이 길다,long_fingers,FALSE 96 | 손,모양,손가락이 가늘다,slender_fingers,FALSE 97 | 손,모양,손가락이 두껍다,thick_fingers,FALSE 98 | 손,모양,손톱이 짧다,short_nail,FALSE 99 | 손,모양,손톱이 길다,long_nail,FALSE 100 | 다리,모양,다리가 짧다,short_leg,FALSE 101 | 다리,모양,다리가 길다,long_leg,FALSE 102 | 다리,모양,다리가 가늘다,slender_leg,FALSE 103 | 다리,모양,다리가 두껍다,thick_leg,FALSE 104 | 다리,모양,허벅지가 얇다,thin_thighs,FALSE 105 | 다리,모양,허벅지가 가늘다,slender_thighs,FALSE 106 | 다리,모양,허벅지가 두껍다,thick_thigh,FALSE 107 | 다리,모양,허벅지가 통통하다,chubby_thighs,FALSE 108 | 다리,모양,종아리가 얇다,thin_calf,FALSE 109 | 다리,모양,종아리가 가늘다,slender_calf,FALSE 110 | 다리,모양,종아리가 두껍다,thick_calf,FALSE 111 | 다리,모양,종아리가 통통하다,chubby_calf,FALSE 112 | 발,모양,발이 짧다,short_foot,FALSE 113 | 발,모양,발이 길다,long_foot,FALSE 114 | 발,모양,발이 가늘다_,slender_foot,FALSE 115 | 발,모양,발이 두껍다,thick_foot,FALSE 116 | 발,모양,발가락이 짧다,short_toe,FALSE 117 | 발,모양,발가락이 길다,long_toe,FALSE 118 | 발,모양,발톱이 짧다,short_toenail,FALSE 119 | 발,모양,발톱이 길다,long_toenail,FALSE 120 | 발,모양,발목이 얇다,thin_ankle,FALSE 121 | 발,모양,발목이 가늘다,slender_ankle,FALSE 122 | 발,모양,발목이 두껍다,thick_ankle,FALSE 123 | 날개,모양,날개가 머리에 있다,head_wings,FALSE 124 | 날개,모양,날개가 머리카락에 있다,hair_wings,FALSE 125 | 날개,모양,날개가 다리에 있다,leg_wings,FALSE 126 | 날개,모양,날개가 등에 있다,low_wings,FALSE 127 | 날개,모양,날개가 발목에 있다,ankle_wings,FALSE 128 | 날개,모양,날개가 작다,mini_wings,FALSE 129 | 날개,모양,날개가 크다,large_wings,FALSE 130 | 날개,모양,날개가 한쪽만 있다,wingle_wing,FALSE 131 | 날개,모양,날개가 매우 많다,multiplewings,FALSE 132 | 날개,종류,가짜 날개,Fake_wings,FALSE 133 | 날개,종류,금속 날개,metal_wings,FALSE 134 | 날개,종류,기계 날개,Mechanical_wings,FALSE 135 | 날개,종류,식물 날개,Plant_wings,FALSE 136 | 날개,종류,얇은 천 날개,light_hawk_wings,FALSE 137 | 날개,종류,인공 날개,artificial_wings,FALSE 138 | 날개,종류,깃털 날개,feathered_wings,FALSE 139 | 날개,종류,곤충 날개,insect_wings,FALSE 140 | 날개,종류,나방 날개,moth_wings,FALSE 141 | 날개,종류,나비 날개,Butterfly_wings,FALSE 142 | 날개,종류,무당벌레 날개,ladybug_wings,FALSE 143 | 날개,종류,박쥐 날개,Bat_wings,FALSE 144 | 날개,종류,천사 날개,Angel_wings,FALSE 145 | 날개,종류,악마 날개,Demon_wings,FALSE 146 | 날개,종류,요정 날개,Fairy_wings,FALSE 147 | 날개,종류,용의 날개,Dragon_wings,FALSE 148 | 날개,종류,불꽃 날개,Fiery_wings,FALSE 149 | 날개,종류,액체 날개,liquid_wings,FALSE 150 | 날개,종류,얼음 날개,Ice_wings,FALSE 151 | 날개,종류,에너지 날개,energy_wings,FALSE 152 | 날개,종류,하트 모양 날개,Heart_wings,FALSE 153 | 꼬리,모양,꼬리가 짧다,short_tail,FALSE 154 | 꼬리,모양,꼬리가 길다,long_tail,FALSE 155 | 꼬리,모양,꼬리가 가늘다,slender_tail,FALSE 156 | 꼬리,모양,꼬리가 두껍다,thick_tail,FALSE 157 | 꼬리,종류,강아지 꼬리,dog_tail,FALSE 158 | 꼬리,종류,고릴라 꼬리,gorilla_tail,FALSE 159 | 꼬리,종류,고양이 꼬리,cat_tail,FALSE 160 | 꼬리,종류,곰 꼬리,bear_tail,FALSE 161 | 꼬리,종류,늑대 꼬리,wolf_tail,FALSE 162 | 꼬리,종류,다람쥐 꼬리,squirrel_tail,FALSE 163 | 꼬리,종류,돼지 꼬리,pig_tail,FALSE 164 | 꼬리,종류,말 꼬리,horse_tail,FALSE 165 | 꼬리,종류,사슴 꼬리,deer_tail,FALSE 166 | 꼬리,종류,사자 꼬리,lion_tail,FALSE 167 | 꼬리,종류,소 꼬리,cow_tail,FALSE 168 | 꼬리,종류,양 꼬리,sheep_tail,FALSE 169 | 꼬리,종류,여우 꼬리,fox_tail,FALSE 170 | 꼬리,종류,원숭이 꼬리,monkey_tail,FALSE 171 | 꼬리,종류,족제비 꼬리,ermine_tail,FALSE 172 | 꼬리,종류,쥐 꼬리,mouse_tail,FALSE 173 | 꼬리,종류,토끼 꼬리,rabbit_tail,FALSE 174 | 꼬리,종류,표범 꼬리,leopard_tail,FALSE 175 | 꼬리,종류,호랑이 꼬리,tiger_tail,FALSE 176 | ,,,,FALSE 177 | ,,,,FALSE 178 | ,,,,FALSE 179 | ,,,,FALSE 180 | ,,,,FALSE 181 | ,,,,FALSE 182 | ,,,,FALSE 183 | ,,,,FALSE 184 | ,,,,FALSE 185 | ,,,,FALSE 186 | ,,,,FALSE 187 | ,,,,FALSE 188 | ,,,,FALSE 189 | ,,,,FALSE 190 | ,,,,FALSE 191 | ,,,,FALSE 192 | ,,,,FALSE 193 | ,,,,FALSE 194 | ,,,,FALSE 195 | ,,,,FALSE 196 | ,,,,FALSE 197 | ,,,,FALSE 198 | ,,,,FALSE 199 | ,,,,FALSE 200 | ,,,,FALSE 201 | ,,,,FALSE 202 | ,,,,FALSE 203 | ,,,,FALSE 204 | ,,,,FALSE 205 | ,,,,FALSE 206 | ,,,,FALSE 207 | ,,,,FALSE 208 | ,,,,FALSE 209 | ,,,,FALSE 210 | ,,,,FALSE 211 | ,,,,FALSE 212 | ,,,,FALSE 213 | ,,,,FALSE 214 | ,,,,FALSE 215 | ,,,,FALSE 216 | ,,,,FALSE 217 | ,,,,FALSE 218 | ,,,,FALSE 219 | ,,,,FALSE 220 | ,,,,FALSE 221 | ,,,,FALSE 222 | ,,,,FALSE 223 | ,,,,FALSE 224 | ,,,,FALSE 225 | ,,,,FALSE 226 | ,,,,FALSE 227 | ,,,,FALSE 228 | ,,,,FALSE 229 | ,,,,FALSE 230 | ,,,,FALSE 231 | ,,,,FALSE 232 | ,,,,FALSE 233 | ,,,,FALSE 234 | ,,,,FALSE 235 | ,,,,FALSE 236 | ,,,,FALSE 237 | ,,,,FALSE 238 | ,,,,FALSE 239 | ,,,,FALSE 240 | ,,,,FALSE 241 | ,,,,FALSE 242 | ,,,,FALSE 243 | ,,,,FALSE 244 | ,,,,FALSE 245 | ,,,,FALSE 246 | ,,,,FALSE 247 | ,,,,FALSE 248 | ,,,,FALSE 249 | ,,,,FALSE 250 | ,,,,FALSE 251 | ,,,,FALSE 252 | ,,,,FALSE 253 | ,,,,FALSE 254 | ,,,,FALSE 255 | ,,,,FALSE 256 | ,,,,FALSE 257 | ,,,,FALSE 258 | ,,,,FALSE 259 | ,,,,FALSE 260 | ,,,,FALSE 261 | ,,,,FALSE 262 | ,,,,FALSE 263 | ,,,,FALSE 264 | ,,,,FALSE 265 | ,,,,FALSE 266 | ,,,,FALSE 267 | ,,,,FALSE 268 | ,,,,FALSE 269 | ,,,,FALSE 270 | ,,,,FALSE 271 | ,,,,FALSE 272 | ,,,,FALSE 273 | ,,,,FALSE 274 | ,,,,FALSE 275 | ,,,,FALSE 276 | ,,,,FALSE 277 | ,,,,FALSE 278 | ,,,,FALSE 279 | ,,,,FALSE 280 | ,,,,FALSE 281 | ,,,,FALSE 282 | ,,,,FALSE 283 | ,,,,FALSE 284 | ,,,,FALSE 285 | ,,,,FALSE 286 | ,,,,FALSE 287 | ,,,,FALSE 288 | ,,,,FALSE 289 | ,,,,FALSE 290 | ,,,,FALSE 291 | ,,,,FALSE 292 | ,,,,FALSE 293 | ,,,,FALSE 294 | ,,,,FALSE 295 | ,,,,FALSE 296 | ,,,,FALSE 297 | ,,,,FALSE 298 | ,,,,FALSE 299 | ,,,,FALSE 300 | ,,,,FALSE 301 | ,,,,FALSE 302 | ,,,,FALSE 303 | ,,,,FALSE 304 | ,,,,FALSE 305 | ,,,,FALSE 306 | ,,,,FALSE 307 | ,,,,FALSE 308 | ,,,,FALSE 309 | ,,,,FALSE 310 | ,,,,FALSE 311 | ,,,,FALSE 312 | ,,,,FALSE 313 | ,,,,FALSE 314 | ,,,,FALSE 315 | ,,,,FALSE 316 | ,,,,FALSE 317 | ,,,,FALSE 318 | ,,,,FALSE 319 | ,,,,FALSE 320 | ,,,,FALSE 321 | ,,,,FALSE 322 | ,,,,FALSE 323 | ,,,,FALSE 324 | ,,,,FALSE 325 | ,,,,FALSE 326 | ,,,,FALSE 327 | ,,,,FALSE 328 | ,,,,FALSE 329 | ,,,,FALSE 330 | ,,,,FALSE 331 | ,,,,FALSE 332 | ,,,,FALSE 333 | ,,,,FALSE 334 | ,,,,FALSE 335 | ,,,,FALSE 336 | ,,,,FALSE 337 | ,,,,FALSE 338 | ,,,,FALSE 339 | ,,,,FALSE 340 | ,,,,FALSE 341 | ,,,,FALSE 342 | ,,,,FALSE 343 | ,,,,FALSE 344 | ,,,,FALSE 345 | ,,,,FALSE 346 | ,,,,FALSE 347 | ,,,,FALSE 348 | ,,,,FALSE 349 | ,,,,FALSE 350 | ,,,,FALSE 351 | ,,,,FALSE 352 | ,,,,FALSE 353 | ,,,,FALSE 354 | ,,,,FALSE 355 | ,,,,FALSE 356 | ,,,,FALSE 357 | ,,,,FALSE 358 | ,,,,FALSE 359 | ,,,,FALSE 360 | ,,,,FALSE 361 | ,,,,FALSE 362 | ,,,,FALSE 363 | ,,,,FALSE 364 | ,,,,FALSE 365 | ,,,,FALSE 366 | ,,,,FALSE 367 | ,,,,FALSE 368 | ,,,,FALSE 369 | ,,,,FALSE 370 | ,,,,FALSE 371 | ,,,,FALSE 372 | ,,,,FALSE 373 | ,,,,FALSE 374 | ,,,,FALSE 375 | ,,,,FALSE 376 | ,,,,FALSE 377 | ,,,,FALSE 378 | ,,,,FALSE 379 | ,,,,FALSE 380 | ,,,,FALSE 381 | ,,,,FALSE 382 | ,,,,FALSE 383 | ,,,,FALSE 384 | ,,,,FALSE 385 | ,,,,FALSE 386 | ,,,,FALSE 387 | ,,,,FALSE 388 | ,,,,FALSE 389 | ,,,,FALSE 390 | ,,,,FALSE 391 | ,,,,FALSE 392 | ,,,,FALSE 393 | ,,,,FALSE 394 | ,,,,FALSE 395 | ,,,,FALSE 396 | ,,,,FALSE 397 | ,,,,FALSE 398 | ,,,,FALSE 399 | ,,,,FALSE 400 | ,,,,FALSE 401 | ,,,,FALSE 402 | ,,,,FALSE 403 | ,,,,FALSE 404 | ,,,,FALSE 405 | ,,,,FALSE 406 | ,,,,FALSE 407 | ,,,,FALSE 408 | ,,,,FALSE 409 | ,,,,FALSE 410 | ,,,,FALSE 411 | ,,,,FALSE 412 | ,,,,FALSE 413 | ,,,,FALSE 414 | ,,,,FALSE 415 | ,,,,FALSE 416 | ,,,,FALSE 417 | ,,,,FALSE 418 | ,,,,FALSE 419 | ,,,,FALSE 420 | ,,,,FALSE 421 | ,,,,FALSE 422 | ,,,,FALSE 423 | ,,,,FALSE 424 | ,,,,FALSE 425 | ,,,,FALSE 426 | ,,,,FALSE 427 | ,,,,FALSE 428 | ,,,,FALSE 429 | ,,,,FALSE 430 | ,,,,FALSE 431 | ,,,,FALSE 432 | ,,,,FALSE 433 | ,,,,FALSE 434 | ,,,,FALSE 435 | ,,,,FALSE 436 | ,,,,FALSE 437 | ,,,,FALSE 438 | ,,,,FALSE 439 | ,,,,FALSE 440 | ,,,,FALSE 441 | ,,,,FALSE 442 | ,,,,FALSE 443 | ,,,,FALSE 444 | ,,,,FALSE 445 | ,,,,FALSE 446 | ,,,,FALSE 447 | ,,,,FALSE 448 | ,,,,FALSE 449 | ,,,,FALSE 450 | ,,,,FALSE 451 | ,,,,FALSE 452 | ,,,,FALSE 453 | ,,,,FALSE 454 | ,,,,FALSE 455 | ,,,,FALSE 456 | ,,,,FALSE 457 | ,,,,FALSE 458 | ,,,,FALSE 459 | ,,,,FALSE 460 | ,,,,FALSE 461 | ,,,,FALSE 462 | ,,,,FALSE 463 | ,,,,FALSE 464 | ,,,,FALSE 465 | ,,,,FALSE 466 | ,,,,FALSE 467 | ,,,,FALSE 468 | ,,,,FALSE 469 | ,,,,FALSE 470 | ,,,,FALSE 471 | ,,,,FALSE 472 | ,,,,FALSE 473 | ,,,,FALSE 474 | ,,,,FALSE 475 | ,,,,FALSE 476 | ,,,,FALSE 477 | ,,,,FALSE 478 | ,,,,FALSE 479 | ,,,,FALSE 480 | ,,,,FALSE 481 | ,,,,FALSE 482 | ,,,,FALSE 483 | ,,,,FALSE 484 | ,,,,FALSE 485 | ,,,,FALSE 486 | ,,,,FALSE 487 | ,,,,FALSE 488 | ,,,,FALSE 489 | ,,,,FALSE 490 | ,,,,FALSE 491 | ,,,,FALSE 492 | ,,,,FALSE 493 | ,,,,FALSE 494 | ,,,,FALSE 495 | ,,,,FALSE 496 | ,,,,FALSE 497 | ,,,,FALSE 498 | ,,,,FALSE 499 | ,,,,FALSE 500 | ,,,,FALSE 501 | ,,,,FALSE 502 | ,,,,FALSE 503 | ,,,,FALSE 504 | ,,,,FALSE 505 | ,,,,FALSE 506 | ,,,,FALSE -------------------------------------------------------------------------------- /data/csv/NovelAI - 태그[행동].csv: -------------------------------------------------------------------------------- 1 | 분류1,분류2,이름,태그목록,NSFW 2 | 동사,동사 ㄱ,누구를 껴안다,cuddling,FALSE 3 | 동사,동사 ㄱ,누구의 귀를 청소하다,earcleaning,FALSE 4 | 동사,동사 ㄱ,누군가 감동하다,touching,FALSE 5 | 동사,동사 ㄱ,누군가 곧 죽다,dying,FALSE 6 | 동사,동사 ㄱ,누군가 구토하다,vomiting,FALSE 7 | 동사,동사 ㄱ,누군가 귓가에 속삭이다,whispering,FALSE 8 | 동사,동사 ㄱ,누군가 균형잡다,balancing,FALSE 9 | 동사,동사 ㄱ,누군가 기도하다,praying,FALSE 10 | 동사,동사 ㄱ,누군가 기저귀를 갈다,diaperchanging,FALSE 11 | 동사,동사 ㄱ,누군가 꽃에 물을 주다,gardening,FALSE 12 | 동사,동사 ㄱ,누군가 꿈꾸다,dreaming,FALSE 13 | 동사,동사 ㄴ,누군가 날개를 펄럭이다,flapping,FALSE 14 | 동사,동사 ㄴ,누군가 내려오다,landing,FALSE 15 | 동사,동사 ㄴ,누군가 네 발로 걷다,crawling,FALSE 16 | 동사,동사 ㄴ,누군가 노래하다,singing,FALSE 17 | 동사,동사 ㄴ,누군가 노크하다,knocking,FALSE 18 | 동사,동사 ㄴ,누군가 놀다,playing,FALSE 19 | 동사,동사 ㄴ,누군가 눈을 깜빡이다,blinking,FALSE 20 | 동사,동사 ㄷ,누구를 도발하다,trolling,FALSE 21 | 동사,동사 ㄷ,누구를 뒤에서 껴안다,hugfrombehind,FALSE 22 | 동사,동사 ㄷ,누구를 따라하다,imitating,FALSE 23 | 동사,동사 ㄷ,누구를 때리다,hitting,FALSE 24 | 동사,동사 ㄷ,누군가 담배를 피다,smoking,FALSE 25 | 동사,동사 ㄷ,누군가 대기하다,waiting,FALSE 26 | 동사,동사 ㄷ,누군가 도망치다,fleeing,FALSE 27 | 동사,동사 ㄷ,누군가 도주하다,running,FALSE 28 | 동사,동사 ㄷ,누군가 등반하다,climbing,FALSE 29 | 동사,동사 ㄷ,누군가 땅을 파다,digging,FALSE 30 | 동사,동사 ㄹ,누군가 로프를 타고 내려온다,rappelling,FALSE 31 | 동사,동사 ㅁ,누구를 말리다,blocking,FALSE 32 | 동사,동사 ㅁ,누구를 매달다,catching,FALSE 33 | 동사,동사 ㅁ,누구의 마음을 읽다,mindreading,FALSE 34 | 동사,동사 ㅁ,누구의 무릎을 껴안다,sittingonlap,FALSE 35 | 동사,동사 ㅁ,누군가 매다 끈을 풀다,untying,FALSE 36 | 동사,동사 ㅁ,누군가 매다 목도리를 매다,scarftying,FALSE 37 | 동사,동사 ㅁ,누군가 매다 장식을 매다,tying,FALSE 38 | 동사,동사 ㅁ,누군가 매우 저항하다,resisting,FALSE 39 | 동사,동사 ㅁ,누군가 모유를 수유하다,breastfeeding,FALSE 40 | 동사,동사 ㅁ,누군가 목욕하다,bathing,FALSE 41 | 동사,동사 ㅁ,누군가 목욕하며 비누를 쓰다,soap,FALSE 42 | 동사,동사 ㅁ,누군가 목욕하며 거품을 쓰다,shampoo,FALSE 43 | 동사,동사 ㅁ,누군가 목욕을 같이 한다,mixedbathing,FALSE 44 | 동사,동사 ㅁ,누군가 목욕을 함께 한다,sharedbathing,FALSE 45 | 동사,동사 ㅁ,누군가 옷을 입고 목욕하다,clothedbath,FALSE 46 | 동사,동사 ㅁ,누군가 목을 조르다,strangling,FALSE 47 | 동사,동사 ㅁ,누군가 몸을 떨다,trembling,FALSE 48 | 동사,동사 ㅁ,누군가 몸을 말리다,drying,FALSE 49 | 동사,동사 ㅁ,누군가 몸을 웅크리다,cowering,FALSE 50 | 동사,동사 ㅁ,누군가 무릎꿇고 인사하다,bowing,FALSE 51 | 동사,동사 ㅁ,누군가 무릎을 꿇다,kneeing,FALSE 52 | 동사,동사 ㅁ,누군가 문자 메시지를 보내다,textmessaging,FALSE 53 | 동사,동사 ㅁ,누군가 물 속에 다이빙하다,diving=(differentfromdive),FALSE 54 | 동사,동사 ㅁ,누군가 물을 넘어가다,wading,FALSE 55 | 동사,동사 ㅁ,누군가 물을 높게 잔에 붓다,decantering,FALSE 56 | 동사,동사 ㅁ,누군가 물을 분출하다,squirtingliquid,FALSE 57 | 동사,동사 ㅁ,누군가 물을 뿌리다,watering,FALSE 58 | 동사,동사 ㅁ,누군가 물을 잔에 붓다,pouring,FALSE 59 | 동사,동사 ㅁ,누군가 물이 몸에 튀다,splashing,FALSE 60 | 동사,동사 ㅁ,누군가 미끄러지다,slipping,FALSE 61 | 동사,동사 ㅅ,누구와 실수로 부딪힌다,bumping,FALSE 62 | 동사,동사 ㅅ,누군가 사과하다,apologizing,FALSE 63 | 동사,동사 ㅅ,누군가 사람을 쌓다,stacking,FALSE 64 | 동사,동사 ㅅ,누군가 소리를 엿듣다,eavesdropping,FALSE 65 | 동사,동사 ㅅ,누군가 소리를 크게 낸다,screaming,FALSE 66 | 동사,동사 ㅅ,누군가 소리를 크게 외치다,shouting,FALSE 67 | 동사,동사 ㅅ,누군가 술을 마시다,drinking,FALSE 68 | 동사,동사 ㅅ,누군가 숨죽여 웃다,giggling,FALSE 69 | 동사,동사 ㅅ,누군가 슬라이딩하다,sliding,FALSE 70 | 동사,동사 ㅅ,누군가 신음하다,moaning,FALSE 71 | 동사,동사 ㅅ,누군가 싸우다,fighting,FALSE 72 | 동사,동사 ㅅ,누군가 결투하다,duel,FALSE 73 | 동사,동사 ㅅ,누군가 베개로 싸운다,pillow_fight,FALSE 74 | 동사,동사 ㅅ,누군가 눈으로 싸운다,snowball_fight,FALSE 75 | 동사,동사 ㅇ,누구를 위로하다,comforting,FALSE 76 | 동사,동사 ㅇ,누구를 위협하다,roaring,FALSE 77 | 동사,동사 ㅇ,누구를 유혹하다,flirting,FALSE 78 | 동사,동사 ㅇ,누구를 응원하다,cheering,FALSE 79 | 동사,동사 ㅇ,누군가 안절부절하다,_fidgeting,FALSE 80 | 동사,동사 ㅇ,누군가 어리광을 부리다,flailing,FALSE 81 | 동사,동사 ㅇ,누군가 얼굴을 찡그리다,sulking,FALSE 82 | 동사,동사 ㅇ,누군가 엉덩이를 때리다,spanking,FALSE 83 | 동사,동사 ㅇ,누군가 옷을 강제로 입히다,forceddressing,FALSE 84 | 동사,동사 ㅇ,누군가 옷을 벗고 있다,undressing,FALSE 85 | 동사,동사 ㅇ,누군가 옷을 입다,dressing,FALSE 86 | 동사,동사 ㅇ,누군가 옷을 짜내다,wringing,FALSE 87 | 동사,동사 ㅇ,누군가 운전하다,driving,FALSE 88 | 동사,동사 ㅇ,누군가 웃다,laughing,FALSE 89 | 동사,동사 ㅇ,누군가 음식(빵)을 만들다,baking,FALSE 90 | 동사,동사 ㅇ,누군가 음식(초콜렛)을 만들다,chocolatemaking,FALSE 91 | 동사,동사 ㅇ,누군가 음식을 데우다,roasting,FALSE 92 | 동사,동사 ㅇ,누군가 음식을 요리하다,cooking,FALSE 93 | 동사,동사 ㅇ,누군가 음식을 휘젓다,stirring,FALSE 94 | 동사,동사 ㅇ,누군가 일광욕하다,sunbathing,FALSE 95 | 동사,동사 ㅇ,누군가 일하고 있다,working,FALSE 96 | 동사,동사 ㅈ,누구를 조용히 시키다,shushing,FALSE 97 | 동사,동사 ㅈ,누구를 쫓다,chasing,FALSE 98 | 동사,동사 ㅈ,누군가 재채기하다,sneezing,FALSE 99 | 동사,동사 ㅈ,누군가 점프하다,jumping,FALSE 100 | 동사,동사 ㅈ,누군가 강하게 점프하다,pouncing,FALSE 101 | 동사,동사 ㅈ,누군가 약하게 점프하다,hopping,FALSE 102 | 동사,동사 ㅈ,누군가 주위를 둘러본다,searching,FALSE 103 | 동사,동사 ㅈ,누군가 지퍼를 위로 당기다,zipping,FALSE 104 | 동사,동사 ㅈ,누군가 지퍼를 풀고 있다,unzipping,FALSE 105 | 동사,동사 ㅈ,누군가 집중하다,concentrating,FALSE 106 | 동사,동사 ㅊ,누구를 채찍찔하다,whipping,FALSE 107 | 동사,동사 ㅊ,누군가 착륙 준비하다,launching,FALSE 108 | 동사,동사 ㅊ,누군가 책을 읽다,reading,FALSE 109 | 동사,동사 ㅊ,누군가 총을 쏘다,firing,FALSE 110 | 동사,동사 ㅊ,누군가 총을 쏘자 빛나다,muzzleflash,FALSE 111 | 동사,동사 ㅊ,누군가 총을 재장전하다,reloading,FALSE 112 | 동사,동사 ㅊ,누군가 춤추다,dancing,FALSE 113 | 동사,동사 ㅊ,누군가 춤추며 봉을 타다,poledancing,FALSE 114 | 동사,동사 ㅊ,누군가 침을 뱉다,spitting,FALSE 115 | 동사,동사 ㅋ,누군가 코를 파다,nosepicking,FALSE 116 | 동사,동사 ㅌ,누군가 턱을 쓰다듬다,strokingownchin,FALSE 117 | 동사,동사 ㅍ,누구를 팔꿈치로 때리다,elbowing,FALSE 118 | 동사,동사 ㅍ,누군가 팔을 흔들다 인사하다,waving,FALSE 119 | 동사,동사 ㅍ,누군가 펜을 회전하다,penspinning,FALSE 120 | 동사,동사 ㅎ,누군가 하강하다,reaching,FALSE 121 | 동사,동사 ㅎ,누군가 휘파람을 불다,whistling,FALSE 122 | 동사,동사 ㅎ,누군가 휴식하다,resting,FALSE 123 | 동사,동사 ㅎ,누군가 흙먼지를 쓸다,sweeping,FALSE 124 | 동사,동사 ㅎ,누군가를 쓰다듬다,peeing,FALSE 125 | 동사,동사 ㅎ,누군가에게 음식을 권하다,feeding,FALSE 126 | 동명사,동명사 ㄱ,무엇이 가라앉다,sinking,FALSE 127 | 동명사,동명사 ㄱ,무엇이 공중에 떠 있다,floating,FALSE 128 | 동명사,동명사 ㄱ,무엇이 공중을 날다,flying,FALSE 129 | 동명사,동명사 ㄱ,무엇을 가르치다,teaching,FALSE 130 | 동명사,동명사 ㄱ,무엇을 개봉하다,opening,FALSE 131 | 동명사,동명사 ㄱ,무엇을 건너뛰다,skipping,FALSE 132 | 동명사,동명사 ㄱ,무엇을 고치다,repairing,FALSE 133 | 동명사,동명사 ㄱ,무엇을 공부하다,studying,FALSE 134 | 동명사,동명사 ㄱ,무엇을 광택내다,polishing,FALSE 135 | 동명사,동명사 ㄱ,무엇을 구걸하다,begging,FALSE 136 | 동명사,동명사 ㄱ,무엇을 굴리며 이동하다,rolling,FALSE 137 | 동명사,동명사 ㄱ,무엇을 그리다,sketching,FALSE 138 | 동명사,동명사 ㄱ,무엇을 끌고 가다,dragging,FALSE 139 | 동명사,동명사 ㄴ,무엇을 녹이다,melting,FALSE 140 | 동명사,동명사 ㄴ,무엇을 눌러서 터뜨리다,crushing,FALSE 141 | 동명사,동명사 ㄷ,무엇이 떨어지는 걸 잡다,carrying,FALSE 142 | 동명사,동명사 ㄷ,무엇을 당기다,pulling,FALSE 143 | 동명사,동명사 ㄷ,무엇을 던지다,pitching,FALSE 144 | 동명사,동명사 ㄷ,무엇을 던지다,throwing,FALSE 145 | 동명사,동명사 ㄷ,무엇을 들다,holding,FALSE 146 | 동명사,동명사 ㄷ,무엇을 때리다,punching,FALSE 147 | 동명사,동명사 ㄷ,무엇을 때리다 빠르게,rapidpunches,FALSE 148 | 동명사,동명사 ㄷ,무엇을 떨어뜨리다,dropping,FALSE 149 | 동명사,동명사 ㅁ,무엇을 모아 담다,cupping,FALSE 150 | 동명사,동명사 ㅁ,무엇을 무기로 조준하다,pointing_weapon,FALSE 151 | 동명사,동명사 ㅂ,무엇이 부화하다,hatching,FALSE 152 | 동명사,동명사 ㅂ,무엇이 빛난다,glowing,FALSE 153 | 동명사,동명사 ㅂ,무엇을 벗기다,unsheathing,FALSE 154 | 동명사,동명사 ㅂ,무엇을 보호하다,protecting,FALSE 155 | 동명사,동명사 ㅂ,무엇을 빨다,sucking,FALSE 156 | 동명사,동명사 ㅅ,무엇을 사다,shopping,FALSE 157 | 동명사,동명사 ㅅ,무엇을 상상하다,imagining,FALSE 158 | 동명사,동명사 ㅅ,무엇을 상처 입힌다,scratching,FALSE 159 | 동명사,동명사 ㅅ,무엇을 생각하다,thinking,FALSE 160 | 동명사,동명사 ㅅ,무엇을 선물하다,giving,FALSE 161 | 동명사,동명사 ㅅ,무엇을 설거지하다,dishwashing,FALSE 162 | 동명사,동명사 ㅅ,무엇을 소환하다,summoning,FALSE 163 | 동명사,동명사 ㅅ,무엇을 숨기다,hiding,FALSE 164 | 동명사,동명사 ㅅ,무엇을 쓰다듬다,patting,FALSE 165 | 동명사,동명사 ㅇ,무엇이 요동친다,bouncing,FALSE 166 | 동명사,동명사 ㅇ,무엇이 요동친다,bouncingbreasts,FALSE 167 | 동명사,동명사 ㅇ,무엇이 회전하다,spinning,FALSE 168 | 동명사,동명사 ㅇ,무엇을 응시하다,staring,FALSE 169 | 동명사,동명사 ㅈ,무엇을 자르다,cutting,FALSE 170 | 동명사,동명사 ㅈ,무엇을 저글링하다,juggling,FALSE 171 | 동명사,동명사 ㅈ,무엇을 제모하다,shaving,FALSE 172 | 동명사,동명사 ㅈ,무엇을 조준하다,aiming,FALSE 173 | 동명사,동명사 ㅈ,무엇을 찌르다,poking,FALSE 174 | 동명사,동명사 ㅈ,무엇을 찢다,ripping,FALSE 175 | 동명사,동명사 ㅊ,무엇을 청소하다,cleaning,FALSE 176 | 동명사,동명사 ㅊ,무엇을 총구로 조준하다,at_gunpoint,FALSE 177 | 동명사,동명사 ㅊ,무엇을 치유하다,healing,FALSE 178 | 동명사,동명사 ㅌ,무엇을 타다,riding,FALSE 179 | 동명사,동명사 ㅌ,무엇을 테이프로 감다,tapping,FALSE 180 | 동명사,동명사 ㅍ,무엇을 파괴하다,breaking,FALSE 181 | 동명사,동명사 ㅎ,무엇을 한쪽으로 밀다,pushing,FALSE 182 | 동명사,동명사 ㅎ,무엇을 회피하다,dodging,FALSE 183 | 동명사,동명사 ㅎ,무엇을 휘둘러 베다,slashing,FALSE 184 | 동명사,동명사 ㅎ,무엇을 휘젓다,whisking,FALSE 185 | 동명사,동명사 ㅎ,무엇을 흔들다,shaking,FALSE 186 | 동명사,동명사 ㅎ,무엇을 흘리다,spilling,FALSE 187 | ,,,,FALSE 188 | ,,,,FALSE 189 | ,,,,FALSE 190 | ,,,,FALSE 191 | ,,,,FALSE 192 | ,,,,FALSE 193 | ,,,,FALSE 194 | ,,,,FALSE 195 | ,,,,FALSE 196 | ,,,,FALSE 197 | ,,,,FALSE 198 | ,,,,FALSE 199 | ,,,,FALSE 200 | ,,,,FALSE 201 | ,,,,FALSE 202 | ,,,,FALSE 203 | ,,,,FALSE 204 | ,,,,FALSE 205 | ,,,,FALSE 206 | ,,,,FALSE 207 | ,,,,FALSE 208 | ,,,,FALSE 209 | ,,,,FALSE 210 | ,,,,FALSE 211 | ,,,,FALSE 212 | ,,,,FALSE 213 | ,,,,FALSE 214 | ,,,,FALSE 215 | ,,,,FALSE 216 | ,,,,FALSE 217 | ,,,,FALSE 218 | ,,,,FALSE 219 | ,,,,FALSE 220 | ,,,,FALSE 221 | ,,,,FALSE 222 | ,,,,FALSE 223 | ,,,,FALSE 224 | ,,,,FALSE 225 | ,,,,FALSE 226 | ,,,,FALSE 227 | ,,,,FALSE 228 | ,,,,FALSE 229 | ,,,,FALSE 230 | ,,,,FALSE 231 | ,,,,FALSE 232 | ,,,,FALSE 233 | ,,,,FALSE 234 | ,,,,FALSE 235 | ,,,,FALSE 236 | ,,,,FALSE 237 | ,,,,FALSE 238 | ,,,,FALSE 239 | ,,,,FALSE 240 | ,,,,FALSE 241 | ,,,,FALSE 242 | ,,,,FALSE 243 | ,,,,FALSE 244 | ,,,,FALSE 245 | ,,,,FALSE 246 | ,,,,FALSE 247 | ,,,,FALSE 248 | ,,,,FALSE 249 | ,,,,FALSE 250 | ,,,,FALSE 251 | ,,,,FALSE 252 | ,,,,FALSE 253 | ,,,,FALSE 254 | ,,,,FALSE 255 | ,,,,FALSE 256 | ,,,,FALSE 257 | ,,,,FALSE 258 | ,,,,FALSE 259 | ,,,,FALSE 260 | ,,,,FALSE 261 | ,,,,FALSE 262 | ,,,,FALSE 263 | ,,,,FALSE 264 | ,,,,FALSE 265 | ,,,,FALSE 266 | ,,,,FALSE 267 | ,,,,FALSE 268 | ,,,,FALSE 269 | ,,,,FALSE 270 | ,,,,FALSE 271 | ,,,,FALSE 272 | ,,,,FALSE 273 | ,,,,FALSE 274 | ,,,,FALSE 275 | ,,,,FALSE 276 | ,,,,FALSE 277 | ,,,,FALSE 278 | ,,,,FALSE 279 | ,,,,FALSE 280 | ,,,,FALSE 281 | ,,,,FALSE 282 | ,,,,FALSE 283 | ,,,,FALSE 284 | ,,,,FALSE 285 | ,,,,FALSE 286 | ,,,,FALSE 287 | ,,,,FALSE 288 | ,,,,FALSE 289 | ,,,,FALSE 290 | ,,,,FALSE 291 | ,,,,FALSE 292 | ,,,,FALSE 293 | ,,,,FALSE 294 | ,,,,FALSE 295 | ,,,,FALSE 296 | ,,,,FALSE 297 | ,,,,FALSE 298 | ,,,,FALSE 299 | ,,,,FALSE 300 | ,,,,FALSE 301 | ,,,,FALSE 302 | ,,,,FALSE 303 | ,,,,FALSE 304 | ,,,,FALSE 305 | ,,,,FALSE 306 | ,,,,FALSE 307 | ,,,,FALSE 308 | ,,,,FALSE 309 | ,,,,FALSE 310 | ,,,,FALSE 311 | ,,,,FALSE 312 | ,,,,FALSE 313 | ,,,,FALSE 314 | ,,,,FALSE 315 | ,,,,FALSE 316 | ,,,,FALSE 317 | ,,,,FALSE 318 | ,,,,FALSE 319 | ,,,,FALSE 320 | ,,,,FALSE 321 | ,,,,FALSE 322 | ,,,,FALSE 323 | ,,,,FALSE 324 | ,,,,FALSE 325 | ,,,,FALSE 326 | ,,,,FALSE 327 | ,,,,FALSE 328 | ,,,,FALSE 329 | ,,,,FALSE 330 | ,,,,FALSE 331 | ,,,,FALSE 332 | ,,,,FALSE 333 | ,,,,FALSE 334 | ,,,,FALSE 335 | ,,,,FALSE 336 | ,,,,FALSE 337 | ,,,,FALSE 338 | ,,,,FALSE 339 | ,,,,FALSE 340 | ,,,,FALSE 341 | ,,,,FALSE 342 | ,,,,FALSE 343 | ,,,,FALSE 344 | ,,,,FALSE 345 | ,,,,FALSE 346 | ,,,,FALSE 347 | ,,,,FALSE 348 | ,,,,FALSE 349 | ,,,,FALSE 350 | ,,,,FALSE 351 | ,,,,FALSE 352 | ,,,,FALSE 353 | ,,,,FALSE 354 | ,,,,FALSE 355 | ,,,,FALSE 356 | ,,,,FALSE 357 | ,,,,FALSE 358 | ,,,,FALSE 359 | ,,,,FALSE 360 | ,,,,FALSE 361 | ,,,,FALSE 362 | ,,,,FALSE 363 | ,,,,FALSE 364 | ,,,,FALSE 365 | ,,,,FALSE 366 | ,,,,FALSE 367 | ,,,,FALSE 368 | ,,,,FALSE 369 | ,,,,FALSE 370 | ,,,,FALSE 371 | ,,,,FALSE 372 | ,,,,FALSE 373 | ,,,,FALSE 374 | ,,,,FALSE 375 | ,,,,FALSE 376 | ,,,,FALSE 377 | ,,,,FALSE 378 | ,,,,FALSE 379 | ,,,,FALSE 380 | ,,,,FALSE 381 | ,,,,FALSE 382 | ,,,,FALSE 383 | ,,,,FALSE 384 | ,,,,FALSE 385 | ,,,,FALSE 386 | ,,,,FALSE 387 | ,,,,FALSE 388 | ,,,,FALSE 389 | ,,,,FALSE 390 | ,,,,FALSE 391 | ,,,,FALSE 392 | ,,,,FALSE 393 | ,,,,FALSE 394 | ,,,,FALSE 395 | ,,,,FALSE 396 | ,,,,FALSE 397 | ,,,,FALSE 398 | ,,,,FALSE 399 | ,,,,FALSE 400 | ,,,,FALSE 401 | ,,,,FALSE 402 | ,,,,FALSE 403 | ,,,,FALSE 404 | ,,,,FALSE 405 | ,,,,FALSE 406 | ,,,,FALSE 407 | ,,,,FALSE 408 | ,,,,FALSE 409 | ,,,,FALSE 410 | ,,,,FALSE 411 | ,,,,FALSE 412 | ,,,,FALSE 413 | ,,,,FALSE 414 | ,,,,FALSE 415 | ,,,,FALSE 416 | ,,,,FALSE 417 | ,,,,FALSE 418 | ,,,,FALSE 419 | ,,,,FALSE 420 | ,,,,FALSE 421 | ,,,,FALSE 422 | ,,,,FALSE 423 | ,,,,FALSE 424 | ,,,,FALSE 425 | ,,,,FALSE 426 | ,,,,FALSE 427 | ,,,,FALSE 428 | ,,,,FALSE 429 | ,,,,FALSE 430 | ,,,,FALSE 431 | ,,,,FALSE 432 | ,,,,FALSE 433 | ,,,,FALSE 434 | ,,,,FALSE 435 | ,,,,FALSE 436 | ,,,,FALSE 437 | ,,,,FALSE 438 | ,,,,FALSE 439 | ,,,,FALSE 440 | ,,,,FALSE 441 | ,,,,FALSE 442 | ,,,,FALSE 443 | ,,,,FALSE 444 | ,,,,FALSE 445 | ,,,,FALSE 446 | ,,,,FALSE 447 | ,,,,FALSE 448 | ,,,,FALSE 449 | ,,,,FALSE 450 | ,,,,FALSE 451 | ,,,,FALSE 452 | ,,,,FALSE 453 | ,,,,FALSE 454 | ,,,,FALSE 455 | ,,,,FALSE 456 | ,,,,FALSE 457 | ,,,,FALSE 458 | ,,,,FALSE 459 | ,,,,FALSE 460 | ,,,,FALSE 461 | ,,,,FALSE 462 | ,,,,FALSE 463 | ,,,,FALSE 464 | ,,,,FALSE 465 | ,,,,FALSE 466 | ,,,,FALSE 467 | ,,,,FALSE 468 | ,,,,FALSE 469 | ,,,,FALSE 470 | ,,,,FALSE 471 | ,,,,FALSE 472 | ,,,,FALSE 473 | ,,,,FALSE 474 | ,,,,FALSE 475 | ,,,,FALSE 476 | ,,,,FALSE 477 | ,,,,FALSE 478 | ,,,,FALSE 479 | ,,,,FALSE 480 | ,,,,FALSE 481 | ,,,,FALSE 482 | ,,,,FALSE 483 | ,,,,FALSE 484 | ,,,,FALSE 485 | ,,,,FALSE 486 | ,,,,FALSE 487 | ,,,,FALSE 488 | ,,,,FALSE 489 | ,,,,FALSE 490 | ,,,,FALSE 491 | ,,,,FALSE 492 | ,,,,FALSE 493 | ,,,,FALSE 494 | ,,,,FALSE -------------------------------------------------------------------------------- /data/static/ScenarioPrompt_autocomplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ludobico/ComfyUI-ScenarioPrompt/d8ed16be03e8eee3713a66afe1d9ffbd2b72354a/data/static/ScenarioPrompt_autocomplete.gif -------------------------------------------------------------------------------- /data/static/Scenario_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ludobico/ComfyUI-ScenarioPrompt/d8ed16be03e8eee3713a66afe1d9ffbd2b72354a/data/static/Scenario_prompt.png -------------------------------------------------------------------------------- /data/static/Scenario_prompt_caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ludobico/ComfyUI-ScenarioPrompt/d8ed16be03e8eee3713a66afe1d9ffbd2b72354a/data/static/Scenario_prompt_caution.png -------------------------------------------------------------------------------- /data/static/Scenario_prompt_example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ludobico/ComfyUI-ScenarioPrompt/d8ed16be03e8eee3713a66afe1d9ffbd2b72354a/data/static/Scenario_prompt_example1.png -------------------------------------------------------------------------------- /data/template.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "tag": "girl" 4 | }, 5 | { 6 | "tag": "1 girl" 7 | }, 8 | { 9 | "tag": "2 girl" 10 | }, 11 | { 12 | "tag": "man" 13 | }, 14 | { 15 | "tag": "solo" 16 | } 17 | ] 18 | -------------------------------------------------------------------------------- /node.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ludobico/ComfyUI-ScenarioPrompt/d8ed16be03e8eee3713a66afe1d9ffbd2b72354a/node.zip -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "comfyui-scenarioprompt" 3 | description = "ScenarioPrompt is a custom node that helps you understand what you're prompting for each property as you build your prompts" 4 | version = "1.0.0" 5 | license = { file = "LICENSE" } 6 | 7 | [project.urls] 8 | Repository = "https://github.com/Ludobico/ComfyUI-ScenarioPrompt" 9 | # Used by Comfy Registry https://comfyregistry.org 10 | 11 | [tool.comfy] 12 | PublisherId = "ludobico" 13 | DisplayName = "ComfyUI-ScenarioPrompt" 14 | Icon = "" 15 | -------------------------------------------------------------------------------- /s_prompt.py: -------------------------------------------------------------------------------- 1 | import re, json, os 2 | from server import PromptServer 3 | from aiohttp import web 4 | @PromptServer.instance.routes.get("/ludobico/autocomplete") 5 | async def get_autocomplete(request): 6 | full_path = os.path.dirname(os.path.realpath(__file__)) 7 | data_path = os.path.join(full_path, 'data') 8 | dataset_list = [f for f in os.listdir(data_path) if os.path.isfile(os.path.join(data_path, f))] 9 | json_data = {} 10 | for data in dataset_list: 11 | if data == 'template.json': 12 | pass 13 | else: 14 | with open(os.path.join(data_path, data), "r",encoding='UTF8') as f: 15 | json_data[data.split('.')[0]] = json.load(f) 16 | return web.json_response(json_data) 17 | class ScenarioPrompt: 18 | def __init__(self): 19 | pass 20 | 21 | @classmethod 22 | def INPUT_TYPES(s): 23 | """ 24 | Character : NovelAI - 태그[인물] 25 | Face : NovelAI - 태그[외모] 26 | Body_type : NovelAI - 태그[체형] 27 | Fashion : NovelAI - 태그[의상] 28 | Accessory : NovelAI - 태그[장신구] 29 | Action : NovelAI - 태그[동작 1] , NovelAI - 태그[동작 2], NovelAI - 태그[행동] 30 | Point_of_view : NovelAI - 태그[시점] 31 | Background : NovelAI - 태그[장소] 32 | """ 33 | fields = ["Character", "Face", "Body_type", "Fashion", "Accessory", "Action", "Point_of_view", "Background", "Light"] 34 | 35 | required = {"Base": ("STRING", {"multiline": True, "default": "masterpiece, best_quality"})} 36 | optional = {field: ("STRING", {"multiline": True}) for field in fields} 37 | 38 | return {"required": required, "optional": optional} 39 | 40 | RETURN_TYPES = ("STRING",) 41 | RETURN_NAMES = ("text",) 42 | OUTPUT_NODE = False 43 | FUNCTION = "executor" 44 | CATEGORY = "utils" 45 | 46 | def executor(self,Base,Character,Face,Body_type,Fashion,Accessory,Action,Point_of_view,Background,Light): 47 | def merge_commas(string): 48 | pattern = r',\s*,|,\s*,\s*,' 49 | modified_string = re.sub(pattern, ',', string) 50 | return modified_string 51 | 52 | result_components = [Base, Character, Face, Body_type, Fashion, Accessory, Action, Point_of_view, Background, Light] 53 | result_prompt = ', '.join(component for component in result_components if component) 54 | 55 | result_prompt = merge_commas(result_prompt) 56 | return (result_prompt,) 57 | 58 | 59 | NODE_CLASS_MAPPINGS = { 60 | "ScenarioPrompt": ScenarioPrompt, 61 | } 62 | 63 | NODE_DISPLAY_NAME_MAPPINGS = { 64 | "ScenarioPrompt": "Scenario Prompt" 65 | } -------------------------------------------------------------------------------- /web/js/autocomplete.js: -------------------------------------------------------------------------------- 1 | import { app } from '../../../scripts/app.js'; 2 | import { api } from '../../../scripts/api.js'; 3 | 4 | let promptList; 5 | let Character, Face, Body_type, Fashion, Accessory, Action, Point_of_view, Background, Light; 6 | let CharacterP, FaceP, Body_typeP, FashionP, AccessoryP, ActionP, Point_of_viewP, BackgroundP, LightP; 7 | let matchList; 8 | function createDiv(className) { 9 | var div = document.createElement('div'); 10 | div.className = className; 11 | // div.id = `match-list-${className}`; 12 | div.id = `match-list`; 13 | return div; 14 | } 15 | 16 | var CharacterDiv = createDiv('Character'); 17 | var FaceDiv = createDiv('Face'); 18 | var Body_typeDiv = createDiv('Body_type'); 19 | var FashionDiv = createDiv('Fashion'); 20 | var AccessoryDiv = createDiv('Accessory'); 21 | var ActionDiv = createDiv('Action'); 22 | var Point_of_viewDiv = createDiv('Point_of_view'); 23 | var BackgroundDiv = createDiv('Background'); 24 | var LightDiv = createDiv('Light'); 25 | 26 | app.registerExtension({ 27 | name: 'ComfyUI.ScenarioPrompt.autocomplete', 28 | async setup() { 29 | api 30 | .fetchApi('/ludobico/autocomplete') 31 | .then((res) => { 32 | const reader = res.body.getReader(); 33 | 34 | return reader.read(); 35 | }) 36 | .then(({ done, value }) => { 37 | if (!done) { 38 | const decoder = new TextDecoder('utf-8'); 39 | const decodedString = decoder.decode(value); 40 | promptList = JSON.parse(decodedString); 41 | Character = promptList['NovelAI - 태그[인물]']; 42 | Face = promptList['NovelAI - 태그[외모]']; 43 | Body_type = promptList['NovelAI - 태그[체형]']; 44 | Fashion = promptList['NovelAI - 태그[의상]']; 45 | Accessory = promptList['NovelAI - 태그[장신구]']; 46 | const Action1 = promptList['NovelAI - 태그[동작 1]']; 47 | const Action2 = promptList['NovelAI - 태그[동작 2]']; 48 | const Action3 = promptList['NovelAI - 태그[행동]']; 49 | Action = Action1.concat(Action2, Action3); 50 | Point_of_view = promptList['NovelAI - 태그[시점]']; 51 | Background = promptList['NovelAI - 태그[장소]']; 52 | Light = promptList['Lighting_prompt']; 53 | } 54 | }); 55 | }, 56 | async nodeCreated(node, app) { 57 | const searchPrompt = (searchText, promptType, htmlType) => { 58 | const searchWords = searchText.split(','); 59 | const lastWord = searchWords[searchWords.length - 1].trim(); 60 | let matches = promptType.filter((p) => { 61 | // const regex = new RegExp(`^\\d*${searchText}`, 'gi'); 62 | const regex = new RegExp(`.*${lastWord}.*`, 'gi'); 63 | return p.tag.match(regex); 64 | }); 65 | 66 | if (searchText.length === 0) { 67 | matches = []; 68 | matchList.innerHTML = ''; 69 | } 70 | if (matches.length === 0) { 71 | matchList.innerHTML = ''; 72 | } 73 | 74 | outputHtml(matches, htmlType); 75 | }; 76 | const outputHtml = (matches, htmlType) => { 77 | const textareaStyle = window.getComputedStyle(htmlType); 78 | const currentTop = parseFloat(textareaStyle.top.replace('px', '')); 79 | const CanvasHtml = document.querySelector('#graph-canvas'); 80 | const newTop = currentTop + 30; 81 | if (matches.length > 0) { 82 | const html = matches 83 | .map((match) => { 84 | matchList.style.position = textareaStyle.position; 85 | matchList.style.top = newTop + 'px'; 86 | matchList.style.left = textareaStyle.left; 87 | matchList.style.zIndex = 900; 88 | const matchHtml = ` 89 |