add truncated dataset
Browse files- conditioning_images.zip +3 -0
- fill500.py +101 -0
- images.zip +3 -0
- train.jsonl +500 -0
conditioning_images.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:544a6c6e03633630c6c1835fe4291e2fceb69cec1fb5eb04e9d5ef07a0bbbf15
|
| 3 |
+
size 1424089
|
fill500.py
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import pandas as pd
|
| 2 |
+
from huggingface_hub import hf_hub_url
|
| 3 |
+
import datasets
|
| 4 |
+
import os
|
| 5 |
+
|
| 6 |
+
_VERSION = datasets.Version("0.0.2")
|
| 7 |
+
|
| 8 |
+
_DESCRIPTION = "TODO"
|
| 9 |
+
_HOMEPAGE = "TODO"
|
| 10 |
+
_LICENSE = "TODO"
|
| 11 |
+
_CITATION = "TODO"
|
| 12 |
+
|
| 13 |
+
_FEATURES = datasets.Features(
|
| 14 |
+
{
|
| 15 |
+
"image": datasets.Image(),
|
| 16 |
+
"conditioning_image": datasets.Image(),
|
| 17 |
+
"text": datasets.Value("string"),
|
| 18 |
+
},
|
| 19 |
+
)
|
| 20 |
+
|
| 21 |
+
METADATA_URL = hf_hub_url(
|
| 22 |
+
"MDCurrent/fill500",
|
| 23 |
+
filename="train.jsonl",
|
| 24 |
+
repo_type="dataset",
|
| 25 |
+
)
|
| 26 |
+
|
| 27 |
+
IMAGES_URL = hf_hub_url(
|
| 28 |
+
"MDCurrent/fill500",
|
| 29 |
+
filename="images.zip",
|
| 30 |
+
repo_type="dataset",
|
| 31 |
+
)
|
| 32 |
+
|
| 33 |
+
CONDITIONING_IMAGES_URL = hf_hub_url(
|
| 34 |
+
"MDCurrent/fill500",
|
| 35 |
+
filename="conditioning_images.zip",
|
| 36 |
+
repo_type="dataset",
|
| 37 |
+
)
|
| 38 |
+
|
| 39 |
+
_DEFAULT_CONFIG = datasets.BuilderConfig(name="default", version=_VERSION)
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
class Fill500(datasets.GeneratorBasedBuilder):
|
| 43 |
+
BUILDER_CONFIGS = [_DEFAULT_CONFIG]
|
| 44 |
+
DEFAULT_CONFIG_NAME = "default"
|
| 45 |
+
|
| 46 |
+
def _info(self):
|
| 47 |
+
return datasets.DatasetInfo(
|
| 48 |
+
description=_DESCRIPTION,
|
| 49 |
+
features=_FEATURES,
|
| 50 |
+
supervised_keys=None,
|
| 51 |
+
homepage=_HOMEPAGE,
|
| 52 |
+
license=_LICENSE,
|
| 53 |
+
citation=_CITATION,
|
| 54 |
+
)
|
| 55 |
+
|
| 56 |
+
def _split_generators(self, dl_manager):
|
| 57 |
+
metadata_path = dl_manager.download(METADATA_URL)
|
| 58 |
+
images_dir = dl_manager.download_and_extract(IMAGES_URL)
|
| 59 |
+
conditioning_images_dir = dl_manager.download_and_extract(
|
| 60 |
+
CONDITIONING_IMAGES_URL
|
| 61 |
+
)
|
| 62 |
+
|
| 63 |
+
return [
|
| 64 |
+
datasets.SplitGenerator(
|
| 65 |
+
name=datasets.Split.TRAIN,
|
| 66 |
+
# These kwargs will be passed to _generate_examples
|
| 67 |
+
gen_kwargs={
|
| 68 |
+
"metadata_path": metadata_path,
|
| 69 |
+
"images_dir": images_dir,
|
| 70 |
+
"conditioning_images_dir": conditioning_images_dir,
|
| 71 |
+
},
|
| 72 |
+
),
|
| 73 |
+
]
|
| 74 |
+
|
| 75 |
+
def _generate_examples(self, metadata_path, images_dir, conditioning_images_dir):
|
| 76 |
+
metadata = pd.read_json(metadata_path, lines=True)
|
| 77 |
+
|
| 78 |
+
for _, row in metadata.iterrows():
|
| 79 |
+
text = row["text"]
|
| 80 |
+
|
| 81 |
+
image_path = row["image"]
|
| 82 |
+
image_path = os.path.join(images_dir, image_path)
|
| 83 |
+
image = open(image_path, "rb").read()
|
| 84 |
+
|
| 85 |
+
conditioning_image_path = row["conditioning_image"]
|
| 86 |
+
conditioning_image_path = os.path.join(
|
| 87 |
+
conditioning_images_dir, row["conditioning_image"]
|
| 88 |
+
)
|
| 89 |
+
conditioning_image = open(conditioning_image_path, "rb").read()
|
| 90 |
+
|
| 91 |
+
yield row["image"], {
|
| 92 |
+
"text": text,
|
| 93 |
+
"image": {
|
| 94 |
+
"path": image_path,
|
| 95 |
+
"bytes": image,
|
| 96 |
+
},
|
| 97 |
+
"conditioning_image": {
|
| 98 |
+
"path": conditioning_image_path,
|
| 99 |
+
"bytes": conditioning_image,
|
| 100 |
+
},
|
| 101 |
+
}
|
images.zip
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24fe97630910f0429c42a1598d5b4fd1ccd26eed20772d2fa55e05244b31fac7
|
| 3 |
+
size 1262917
|
train.jsonl
ADDED
|
@@ -0,0 +1,500 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"text": "pale golden rod circle with old lace background", "image": "images/0.png", "conditioning_image": "conditioning_images/0.png"}
|
| 2 |
+
{"text": "light coral circle with white background", "image": "images/1.png", "conditioning_image": "conditioning_images/1.png"}
|
| 3 |
+
{"text": "aqua circle with light pink background", "image": "images/2.png", "conditioning_image": "conditioning_images/2.png"}
|
| 4 |
+
{"text": "cornflower blue circle with light golden rod yellow background", "image": "images/3.png", "conditioning_image": "conditioning_images/3.png"}
|
| 5 |
+
{"text": "light slate gray circle with blue background", "image": "images/4.png", "conditioning_image": "conditioning_images/4.png"}
|
| 6 |
+
{"text": "light golden rod yellow circle with turquoise background", "image": "images/5.png", "conditioning_image": "conditioning_images/5.png"}
|
| 7 |
+
{"text": "crimson circle with papaya whip background", "image": "images/6.png", "conditioning_image": "conditioning_images/6.png"}
|
| 8 |
+
{"text": "aqua circle with slate blue background", "image": "images/7.png", "conditioning_image": "conditioning_images/7.png"}
|
| 9 |
+
{"text": "dark magenta circle with cyan background", "image": "images/8.png", "conditioning_image": "conditioning_images/8.png"}
|
| 10 |
+
{"text": "papaya whip circle with corn silk background", "image": "images/9.png", "conditioning_image": "conditioning_images/9.png"}
|
| 11 |
+
{"text": "silver circle with powder blue background", "image": "images/10.png", "conditioning_image": "conditioning_images/10.png"}
|
| 12 |
+
{"text": "dark orange circle with gray background", "image": "images/11.png", "conditioning_image": "conditioning_images/11.png"}
|
| 13 |
+
{"text": "cornflower blue circle with ivory background", "image": "images/12.png", "conditioning_image": "conditioning_images/12.png"}
|
| 14 |
+
{"text": "honey dew circle with fire brick background", "image": "images/13.png", "conditioning_image": "conditioning_images/13.png"}
|
| 15 |
+
{"text": "beige circle with yellow green background", "image": "images/14.png", "conditioning_image": "conditioning_images/14.png"}
|
| 16 |
+
{"text": "light golden rod yellow circle with rosy brown background", "image": "images/15.png", "conditioning_image": "conditioning_images/15.png"}
|
| 17 |
+
{"text": "light sea green circle with dark salmon background", "image": "images/16.png", "conditioning_image": "conditioning_images/16.png"}
|
| 18 |
+
{"text": "sky blue circle with dark orange background", "image": "images/17.png", "conditioning_image": "conditioning_images/17.png"}
|
| 19 |
+
{"text": "moccasin circle with lime background", "image": "images/18.png", "conditioning_image": "conditioning_images/18.png"}
|
| 20 |
+
{"text": "moccasin circle with olive drab background", "image": "images/19.png", "conditioning_image": "conditioning_images/19.png"}
|
| 21 |
+
{"text": "light salmon circle with burly wood background", "image": "images/20.png", "conditioning_image": "conditioning_images/20.png"}
|
| 22 |
+
{"text": "salmon circle with thistle background", "image": "images/21.png", "conditioning_image": "conditioning_images/21.png"}
|
| 23 |
+
{"text": "orange circle with sienna background", "image": "images/22.png", "conditioning_image": "conditioning_images/22.png"}
|
| 24 |
+
{"text": "medium violet red circle with medium aquamarine background", "image": "images/23.png", "conditioning_image": "conditioning_images/23.png"}
|
| 25 |
+
{"text": "hot pink circle with golden rod background", "image": "images/24.png", "conditioning_image": "conditioning_images/24.png"}
|
| 26 |
+
{"text": "green yellow circle with salmon background", "image": "images/25.png", "conditioning_image": "conditioning_images/25.png"}
|
| 27 |
+
{"text": "olive circle with medium orchid background", "image": "images/26.png", "conditioning_image": "conditioning_images/26.png"}
|
| 28 |
+
{"text": "lemon chiffon circle with light gray background", "image": "images/27.png", "conditioning_image": "conditioning_images/27.png"}
|
| 29 |
+
{"text": "dark cyan circle with lime background", "image": "images/28.png", "conditioning_image": "conditioning_images/28.png"}
|
| 30 |
+
{"text": "dark orchid circle with crimson background", "image": "images/29.png", "conditioning_image": "conditioning_images/29.png"}
|
| 31 |
+
{"text": "sky blue circle with maroon background", "image": "images/30.png", "conditioning_image": "conditioning_images/30.png"}
|
| 32 |
+
{"text": "dark slate blue circle with royal blue background", "image": "images/31.png", "conditioning_image": "conditioning_images/31.png"}
|
| 33 |
+
{"text": "dark olive green circle with violet background", "image": "images/32.png", "conditioning_image": "conditioning_images/32.png"}
|
| 34 |
+
{"text": "medium aquamarine circle with steel blue background", "image": "images/33.png", "conditioning_image": "conditioning_images/33.png"}
|
| 35 |
+
{"text": "aquamarine circle with pink background", "image": "images/34.png", "conditioning_image": "conditioning_images/34.png"}
|
| 36 |
+
{"text": "salmon circle with pink background", "image": "images/35.png", "conditioning_image": "conditioning_images/35.png"}
|
| 37 |
+
{"text": "dark violet circle with wheat background", "image": "images/36.png", "conditioning_image": "conditioning_images/36.png"}
|
| 38 |
+
{"text": "golden rod circle with dark slate gray background", "image": "images/37.png", "conditioning_image": "conditioning_images/37.png"}
|
| 39 |
+
{"text": "medium spring green circle with plum background", "image": "images/38.png", "conditioning_image": "conditioning_images/38.png"}
|
| 40 |
+
{"text": "dark turquoise circle with aqua background", "image": "images/39.png", "conditioning_image": "conditioning_images/39.png"}
|
| 41 |
+
{"text": "dark slate blue circle with papaya whip background", "image": "images/40.png", "conditioning_image": "conditioning_images/40.png"}
|
| 42 |
+
{"text": "deep sky blue circle with navy background", "image": "images/41.png", "conditioning_image": "conditioning_images/41.png"}
|
| 43 |
+
{"text": "dark green circle with slate blue background", "image": "images/42.png", "conditioning_image": "conditioning_images/42.png"}
|
| 44 |
+
{"text": "midnight blue circle with indigo background", "image": "images/43.png", "conditioning_image": "conditioning_images/43.png"}
|
| 45 |
+
{"text": "peru circle with maroon background", "image": "images/44.png", "conditioning_image": "conditioning_images/44.png"}
|
| 46 |
+
{"text": "sky blue circle with pale green background", "image": "images/45.png", "conditioning_image": "conditioning_images/45.png"}
|
| 47 |
+
{"text": "white circle with sandy brown background", "image": "images/46.png", "conditioning_image": "conditioning_images/46.png"}
|
| 48 |
+
{"text": "navajo white circle with pale violet red background", "image": "images/47.png", "conditioning_image": "conditioning_images/47.png"}
|
| 49 |
+
{"text": "sea green circle with thistle background", "image": "images/48.png", "conditioning_image": "conditioning_images/48.png"}
|
| 50 |
+
{"text": "peru circle with medium blue background", "image": "images/49.png", "conditioning_image": "conditioning_images/49.png"}
|
| 51 |
+
{"text": "slate gray circle with dark violet background", "image": "images/50.png", "conditioning_image": "conditioning_images/50.png"}
|
| 52 |
+
{"text": "turquoise circle with salmon background", "image": "images/51.png", "conditioning_image": "conditioning_images/51.png"}
|
| 53 |
+
{"text": "dim gray circle with forest green background", "image": "images/52.png", "conditioning_image": "conditioning_images/52.png"}
|
| 54 |
+
{"text": "lime green circle with indigo background", "image": "images/53.png", "conditioning_image": "conditioning_images/53.png"}
|
| 55 |
+
{"text": "light gray circle with yellow background", "image": "images/54.png", "conditioning_image": "conditioning_images/54.png"}
|
| 56 |
+
{"text": "white smoke circle with lawn green background", "image": "images/55.png", "conditioning_image": "conditioning_images/55.png"}
|
| 57 |
+
{"text": "plum circle with navy background", "image": "images/56.png", "conditioning_image": "conditioning_images/56.png"}
|
| 58 |
+
{"text": "sea shell circle with blue violet background", "image": "images/57.png", "conditioning_image": "conditioning_images/57.png"}
|
| 59 |
+
{"text": "hot pink circle with dark cyan background", "image": "images/58.png", "conditioning_image": "conditioning_images/58.png"}
|
| 60 |
+
{"text": "dim gray circle with teal background", "image": "images/59.png", "conditioning_image": "conditioning_images/59.png"}
|
| 61 |
+
{"text": "maroon circle with orange red background", "image": "images/60.png", "conditioning_image": "conditioning_images/60.png"}
|
| 62 |
+
{"text": "navajo white circle with aqua background", "image": "images/61.png", "conditioning_image": "conditioning_images/61.png"}
|
| 63 |
+
{"text": "fuchsia circle with corn silk background", "image": "images/62.png", "conditioning_image": "conditioning_images/62.png"}
|
| 64 |
+
{"text": "lime green circle with sandy brown background", "image": "images/63.png", "conditioning_image": "conditioning_images/63.png"}
|
| 65 |
+
{"text": "yellow green circle with dark salmon background", "image": "images/64.png", "conditioning_image": "conditioning_images/64.png"}
|
| 66 |
+
{"text": "silver circle with rosy brown background", "image": "images/65.png", "conditioning_image": "conditioning_images/65.png"}
|
| 67 |
+
{"text": "gold circle with violet background", "image": "images/66.png", "conditioning_image": "conditioning_images/66.png"}
|
| 68 |
+
{"text": "light pink circle with orchid background", "image": "images/67.png", "conditioning_image": "conditioning_images/67.png"}
|
| 69 |
+
{"text": "dark salmon circle with spring green background", "image": "images/68.png", "conditioning_image": "conditioning_images/68.png"}
|
| 70 |
+
{"text": "blanched almond circle with medium slate blue background", "image": "images/69.png", "conditioning_image": "conditioning_images/69.png"}
|
| 71 |
+
{"text": "dark red circle with lime background", "image": "images/70.png", "conditioning_image": "conditioning_images/70.png"}
|
| 72 |
+
{"text": "medium purple circle with brown background", "image": "images/71.png", "conditioning_image": "conditioning_images/71.png"}
|
| 73 |
+
{"text": "light golden rod yellow circle with old lace background", "image": "images/72.png", "conditioning_image": "conditioning_images/72.png"}
|
| 74 |
+
{"text": "dark orange circle with dark turquoise background", "image": "images/73.png", "conditioning_image": "conditioning_images/73.png"}
|
| 75 |
+
{"text": "khaki circle with mint cream background", "image": "images/74.png", "conditioning_image": "conditioning_images/74.png"}
|
| 76 |
+
{"text": "medium slate blue circle with medium slate blue background", "image": "images/75.png", "conditioning_image": "conditioning_images/75.png"}
|
| 77 |
+
{"text": "light gray circle with hot pink background", "image": "images/76.png", "conditioning_image": "conditioning_images/76.png"}
|
| 78 |
+
{"text": "black circle with snow background", "image": "images/77.png", "conditioning_image": "conditioning_images/77.png"}
|
| 79 |
+
{"text": "light sky blue circle with medium sea green background", "image": "images/78.png", "conditioning_image": "conditioning_images/78.png"}
|
| 80 |
+
{"text": "rosy brown circle with hot pink background", "image": "images/79.png", "conditioning_image": "conditioning_images/79.png"}
|
| 81 |
+
{"text": "black circle with sea shell background", "image": "images/80.png", "conditioning_image": "conditioning_images/80.png"}
|
| 82 |
+
{"text": "papaya whip circle with aqua background", "image": "images/81.png", "conditioning_image": "conditioning_images/81.png"}
|
| 83 |
+
{"text": "cadet blue circle with yellow green background", "image": "images/82.png", "conditioning_image": "conditioning_images/82.png"}
|
| 84 |
+
{"text": "rosy brown circle with teal background", "image": "images/83.png", "conditioning_image": "conditioning_images/83.png"}
|
| 85 |
+
{"text": "deep pink circle with yellow green background", "image": "images/84.png", "conditioning_image": "conditioning_images/84.png"}
|
| 86 |
+
{"text": "green yellow circle with ghost white background", "image": "images/85.png", "conditioning_image": "conditioning_images/85.png"}
|
| 87 |
+
{"text": "moccasin circle with yellow background", "image": "images/86.png", "conditioning_image": "conditioning_images/86.png"}
|
| 88 |
+
{"text": "medium sea green circle with dark slate blue background", "image": "images/87.png", "conditioning_image": "conditioning_images/87.png"}
|
| 89 |
+
{"text": "peru circle with red background", "image": "images/88.png", "conditioning_image": "conditioning_images/88.png"}
|
| 90 |
+
{"text": "lime green circle with maroon background", "image": "images/89.png", "conditioning_image": "conditioning_images/89.png"}
|
| 91 |
+
{"text": "deep pink circle with plum background", "image": "images/90.png", "conditioning_image": "conditioning_images/90.png"}
|
| 92 |
+
{"text": "sandy brown circle with sea shell background", "image": "images/91.png", "conditioning_image": "conditioning_images/91.png"}
|
| 93 |
+
{"text": "orange red circle with light cyan background", "image": "images/92.png", "conditioning_image": "conditioning_images/92.png"}
|
| 94 |
+
{"text": "medium slate blue circle with dark gray background", "image": "images/93.png", "conditioning_image": "conditioning_images/93.png"}
|
| 95 |
+
{"text": "maroon circle with aqua background", "image": "images/94.png", "conditioning_image": "conditioning_images/94.png"}
|
| 96 |
+
{"text": "gray circle with spring green background", "image": "images/95.png", "conditioning_image": "conditioning_images/95.png"}
|
| 97 |
+
{"text": "light sky blue circle with antique white background", "image": "images/96.png", "conditioning_image": "conditioning_images/96.png"}
|
| 98 |
+
{"text": "peach puff circle with lemon chiffon background", "image": "images/97.png", "conditioning_image": "conditioning_images/97.png"}
|
| 99 |
+
{"text": "green yellow circle with spring green background", "image": "images/98.png", "conditioning_image": "conditioning_images/98.png"}
|
| 100 |
+
{"text": "slate gray circle with plum background", "image": "images/99.png", "conditioning_image": "conditioning_images/99.png"}
|
| 101 |
+
{"text": "light salmon circle with orchid background", "image": "images/100.png", "conditioning_image": "conditioning_images/100.png"}
|
| 102 |
+
{"text": "gold circle with rosy brown background", "image": "images/101.png", "conditioning_image": "conditioning_images/101.png"}
|
| 103 |
+
{"text": "dark blue circle with thistle background", "image": "images/102.png", "conditioning_image": "conditioning_images/102.png"}
|
| 104 |
+
{"text": "lime circle with corn silk background", "image": "images/103.png", "conditioning_image": "conditioning_images/103.png"}
|
| 105 |
+
{"text": "chartreuse circle with fire brick background", "image": "images/104.png", "conditioning_image": "conditioning_images/104.png"}
|
| 106 |
+
{"text": "sandy brown circle with light slate gray background", "image": "images/105.png", "conditioning_image": "conditioning_images/105.png"}
|
| 107 |
+
{"text": "medium orchid circle with cyan background", "image": "images/106.png", "conditioning_image": "conditioning_images/106.png"}
|
| 108 |
+
{"text": "beige circle with medium slate blue background", "image": "images/107.png", "conditioning_image": "conditioning_images/107.png"}
|
| 109 |
+
{"text": "light golden rod yellow circle with ghost white background", "image": "images/108.png", "conditioning_image": "conditioning_images/108.png"}
|
| 110 |
+
{"text": "dark orchid circle with orange red background", "image": "images/109.png", "conditioning_image": "conditioning_images/109.png"}
|
| 111 |
+
{"text": "sea green circle with peru background", "image": "images/110.png", "conditioning_image": "conditioning_images/110.png"}
|
| 112 |
+
{"text": "alice blue circle with dark turquoise background", "image": "images/111.png", "conditioning_image": "conditioning_images/111.png"}
|
| 113 |
+
{"text": "orchid circle with pale turquoise background", "image": "images/112.png", "conditioning_image": "conditioning_images/112.png"}
|
| 114 |
+
{"text": "papaya whip circle with sea green background", "image": "images/113.png", "conditioning_image": "conditioning_images/113.png"}
|
| 115 |
+
{"text": "light blue circle with blue background", "image": "images/114.png", "conditioning_image": "conditioning_images/114.png"}
|
| 116 |
+
{"text": "dark blue circle with sienna background", "image": "images/115.png", "conditioning_image": "conditioning_images/115.png"}
|
| 117 |
+
{"text": "olive drab circle with moccasin background", "image": "images/116.png", "conditioning_image": "conditioning_images/116.png"}
|
| 118 |
+
{"text": "red circle with cadet blue background", "image": "images/117.png", "conditioning_image": "conditioning_images/117.png"}
|
| 119 |
+
{"text": "linen circle with pale violet red background", "image": "images/118.png", "conditioning_image": "conditioning_images/118.png"}
|
| 120 |
+
{"text": "mint cream circle with gray background", "image": "images/119.png", "conditioning_image": "conditioning_images/119.png"}
|
| 121 |
+
{"text": "dark slate blue circle with cadet blue background", "image": "images/120.png", "conditioning_image": "conditioning_images/120.png"}
|
| 122 |
+
{"text": "medium purple circle with dodger blue background", "image": "images/121.png", "conditioning_image": "conditioning_images/121.png"}
|
| 123 |
+
{"text": "pale green circle with navajo white background", "image": "images/122.png", "conditioning_image": "conditioning_images/122.png"}
|
| 124 |
+
{"text": "olive drab circle with dark green background", "image": "images/123.png", "conditioning_image": "conditioning_images/123.png"}
|
| 125 |
+
{"text": "navajo white circle with old lace background", "image": "images/124.png", "conditioning_image": "conditioning_images/124.png"}
|
| 126 |
+
{"text": "sandy brown circle with teal background", "image": "images/125.png", "conditioning_image": "conditioning_images/125.png"}
|
| 127 |
+
{"text": "dark sea green circle with light sea green background", "image": "images/126.png", "conditioning_image": "conditioning_images/126.png"}
|
| 128 |
+
{"text": "dark magenta circle with orchid background", "image": "images/127.png", "conditioning_image": "conditioning_images/127.png"}
|
| 129 |
+
{"text": "orange circle with lavender blush background", "image": "images/128.png", "conditioning_image": "conditioning_images/128.png"}
|
| 130 |
+
{"text": "cyan circle with dodger blue background", "image": "images/129.png", "conditioning_image": "conditioning_images/129.png"}
|
| 131 |
+
{"text": "lavender blush circle with peach puff background", "image": "images/130.png", "conditioning_image": "conditioning_images/130.png"}
|
| 132 |
+
{"text": "fire brick circle with mint cream background", "image": "images/131.png", "conditioning_image": "conditioning_images/131.png"}
|
| 133 |
+
{"text": "olive drab circle with black background", "image": "images/132.png", "conditioning_image": "conditioning_images/132.png"}
|
| 134 |
+
{"text": "moccasin circle with dodger blue background", "image": "images/133.png", "conditioning_image": "conditioning_images/133.png"}
|
| 135 |
+
{"text": "mint cream circle with light golden rod yellow background", "image": "images/134.png", "conditioning_image": "conditioning_images/134.png"}
|
| 136 |
+
{"text": "light gray circle with golden rod background", "image": "images/135.png", "conditioning_image": "conditioning_images/135.png"}
|
| 137 |
+
{"text": "lemon chiffon circle with dim gray background", "image": "images/136.png", "conditioning_image": "conditioning_images/136.png"}
|
| 138 |
+
{"text": "dark golden rod circle with indigo background", "image": "images/137.png", "conditioning_image": "conditioning_images/137.png"}
|
| 139 |
+
{"text": "green yellow circle with orange red background", "image": "images/138.png", "conditioning_image": "conditioning_images/138.png"}
|
| 140 |
+
{"text": "chartreuse circle with spring green background", "image": "images/139.png", "conditioning_image": "conditioning_images/139.png"}
|
| 141 |
+
{"text": "brown circle with sea shell background", "image": "images/140.png", "conditioning_image": "conditioning_images/140.png"}
|
| 142 |
+
{"text": "pale green circle with lawn green background", "image": "images/141.png", "conditioning_image": "conditioning_images/141.png"}
|
| 143 |
+
{"text": "bisque circle with dark gray background", "image": "images/142.png", "conditioning_image": "conditioning_images/142.png"}
|
| 144 |
+
{"text": "lavender blush circle with light sky blue background", "image": "images/143.png", "conditioning_image": "conditioning_images/143.png"}
|
| 145 |
+
{"text": "ghost white circle with medium purple background", "image": "images/144.png", "conditioning_image": "conditioning_images/144.png"}
|
| 146 |
+
{"text": "steel blue circle with crimson background", "image": "images/145.png", "conditioning_image": "conditioning_images/145.png"}
|
| 147 |
+
{"text": "lavender circle with powder blue background", "image": "images/146.png", "conditioning_image": "conditioning_images/146.png"}
|
| 148 |
+
{"text": "dark olive green circle with light gray background", "image": "images/147.png", "conditioning_image": "conditioning_images/147.png"}
|
| 149 |
+
{"text": "green circle with golden rod background", "image": "images/148.png", "conditioning_image": "conditioning_images/148.png"}
|
| 150 |
+
{"text": "snow circle with blue background", "image": "images/149.png", "conditioning_image": "conditioning_images/149.png"}
|
| 151 |
+
{"text": "cadet blue circle with dark green background", "image": "images/150.png", "conditioning_image": "conditioning_images/150.png"}
|
| 152 |
+
{"text": "royal blue circle with olive drab background", "image": "images/151.png", "conditioning_image": "conditioning_images/151.png"}
|
| 153 |
+
{"text": "dark orchid circle with green background", "image": "images/152.png", "conditioning_image": "conditioning_images/152.png"}
|
| 154 |
+
{"text": "lavender blush circle with pale turquoise background", "image": "images/153.png", "conditioning_image": "conditioning_images/153.png"}
|
| 155 |
+
{"text": "gold circle with fire brick background", "image": "images/154.png", "conditioning_image": "conditioning_images/154.png"}
|
| 156 |
+
{"text": "bisque circle with peru background", "image": "images/155.png", "conditioning_image": "conditioning_images/155.png"}
|
| 157 |
+
{"text": "peru circle with dark khaki background", "image": "images/156.png", "conditioning_image": "conditioning_images/156.png"}
|
| 158 |
+
{"text": "light gray circle with dark violet background", "image": "images/157.png", "conditioning_image": "conditioning_images/157.png"}
|
| 159 |
+
{"text": "sandy brown circle with lavender background", "image": "images/158.png", "conditioning_image": "conditioning_images/158.png"}
|
| 160 |
+
{"text": "indian red circle with medium violet red background", "image": "images/159.png", "conditioning_image": "conditioning_images/159.png"}
|
| 161 |
+
{"text": "coral circle with pale turquoise background", "image": "images/160.png", "conditioning_image": "conditioning_images/160.png"}
|
| 162 |
+
{"text": "teal circle with chocolate background", "image": "images/161.png", "conditioning_image": "conditioning_images/161.png"}
|
| 163 |
+
{"text": "navajo white circle with orange background", "image": "images/162.png", "conditioning_image": "conditioning_images/162.png"}
|
| 164 |
+
{"text": "dark gray circle with thistle background", "image": "images/163.png", "conditioning_image": "conditioning_images/163.png"}
|
| 165 |
+
{"text": "antique white circle with medium orchid background", "image": "images/164.png", "conditioning_image": "conditioning_images/164.png"}
|
| 166 |
+
{"text": "saddle brown circle with beige background", "image": "images/165.png", "conditioning_image": "conditioning_images/165.png"}
|
| 167 |
+
{"text": "dodger blue circle with honey dew background", "image": "images/166.png", "conditioning_image": "conditioning_images/166.png"}
|
| 168 |
+
{"text": "light blue circle with lavender background", "image": "images/167.png", "conditioning_image": "conditioning_images/167.png"}
|
| 169 |
+
{"text": "light sky blue circle with dark green background", "image": "images/168.png", "conditioning_image": "conditioning_images/168.png"}
|
| 170 |
+
{"text": "olive drab circle with ghost white background", "image": "images/169.png", "conditioning_image": "conditioning_images/169.png"}
|
| 171 |
+
{"text": "green circle with tan background", "image": "images/170.png", "conditioning_image": "conditioning_images/170.png"}
|
| 172 |
+
{"text": "medium spring green circle with blanched almond background", "image": "images/171.png", "conditioning_image": "conditioning_images/171.png"}
|
| 173 |
+
{"text": "chocolate circle with dark blue background", "image": "images/172.png", "conditioning_image": "conditioning_images/172.png"}
|
| 174 |
+
{"text": "thistle circle with rosy brown background", "image": "images/173.png", "conditioning_image": "conditioning_images/173.png"}
|
| 175 |
+
{"text": "light salmon circle with dark violet background", "image": "images/174.png", "conditioning_image": "conditioning_images/174.png"}
|
| 176 |
+
{"text": "blue circle with fire brick background", "image": "images/175.png", "conditioning_image": "conditioning_images/175.png"}
|
| 177 |
+
{"text": "medium aquamarine circle with lemon chiffon background", "image": "images/176.png", "conditioning_image": "conditioning_images/176.png"}
|
| 178 |
+
{"text": "sea green circle with gray background", "image": "images/177.png", "conditioning_image": "conditioning_images/177.png"}
|
| 179 |
+
{"text": "cyan circle with navajo white background", "image": "images/178.png", "conditioning_image": "conditioning_images/178.png"}
|
| 180 |
+
{"text": "orchid circle with orange background", "image": "images/179.png", "conditioning_image": "conditioning_images/179.png"}
|
| 181 |
+
{"text": "rosy brown circle with sky blue background", "image": "images/180.png", "conditioning_image": "conditioning_images/180.png"}
|
| 182 |
+
{"text": "dark turquoise circle with slate blue background", "image": "images/181.png", "conditioning_image": "conditioning_images/181.png"}
|
| 183 |
+
{"text": "cadet blue circle with red background", "image": "images/182.png", "conditioning_image": "conditioning_images/182.png"}
|
| 184 |
+
{"text": "cadet blue circle with peru background", "image": "images/183.png", "conditioning_image": "conditioning_images/183.png"}
|
| 185 |
+
{"text": "light yellow circle with green background", "image": "images/184.png", "conditioning_image": "conditioning_images/184.png"}
|
| 186 |
+
{"text": "wheat circle with medium turquoise background", "image": "images/185.png", "conditioning_image": "conditioning_images/185.png"}
|
| 187 |
+
{"text": "medium violet red circle with powder blue background", "image": "images/186.png", "conditioning_image": "conditioning_images/186.png"}
|
| 188 |
+
{"text": "snow circle with midnight blue background", "image": "images/187.png", "conditioning_image": "conditioning_images/187.png"}
|
| 189 |
+
{"text": "saddle brown circle with pale violet red background", "image": "images/188.png", "conditioning_image": "conditioning_images/188.png"}
|
| 190 |
+
{"text": "dark olive green circle with yellow green background", "image": "images/189.png", "conditioning_image": "conditioning_images/189.png"}
|
| 191 |
+
{"text": "alice blue circle with dark cyan background", "image": "images/190.png", "conditioning_image": "conditioning_images/190.png"}
|
| 192 |
+
{"text": "navy circle with olive drab background", "image": "images/191.png", "conditioning_image": "conditioning_images/191.png"}
|
| 193 |
+
{"text": "beige circle with silver background", "image": "images/192.png", "conditioning_image": "conditioning_images/192.png"}
|
| 194 |
+
{"text": "fire brick circle with orange red background", "image": "images/193.png", "conditioning_image": "conditioning_images/193.png"}
|
| 195 |
+
{"text": "slate gray circle with ghost white background", "image": "images/194.png", "conditioning_image": "conditioning_images/194.png"}
|
| 196 |
+
{"text": "tomato circle with coral background", "image": "images/195.png", "conditioning_image": "conditioning_images/195.png"}
|
| 197 |
+
{"text": "black circle with deep pink background", "image": "images/196.png", "conditioning_image": "conditioning_images/196.png"}
|
| 198 |
+
{"text": "sky blue circle with burly wood background", "image": "images/197.png", "conditioning_image": "conditioning_images/197.png"}
|
| 199 |
+
{"text": "light blue circle with maroon background", "image": "images/198.png", "conditioning_image": "conditioning_images/198.png"}
|
| 200 |
+
{"text": "light slate gray circle with green background", "image": "images/199.png", "conditioning_image": "conditioning_images/199.png"}
|
| 201 |
+
{"text": "deep sky blue circle with dark green background", "image": "images/200.png", "conditioning_image": "conditioning_images/200.png"}
|
| 202 |
+
{"text": "blue violet circle with lavender background", "image": "images/201.png", "conditioning_image": "conditioning_images/201.png"}
|
| 203 |
+
{"text": "indigo circle with burly wood background", "image": "images/202.png", "conditioning_image": "conditioning_images/202.png"}
|
| 204 |
+
{"text": "deep sky blue circle with dark orange background", "image": "images/203.png", "conditioning_image": "conditioning_images/203.png"}
|
| 205 |
+
{"text": "dark sea green circle with dark gray background", "image": "images/204.png", "conditioning_image": "conditioning_images/204.png"}
|
| 206 |
+
{"text": "medium aquamarine circle with pale green background", "image": "images/205.png", "conditioning_image": "conditioning_images/205.png"}
|
| 207 |
+
{"text": "olive circle with dark khaki background", "image": "images/206.png", "conditioning_image": "conditioning_images/206.png"}
|
| 208 |
+
{"text": "orange red circle with medium purple background", "image": "images/207.png", "conditioning_image": "conditioning_images/207.png"}
|
| 209 |
+
{"text": "lavender blush circle with lavender background", "image": "images/208.png", "conditioning_image": "conditioning_images/208.png"}
|
| 210 |
+
{"text": "dark blue circle with mint cream background", "image": "images/209.png", "conditioning_image": "conditioning_images/209.png"}
|
| 211 |
+
{"text": "midnight blue circle with hot pink background", "image": "images/210.png", "conditioning_image": "conditioning_images/210.png"}
|
| 212 |
+
{"text": "navy circle with fire brick background", "image": "images/211.png", "conditioning_image": "conditioning_images/211.png"}
|
| 213 |
+
{"text": "bisque circle with papaya whip background", "image": "images/212.png", "conditioning_image": "conditioning_images/212.png"}
|
| 214 |
+
{"text": "medium blue circle with burly wood background", "image": "images/213.png", "conditioning_image": "conditioning_images/213.png"}
|
| 215 |
+
{"text": "black circle with khaki background", "image": "images/214.png", "conditioning_image": "conditioning_images/214.png"}
|
| 216 |
+
{"text": "dark orchid circle with dim gray background", "image": "images/215.png", "conditioning_image": "conditioning_images/215.png"}
|
| 217 |
+
{"text": "powder blue circle with indian red background", "image": "images/216.png", "conditioning_image": "conditioning_images/216.png"}
|
| 218 |
+
{"text": "cornflower blue circle with royal blue background", "image": "images/217.png", "conditioning_image": "conditioning_images/217.png"}
|
| 219 |
+
{"text": "light green circle with medium aquamarine background", "image": "images/218.png", "conditioning_image": "conditioning_images/218.png"}
|
| 220 |
+
{"text": "azure circle with corn silk background", "image": "images/219.png", "conditioning_image": "conditioning_images/219.png"}
|
| 221 |
+
{"text": "medium blue circle with dark slate gray background", "image": "images/220.png", "conditioning_image": "conditioning_images/220.png"}
|
| 222 |
+
{"text": "medium violet red circle with maroon background", "image": "images/221.png", "conditioning_image": "conditioning_images/221.png"}
|
| 223 |
+
{"text": "yellow circle with sea shell background", "image": "images/222.png", "conditioning_image": "conditioning_images/222.png"}
|
| 224 |
+
{"text": "dodger blue circle with indian red background", "image": "images/223.png", "conditioning_image": "conditioning_images/223.png"}
|
| 225 |
+
{"text": "purple circle with lime background", "image": "images/224.png", "conditioning_image": "conditioning_images/224.png"}
|
| 226 |
+
{"text": "red circle with black background", "image": "images/225.png", "conditioning_image": "conditioning_images/225.png"}
|
| 227 |
+
{"text": "royal blue circle with dark red background", "image": "images/226.png", "conditioning_image": "conditioning_images/226.png"}
|
| 228 |
+
{"text": "slate blue circle with dark cyan background", "image": "images/227.png", "conditioning_image": "conditioning_images/227.png"}
|
| 229 |
+
{"text": "plum circle with dark green background", "image": "images/228.png", "conditioning_image": "conditioning_images/228.png"}
|
| 230 |
+
{"text": "medium orchid circle with medium orchid background", "image": "images/229.png", "conditioning_image": "conditioning_images/229.png"}
|
| 231 |
+
{"text": "tomato circle with green background", "image": "images/230.png", "conditioning_image": "conditioning_images/230.png"}
|
| 232 |
+
{"text": "sandy brown circle with dark orchid background", "image": "images/231.png", "conditioning_image": "conditioning_images/231.png"}
|
| 233 |
+
{"text": "pink circle with linen background", "image": "images/232.png", "conditioning_image": "conditioning_images/232.png"}
|
| 234 |
+
{"text": "yellow green circle with light green background", "image": "images/233.png", "conditioning_image": "conditioning_images/233.png"}
|
| 235 |
+
{"text": "fuchsia circle with dark orange background", "image": "images/234.png", "conditioning_image": "conditioning_images/234.png"}
|
| 236 |
+
{"text": "salmon circle with dark gray background", "image": "images/235.png", "conditioning_image": "conditioning_images/235.png"}
|
| 237 |
+
{"text": "moccasin circle with dark blue background", "image": "images/236.png", "conditioning_image": "conditioning_images/236.png"}
|
| 238 |
+
{"text": "saddle brown circle with slate blue background", "image": "images/237.png", "conditioning_image": "conditioning_images/237.png"}
|
| 239 |
+
{"text": "azure circle with dark olive green background", "image": "images/238.png", "conditioning_image": "conditioning_images/238.png"}
|
| 240 |
+
{"text": "powder blue circle with tan background", "image": "images/239.png", "conditioning_image": "conditioning_images/239.png"}
|
| 241 |
+
{"text": "light blue circle with blanched almond background", "image": "images/240.png", "conditioning_image": "conditioning_images/240.png"}
|
| 242 |
+
{"text": "orange red circle with dark olive green background", "image": "images/241.png", "conditioning_image": "conditioning_images/241.png"}
|
| 243 |
+
{"text": "chocolate circle with burly wood background", "image": "images/242.png", "conditioning_image": "conditioning_images/242.png"}
|
| 244 |
+
{"text": "aquamarine circle with pink background", "image": "images/243.png", "conditioning_image": "conditioning_images/243.png"}
|
| 245 |
+
{"text": "dark green circle with purple background", "image": "images/244.png", "conditioning_image": "conditioning_images/244.png"}
|
| 246 |
+
{"text": "dark golden rod circle with dark olive green background", "image": "images/245.png", "conditioning_image": "conditioning_images/245.png"}
|
| 247 |
+
{"text": "misty rose circle with light golden rod yellow background", "image": "images/246.png", "conditioning_image": "conditioning_images/246.png"}
|
| 248 |
+
{"text": "dark violet circle with pale violet red background", "image": "images/247.png", "conditioning_image": "conditioning_images/247.png"}
|
| 249 |
+
{"text": "maroon circle with medium orchid background", "image": "images/248.png", "conditioning_image": "conditioning_images/248.png"}
|
| 250 |
+
{"text": "pale green circle with cornflower blue background", "image": "images/249.png", "conditioning_image": "conditioning_images/249.png"}
|
| 251 |
+
{"text": "cornflower blue circle with light steel blue background", "image": "images/250.png", "conditioning_image": "conditioning_images/250.png"}
|
| 252 |
+
{"text": "pale turquoise circle with cornflower blue background", "image": "images/251.png", "conditioning_image": "conditioning_images/251.png"}
|
| 253 |
+
{"text": "slate blue circle with peach puff background", "image": "images/252.png", "conditioning_image": "conditioning_images/252.png"}
|
| 254 |
+
{"text": "misty rose circle with slate gray background", "image": "images/253.png", "conditioning_image": "conditioning_images/253.png"}
|
| 255 |
+
{"text": "dark slate gray circle with lime background", "image": "images/254.png", "conditioning_image": "conditioning_images/254.png"}
|
| 256 |
+
{"text": "sandy brown circle with gainsboro background", "image": "images/255.png", "conditioning_image": "conditioning_images/255.png"}
|
| 257 |
+
{"text": "medium slate blue circle with dark cyan background", "image": "images/256.png", "conditioning_image": "conditioning_images/256.png"}
|
| 258 |
+
{"text": "white smoke circle with medium slate blue background", "image": "images/257.png", "conditioning_image": "conditioning_images/257.png"}
|
| 259 |
+
{"text": "moccasin circle with light pink background", "image": "images/258.png", "conditioning_image": "conditioning_images/258.png"}
|
| 260 |
+
{"text": "indigo circle with pale turquoise background", "image": "images/259.png", "conditioning_image": "conditioning_images/259.png"}
|
| 261 |
+
{"text": "red circle with peach puff background", "image": "images/260.png", "conditioning_image": "conditioning_images/260.png"}
|
| 262 |
+
{"text": "peach puff circle with dark salmon background", "image": "images/261.png", "conditioning_image": "conditioning_images/261.png"}
|
| 263 |
+
{"text": "dark slate gray circle with dark magenta background", "image": "images/262.png", "conditioning_image": "conditioning_images/262.png"}
|
| 264 |
+
{"text": "lavender circle with white smoke background", "image": "images/263.png", "conditioning_image": "conditioning_images/263.png"}
|
| 265 |
+
{"text": "dark red circle with deep sky blue background", "image": "images/264.png", "conditioning_image": "conditioning_images/264.png"}
|
| 266 |
+
{"text": "violet circle with light blue background", "image": "images/265.png", "conditioning_image": "conditioning_images/265.png"}
|
| 267 |
+
{"text": "light sky blue circle with light green background", "image": "images/266.png", "conditioning_image": "conditioning_images/266.png"}
|
| 268 |
+
{"text": "blue violet circle with sky blue background", "image": "images/267.png", "conditioning_image": "conditioning_images/267.png"}
|
| 269 |
+
{"text": "old lace circle with peru background", "image": "images/268.png", "conditioning_image": "conditioning_images/268.png"}
|
| 270 |
+
{"text": "gold circle with lemon chiffon background", "image": "images/269.png", "conditioning_image": "conditioning_images/269.png"}
|
| 271 |
+
{"text": "red circle with dark orange background", "image": "images/270.png", "conditioning_image": "conditioning_images/270.png"}
|
| 272 |
+
{"text": "cornflower blue circle with thistle background", "image": "images/271.png", "conditioning_image": "conditioning_images/271.png"}
|
| 273 |
+
{"text": "linen circle with dark olive green background", "image": "images/272.png", "conditioning_image": "conditioning_images/272.png"}
|
| 274 |
+
{"text": "medium spring green circle with slate blue background", "image": "images/273.png", "conditioning_image": "conditioning_images/273.png"}
|
| 275 |
+
{"text": "olive drab circle with teal background", "image": "images/274.png", "conditioning_image": "conditioning_images/274.png"}
|
| 276 |
+
{"text": "lawn green circle with blanched almond background", "image": "images/275.png", "conditioning_image": "conditioning_images/275.png"}
|
| 277 |
+
{"text": "gray circle with golden rod background", "image": "images/276.png", "conditioning_image": "conditioning_images/276.png"}
|
| 278 |
+
{"text": "dark turquoise circle with salmon background", "image": "images/277.png", "conditioning_image": "conditioning_images/277.png"}
|
| 279 |
+
{"text": "saddle brown circle with lime background", "image": "images/278.png", "conditioning_image": "conditioning_images/278.png"}
|
| 280 |
+
{"text": "royal blue circle with dark salmon background", "image": "images/279.png", "conditioning_image": "conditioning_images/279.png"}
|
| 281 |
+
{"text": "steel blue circle with dark magenta background", "image": "images/280.png", "conditioning_image": "conditioning_images/280.png"}
|
| 282 |
+
{"text": "medium orchid circle with peach puff background", "image": "images/281.png", "conditioning_image": "conditioning_images/281.png"}
|
| 283 |
+
{"text": "violet circle with medium spring green background", "image": "images/282.png", "conditioning_image": "conditioning_images/282.png"}
|
| 284 |
+
{"text": "medium purple circle with navy background", "image": "images/283.png", "conditioning_image": "conditioning_images/283.png"}
|
| 285 |
+
{"text": "sea shell circle with medium sea green background", "image": "images/284.png", "conditioning_image": "conditioning_images/284.png"}
|
| 286 |
+
{"text": "dark green circle with white smoke background", "image": "images/285.png", "conditioning_image": "conditioning_images/285.png"}
|
| 287 |
+
{"text": "dark sea green circle with powder blue background", "image": "images/286.png", "conditioning_image": "conditioning_images/286.png"}
|
| 288 |
+
{"text": "honey dew circle with dark magenta background", "image": "images/287.png", "conditioning_image": "conditioning_images/287.png"}
|
| 289 |
+
{"text": "dark salmon circle with lavender blush background", "image": "images/288.png", "conditioning_image": "conditioning_images/288.png"}
|
| 290 |
+
{"text": "slate blue circle with aquamarine background", "image": "images/289.png", "conditioning_image": "conditioning_images/289.png"}
|
| 291 |
+
{"text": "light coral circle with misty rose background", "image": "images/290.png", "conditioning_image": "conditioning_images/290.png"}
|
| 292 |
+
{"text": "white circle with sienna background", "image": "images/291.png", "conditioning_image": "conditioning_images/291.png"}
|
| 293 |
+
{"text": "pale green circle with dark slate blue background", "image": "images/292.png", "conditioning_image": "conditioning_images/292.png"}
|
| 294 |
+
{"text": "dark gray circle with golden rod background", "image": "images/293.png", "conditioning_image": "conditioning_images/293.png"}
|
| 295 |
+
{"text": "powder blue circle with pale turquoise background", "image": "images/294.png", "conditioning_image": "conditioning_images/294.png"}
|
| 296 |
+
{"text": "tan circle with light coral background", "image": "images/295.png", "conditioning_image": "conditioning_images/295.png"}
|
| 297 |
+
{"text": "lawn green circle with spring green background", "image": "images/296.png", "conditioning_image": "conditioning_images/296.png"}
|
| 298 |
+
{"text": "medium aquamarine circle with navy background", "image": "images/297.png", "conditioning_image": "conditioning_images/297.png"}
|
| 299 |
+
{"text": "sandy brown circle with powder blue background", "image": "images/298.png", "conditioning_image": "conditioning_images/298.png"}
|
| 300 |
+
{"text": "light sky blue circle with plum background", "image": "images/299.png", "conditioning_image": "conditioning_images/299.png"}
|
| 301 |
+
{"text": "beige circle with medium sea green background", "image": "images/300.png", "conditioning_image": "conditioning_images/300.png"}
|
| 302 |
+
{"text": "lime circle with dark red background", "image": "images/301.png", "conditioning_image": "conditioning_images/301.png"}
|
| 303 |
+
{"text": "dim gray circle with lavender blush background", "image": "images/302.png", "conditioning_image": "conditioning_images/302.png"}
|
| 304 |
+
{"text": "bisque circle with blue background", "image": "images/303.png", "conditioning_image": "conditioning_images/303.png"}
|
| 305 |
+
{"text": "dark red circle with deep sky blue background", "image": "images/304.png", "conditioning_image": "conditioning_images/304.png"}
|
| 306 |
+
{"text": "dark olive green circle with light yellow background", "image": "images/305.png", "conditioning_image": "conditioning_images/305.png"}
|
| 307 |
+
{"text": "white circle with cornflower blue background", "image": "images/306.png", "conditioning_image": "conditioning_images/306.png"}
|
| 308 |
+
{"text": "lavender circle with dark cyan background", "image": "images/307.png", "conditioning_image": "conditioning_images/307.png"}
|
| 309 |
+
{"text": "black circle with lavender blush background", "image": "images/308.png", "conditioning_image": "conditioning_images/308.png"}
|
| 310 |
+
{"text": "medium turquoise circle with misty rose background", "image": "images/309.png", "conditioning_image": "conditioning_images/309.png"}
|
| 311 |
+
{"text": "pale golden rod circle with navajo white background", "image": "images/310.png", "conditioning_image": "conditioning_images/310.png"}
|
| 312 |
+
{"text": "orange circle with silver background", "image": "images/311.png", "conditioning_image": "conditioning_images/311.png"}
|
| 313 |
+
{"text": "ivory circle with gray background", "image": "images/312.png", "conditioning_image": "conditioning_images/312.png"}
|
| 314 |
+
{"text": "linen circle with medium blue background", "image": "images/313.png", "conditioning_image": "conditioning_images/313.png"}
|
| 315 |
+
{"text": "gold circle with dark red background", "image": "images/314.png", "conditioning_image": "conditioning_images/314.png"}
|
| 316 |
+
{"text": "dark red circle with sienna background", "image": "images/315.png", "conditioning_image": "conditioning_images/315.png"}
|
| 317 |
+
{"text": "spring green circle with powder blue background", "image": "images/316.png", "conditioning_image": "conditioning_images/316.png"}
|
| 318 |
+
{"text": "sienna circle with medium blue background", "image": "images/317.png", "conditioning_image": "conditioning_images/317.png"}
|
| 319 |
+
{"text": "light green circle with aqua background", "image": "images/318.png", "conditioning_image": "conditioning_images/318.png"}
|
| 320 |
+
{"text": "light pink circle with cadet blue background", "image": "images/319.png", "conditioning_image": "conditioning_images/319.png"}
|
| 321 |
+
{"text": "deep pink circle with dodger blue background", "image": "images/320.png", "conditioning_image": "conditioning_images/320.png"}
|
| 322 |
+
{"text": "red circle with dark orchid background", "image": "images/321.png", "conditioning_image": "conditioning_images/321.png"}
|
| 323 |
+
{"text": "cyan circle with gray background", "image": "images/322.png", "conditioning_image": "conditioning_images/322.png"}
|
| 324 |
+
{"text": "yellow green circle with lavender blush background", "image": "images/323.png", "conditioning_image": "conditioning_images/323.png"}
|
| 325 |
+
{"text": "white circle with papaya whip background", "image": "images/324.png", "conditioning_image": "conditioning_images/324.png"}
|
| 326 |
+
{"text": "dark salmon circle with tomato background", "image": "images/325.png", "conditioning_image": "conditioning_images/325.png"}
|
| 327 |
+
{"text": "antique white circle with salmon background", "image": "images/326.png", "conditioning_image": "conditioning_images/326.png"}
|
| 328 |
+
{"text": "medium blue circle with chocolate background", "image": "images/327.png", "conditioning_image": "conditioning_images/327.png"}
|
| 329 |
+
{"text": "burly wood circle with pink background", "image": "images/328.png", "conditioning_image": "conditioning_images/328.png"}
|
| 330 |
+
{"text": "lime circle with sea green background", "image": "images/329.png", "conditioning_image": "conditioning_images/329.png"}
|
| 331 |
+
{"text": "dark orange circle with dark olive green background", "image": "images/330.png", "conditioning_image": "conditioning_images/330.png"}
|
| 332 |
+
{"text": "sea shell circle with light slate gray background", "image": "images/331.png", "conditioning_image": "conditioning_images/331.png"}
|
| 333 |
+
{"text": "dark golden rod circle with corn silk background", "image": "images/332.png", "conditioning_image": "conditioning_images/332.png"}
|
| 334 |
+
{"text": "light golden rod yellow circle with indigo background", "image": "images/333.png", "conditioning_image": "conditioning_images/333.png"}
|
| 335 |
+
{"text": "navajo white circle with dark orange background", "image": "images/334.png", "conditioning_image": "conditioning_images/334.png"}
|
| 336 |
+
{"text": "light pink circle with dark red background", "image": "images/335.png", "conditioning_image": "conditioning_images/335.png"}
|
| 337 |
+
{"text": "pale green circle with dark golden rod background", "image": "images/336.png", "conditioning_image": "conditioning_images/336.png"}
|
| 338 |
+
{"text": "dark sea green circle with dark olive green background", "image": "images/337.png", "conditioning_image": "conditioning_images/337.png"}
|
| 339 |
+
{"text": "forest green circle with forest green background", "image": "images/338.png", "conditioning_image": "conditioning_images/338.png"}
|
| 340 |
+
{"text": "white circle with cyan background", "image": "images/339.png", "conditioning_image": "conditioning_images/339.png"}
|
| 341 |
+
{"text": "dark slate gray circle with gold background", "image": "images/340.png", "conditioning_image": "conditioning_images/340.png"}
|
| 342 |
+
{"text": "dodger blue circle with lemon chiffon background", "image": "images/341.png", "conditioning_image": "conditioning_images/341.png"}
|
| 343 |
+
{"text": "cadet blue circle with misty rose background", "image": "images/342.png", "conditioning_image": "conditioning_images/342.png"}
|
| 344 |
+
{"text": "lawn green circle with wheat background", "image": "images/343.png", "conditioning_image": "conditioning_images/343.png"}
|
| 345 |
+
{"text": "gray circle with golden rod background", "image": "images/344.png", "conditioning_image": "conditioning_images/344.png"}
|
| 346 |
+
{"text": "mint cream circle with sea shell background", "image": "images/345.png", "conditioning_image": "conditioning_images/345.png"}
|
| 347 |
+
{"text": "violet circle with aqua background", "image": "images/346.png", "conditioning_image": "conditioning_images/346.png"}
|
| 348 |
+
{"text": "cornflower blue circle with steel blue background", "image": "images/347.png", "conditioning_image": "conditioning_images/347.png"}
|
| 349 |
+
{"text": "yellow green circle with light green background", "image": "images/348.png", "conditioning_image": "conditioning_images/348.png"}
|
| 350 |
+
{"text": "spring green circle with medium blue background", "image": "images/349.png", "conditioning_image": "conditioning_images/349.png"}
|
| 351 |
+
{"text": "gray circle with deep sky blue background", "image": "images/350.png", "conditioning_image": "conditioning_images/350.png"}
|
| 352 |
+
{"text": "khaki circle with dark salmon background", "image": "images/351.png", "conditioning_image": "conditioning_images/351.png"}
|
| 353 |
+
{"text": "light sky blue circle with light pink background", "image": "images/352.png", "conditioning_image": "conditioning_images/352.png"}
|
| 354 |
+
{"text": "green circle with dark green background", "image": "images/353.png", "conditioning_image": "conditioning_images/353.png"}
|
| 355 |
+
{"text": "indigo circle with fuchsia background", "image": "images/354.png", "conditioning_image": "conditioning_images/354.png"}
|
| 356 |
+
{"text": "medium violet red circle with light cyan background", "image": "images/355.png", "conditioning_image": "conditioning_images/355.png"}
|
| 357 |
+
{"text": "blue violet circle with lawn green background", "image": "images/356.png", "conditioning_image": "conditioning_images/356.png"}
|
| 358 |
+
{"text": "crimson circle with pale golden rod background", "image": "images/357.png", "conditioning_image": "conditioning_images/357.png"}
|
| 359 |
+
{"text": "gold circle with light sky blue background", "image": "images/358.png", "conditioning_image": "conditioning_images/358.png"}
|
| 360 |
+
{"text": "light blue circle with dim gray background", "image": "images/359.png", "conditioning_image": "conditioning_images/359.png"}
|
| 361 |
+
{"text": "dark slate blue circle with orange red background", "image": "images/360.png", "conditioning_image": "conditioning_images/360.png"}
|
| 362 |
+
{"text": "lavender blush circle with dark blue background", "image": "images/361.png", "conditioning_image": "conditioning_images/361.png"}
|
| 363 |
+
{"text": "mint cream circle with aquamarine background", "image": "images/362.png", "conditioning_image": "conditioning_images/362.png"}
|
| 364 |
+
{"text": "saddle brown circle with blue background", "image": "images/363.png", "conditioning_image": "conditioning_images/363.png"}
|
| 365 |
+
{"text": "sea shell circle with light golden rod yellow background", "image": "images/364.png", "conditioning_image": "conditioning_images/364.png"}
|
| 366 |
+
{"text": "light sea green circle with brown background", "image": "images/365.png", "conditioning_image": "conditioning_images/365.png"}
|
| 367 |
+
{"text": "dark green circle with antique white background", "image": "images/366.png", "conditioning_image": "conditioning_images/366.png"}
|
| 368 |
+
{"text": "dim gray circle with moccasin background", "image": "images/367.png", "conditioning_image": "conditioning_images/367.png"}
|
| 369 |
+
{"text": "dark slate blue circle with indian red background", "image": "images/368.png", "conditioning_image": "conditioning_images/368.png"}
|
| 370 |
+
{"text": "olive circle with gold background", "image": "images/369.png", "conditioning_image": "conditioning_images/369.png"}
|
| 371 |
+
{"text": "dodger blue circle with gray background", "image": "images/370.png", "conditioning_image": "conditioning_images/370.png"}
|
| 372 |
+
{"text": "red circle with rosy brown background", "image": "images/371.png", "conditioning_image": "conditioning_images/371.png"}
|
| 373 |
+
{"text": "dark red circle with old lace background", "image": "images/372.png", "conditioning_image": "conditioning_images/372.png"}
|
| 374 |
+
{"text": "aquamarine circle with peach puff background", "image": "images/373.png", "conditioning_image": "conditioning_images/373.png"}
|
| 375 |
+
{"text": "thistle circle with sky blue background", "image": "images/374.png", "conditioning_image": "conditioning_images/374.png"}
|
| 376 |
+
{"text": "indigo circle with midnight blue background", "image": "images/375.png", "conditioning_image": "conditioning_images/375.png"}
|
| 377 |
+
{"text": "bisque circle with crimson background", "image": "images/376.png", "conditioning_image": "conditioning_images/376.png"}
|
| 378 |
+
{"text": "dark orange circle with indigo background", "image": "images/377.png", "conditioning_image": "conditioning_images/377.png"}
|
| 379 |
+
{"text": "blanched almond circle with turquoise background", "image": "images/378.png", "conditioning_image": "conditioning_images/378.png"}
|
| 380 |
+
{"text": "linen circle with light pink background", "image": "images/379.png", "conditioning_image": "conditioning_images/379.png"}
|
| 381 |
+
{"text": "white smoke circle with aquamarine background", "image": "images/380.png", "conditioning_image": "conditioning_images/380.png"}
|
| 382 |
+
{"text": "sienna circle with light sky blue background", "image": "images/381.png", "conditioning_image": "conditioning_images/381.png"}
|
| 383 |
+
{"text": "white smoke circle with gray background", "image": "images/382.png", "conditioning_image": "conditioning_images/382.png"}
|
| 384 |
+
{"text": "royal blue circle with cadet blue background", "image": "images/383.png", "conditioning_image": "conditioning_images/383.png"}
|
| 385 |
+
{"text": "ghost white circle with dark gray background", "image": "images/384.png", "conditioning_image": "conditioning_images/384.png"}
|
| 386 |
+
{"text": "medium aquamarine circle with powder blue background", "image": "images/385.png", "conditioning_image": "conditioning_images/385.png"}
|
| 387 |
+
{"text": "medium sea green circle with fuchsia background", "image": "images/386.png", "conditioning_image": "conditioning_images/386.png"}
|
| 388 |
+
{"text": "moccasin circle with lime background", "image": "images/387.png", "conditioning_image": "conditioning_images/387.png"}
|
| 389 |
+
{"text": "gray circle with red background", "image": "images/388.png", "conditioning_image": "conditioning_images/388.png"}
|
| 390 |
+
{"text": "indigo circle with alice blue background", "image": "images/389.png", "conditioning_image": "conditioning_images/389.png"}
|
| 391 |
+
{"text": "dodger blue circle with indigo background", "image": "images/390.png", "conditioning_image": "conditioning_images/390.png"}
|
| 392 |
+
{"text": "orchid circle with dark cyan background", "image": "images/391.png", "conditioning_image": "conditioning_images/391.png"}
|
| 393 |
+
{"text": "medium violet red circle with gold background", "image": "images/392.png", "conditioning_image": "conditioning_images/392.png"}
|
| 394 |
+
{"text": "purple circle with dark orange background", "image": "images/393.png", "conditioning_image": "conditioning_images/393.png"}
|
| 395 |
+
{"text": "dark salmon circle with cadet blue background", "image": "images/394.png", "conditioning_image": "conditioning_images/394.png"}
|
| 396 |
+
{"text": "fire brick circle with turquoise background", "image": "images/395.png", "conditioning_image": "conditioning_images/395.png"}
|
| 397 |
+
{"text": "deep sky blue circle with maroon background", "image": "images/396.png", "conditioning_image": "conditioning_images/396.png"}
|
| 398 |
+
{"text": "teal circle with coral background", "image": "images/397.png", "conditioning_image": "conditioning_images/397.png"}
|
| 399 |
+
{"text": "lavender blush circle with royal blue background", "image": "images/398.png", "conditioning_image": "conditioning_images/398.png"}
|
| 400 |
+
{"text": "tan circle with indian red background", "image": "images/399.png", "conditioning_image": "conditioning_images/399.png"}
|
| 401 |
+
{"text": "maroon circle with pink background", "image": "images/400.png", "conditioning_image": "conditioning_images/400.png"}
|
| 402 |
+
{"text": "wheat circle with forest green background", "image": "images/401.png", "conditioning_image": "conditioning_images/401.png"}
|
| 403 |
+
{"text": "aqua circle with khaki background", "image": "images/402.png", "conditioning_image": "conditioning_images/402.png"}
|
| 404 |
+
{"text": "light gray circle with golden rod background", "image": "images/403.png", "conditioning_image": "conditioning_images/403.png"}
|
| 405 |
+
{"text": "fuchsia circle with navajo white background", "image": "images/404.png", "conditioning_image": "conditioning_images/404.png"}
|
| 406 |
+
{"text": "medium sea green circle with honey dew background", "image": "images/405.png", "conditioning_image": "conditioning_images/405.png"}
|
| 407 |
+
{"text": "moccasin circle with midnight blue background", "image": "images/406.png", "conditioning_image": "conditioning_images/406.png"}
|
| 408 |
+
{"text": "aquamarine circle with cadet blue background", "image": "images/407.png", "conditioning_image": "conditioning_images/407.png"}
|
| 409 |
+
{"text": "plum circle with light golden rod yellow background", "image": "images/408.png", "conditioning_image": "conditioning_images/408.png"}
|
| 410 |
+
{"text": "steel blue circle with dim gray background", "image": "images/409.png", "conditioning_image": "conditioning_images/409.png"}
|
| 411 |
+
{"text": "medium blue circle with burly wood background", "image": "images/410.png", "conditioning_image": "conditioning_images/410.png"}
|
| 412 |
+
{"text": "moccasin circle with bisque background", "image": "images/411.png", "conditioning_image": "conditioning_images/411.png"}
|
| 413 |
+
{"text": "purple circle with medium sea green background", "image": "images/412.png", "conditioning_image": "conditioning_images/412.png"}
|
| 414 |
+
{"text": "medium violet red circle with floral white background", "image": "images/413.png", "conditioning_image": "conditioning_images/413.png"}
|
| 415 |
+
{"text": "dark red circle with dark magenta background", "image": "images/414.png", "conditioning_image": "conditioning_images/414.png"}
|
| 416 |
+
{"text": "blue circle with lawn green background", "image": "images/415.png", "conditioning_image": "conditioning_images/415.png"}
|
| 417 |
+
{"text": "dark salmon circle with lawn green background", "image": "images/416.png", "conditioning_image": "conditioning_images/416.png"}
|
| 418 |
+
{"text": "royal blue circle with turquoise background", "image": "images/417.png", "conditioning_image": "conditioning_images/417.png"}
|
| 419 |
+
{"text": "light coral circle with fire brick background", "image": "images/418.png", "conditioning_image": "conditioning_images/418.png"}
|
| 420 |
+
{"text": "violet circle with light gray background", "image": "images/419.png", "conditioning_image": "conditioning_images/419.png"}
|
| 421 |
+
{"text": "burly wood circle with cyan background", "image": "images/420.png", "conditioning_image": "conditioning_images/420.png"}
|
| 422 |
+
{"text": "coral circle with blue violet background", "image": "images/421.png", "conditioning_image": "conditioning_images/421.png"}
|
| 423 |
+
{"text": "deep sky blue circle with purple background", "image": "images/422.png", "conditioning_image": "conditioning_images/422.png"}
|
| 424 |
+
{"text": "khaki circle with brown background", "image": "images/423.png", "conditioning_image": "conditioning_images/423.png"}
|
| 425 |
+
{"text": "dark magenta circle with light cyan background", "image": "images/424.png", "conditioning_image": "conditioning_images/424.png"}
|
| 426 |
+
{"text": "lavender blush circle with chartreuse background", "image": "images/425.png", "conditioning_image": "conditioning_images/425.png"}
|
| 427 |
+
{"text": "tomato circle with slate blue background", "image": "images/426.png", "conditioning_image": "conditioning_images/426.png"}
|
| 428 |
+
{"text": "dark gray circle with dark olive green background", "image": "images/427.png", "conditioning_image": "conditioning_images/427.png"}
|
| 429 |
+
{"text": "pale green circle with snow background", "image": "images/428.png", "conditioning_image": "conditioning_images/428.png"}
|
| 430 |
+
{"text": "sienna circle with olive background", "image": "images/429.png", "conditioning_image": "conditioning_images/429.png"}
|
| 431 |
+
{"text": "light sea green circle with orchid background", "image": "images/430.png", "conditioning_image": "conditioning_images/430.png"}
|
| 432 |
+
{"text": "violet circle with indian red background", "image": "images/431.png", "conditioning_image": "conditioning_images/431.png"}
|
| 433 |
+
{"text": "crimson circle with cadet blue background", "image": "images/432.png", "conditioning_image": "conditioning_images/432.png"}
|
| 434 |
+
{"text": "dark orange circle with blue background", "image": "images/433.png", "conditioning_image": "conditioning_images/433.png"}
|
| 435 |
+
{"text": "misty rose circle with slate gray background", "image": "images/434.png", "conditioning_image": "conditioning_images/434.png"}
|
| 436 |
+
{"text": "brown circle with sea green background", "image": "images/435.png", "conditioning_image": "conditioning_images/435.png"}
|
| 437 |
+
{"text": "medium violet red circle with steel blue background", "image": "images/436.png", "conditioning_image": "conditioning_images/436.png"}
|
| 438 |
+
{"text": "light salmon circle with sea green background", "image": "images/437.png", "conditioning_image": "conditioning_images/437.png"}
|
| 439 |
+
{"text": "peru circle with dark gray background", "image": "images/438.png", "conditioning_image": "conditioning_images/438.png"}
|
| 440 |
+
{"text": "light green circle with black background", "image": "images/439.png", "conditioning_image": "conditioning_images/439.png"}
|
| 441 |
+
{"text": "orchid circle with light blue background", "image": "images/440.png", "conditioning_image": "conditioning_images/440.png"}
|
| 442 |
+
{"text": "light sea green circle with medium spring green background", "image": "images/441.png", "conditioning_image": "conditioning_images/441.png"}
|
| 443 |
+
{"text": "linen circle with linen background", "image": "images/442.png", "conditioning_image": "conditioning_images/442.png"}
|
| 444 |
+
{"text": "fire brick circle with ivory background", "image": "images/443.png", "conditioning_image": "conditioning_images/443.png"}
|
| 445 |
+
{"text": "light cyan circle with sea green background", "image": "images/444.png", "conditioning_image": "conditioning_images/444.png"}
|
| 446 |
+
{"text": "deep sky blue circle with dark slate blue background", "image": "images/445.png", "conditioning_image": "conditioning_images/445.png"}
|
| 447 |
+
{"text": "dark turquoise circle with antique white background", "image": "images/446.png", "conditioning_image": "conditioning_images/446.png"}
|
| 448 |
+
{"text": "orange circle with salmon background", "image": "images/447.png", "conditioning_image": "conditioning_images/447.png"}
|
| 449 |
+
{"text": "dark salmon circle with navajo white background", "image": "images/448.png", "conditioning_image": "conditioning_images/448.png"}
|
| 450 |
+
{"text": "linen circle with maroon background", "image": "images/449.png", "conditioning_image": "conditioning_images/449.png"}
|
| 451 |
+
{"text": "rosy brown circle with midnight blue background", "image": "images/450.png", "conditioning_image": "conditioning_images/450.png"}
|
| 452 |
+
{"text": "dark blue circle with black background", "image": "images/451.png", "conditioning_image": "conditioning_images/451.png"}
|
| 453 |
+
{"text": "dodger blue circle with dark slate gray background", "image": "images/452.png", "conditioning_image": "conditioning_images/452.png"}
|
| 454 |
+
{"text": "chartreuse circle with fuchsia background", "image": "images/453.png", "conditioning_image": "conditioning_images/453.png"}
|
| 455 |
+
{"text": "honey dew circle with deep pink background", "image": "images/454.png", "conditioning_image": "conditioning_images/454.png"}
|
| 456 |
+
{"text": "beige circle with misty rose background", "image": "images/455.png", "conditioning_image": "conditioning_images/455.png"}
|
| 457 |
+
{"text": "dark blue circle with crimson background", "image": "images/456.png", "conditioning_image": "conditioning_images/456.png"}
|
| 458 |
+
{"text": "dark gray circle with tomato background", "image": "images/457.png", "conditioning_image": "conditioning_images/457.png"}
|
| 459 |
+
{"text": "lime circle with light pink background", "image": "images/458.png", "conditioning_image": "conditioning_images/458.png"}
|
| 460 |
+
{"text": "pale golden rod circle with navajo white background", "image": "images/459.png", "conditioning_image": "conditioning_images/459.png"}
|
| 461 |
+
{"text": "gold circle with gray background", "image": "images/460.png", "conditioning_image": "conditioning_images/460.png"}
|
| 462 |
+
{"text": "light gray circle with forest green background", "image": "images/461.png", "conditioning_image": "conditioning_images/461.png"}
|
| 463 |
+
{"text": "orange red circle with ghost white background", "image": "images/462.png", "conditioning_image": "conditioning_images/462.png"}
|
| 464 |
+
{"text": "deep pink circle with cadet blue background", "image": "images/463.png", "conditioning_image": "conditioning_images/463.png"}
|
| 465 |
+
{"text": "cornflower blue circle with cornflower blue background", "image": "images/464.png", "conditioning_image": "conditioning_images/464.png"}
|
| 466 |
+
{"text": "salmon circle with sienna background", "image": "images/465.png", "conditioning_image": "conditioning_images/465.png"}
|
| 467 |
+
{"text": "azure circle with misty rose background", "image": "images/466.png", "conditioning_image": "conditioning_images/466.png"}
|
| 468 |
+
{"text": "medium spring green circle with navajo white background", "image": "images/467.png", "conditioning_image": "conditioning_images/467.png"}
|
| 469 |
+
{"text": "rosy brown circle with peach puff background", "image": "images/468.png", "conditioning_image": "conditioning_images/468.png"}
|
| 470 |
+
{"text": "tomato circle with dim gray background", "image": "images/469.png", "conditioning_image": "conditioning_images/469.png"}
|
| 471 |
+
{"text": "lime circle with light steel blue background", "image": "images/470.png", "conditioning_image": "conditioning_images/470.png"}
|
| 472 |
+
{"text": "hot pink circle with snow background", "image": "images/471.png", "conditioning_image": "conditioning_images/471.png"}
|
| 473 |
+
{"text": "peach puff circle with light steel blue background", "image": "images/472.png", "conditioning_image": "conditioning_images/472.png"}
|
| 474 |
+
{"text": "dark golden rod circle with lemon chiffon background", "image": "images/473.png", "conditioning_image": "conditioning_images/473.png"}
|
| 475 |
+
{"text": "dark slate blue circle with lavender blush background", "image": "images/474.png", "conditioning_image": "conditioning_images/474.png"}
|
| 476 |
+
{"text": "deep sky blue circle with light blue background", "image": "images/475.png", "conditioning_image": "conditioning_images/475.png"}
|
| 477 |
+
{"text": "cornflower blue circle with dark magenta background", "image": "images/476.png", "conditioning_image": "conditioning_images/476.png"}
|
| 478 |
+
{"text": "light yellow circle with honey dew background", "image": "images/477.png", "conditioning_image": "conditioning_images/477.png"}
|
| 479 |
+
{"text": "light cyan circle with bisque background", "image": "images/478.png", "conditioning_image": "conditioning_images/478.png"}
|
| 480 |
+
{"text": "dark green circle with aqua background", "image": "images/479.png", "conditioning_image": "conditioning_images/479.png"}
|
| 481 |
+
{"text": "honey dew circle with navy background", "image": "images/480.png", "conditioning_image": "conditioning_images/480.png"}
|
| 482 |
+
{"text": "medium sea green circle with ghost white background", "image": "images/481.png", "conditioning_image": "conditioning_images/481.png"}
|
| 483 |
+
{"text": "lime circle with fire brick background", "image": "images/482.png", "conditioning_image": "conditioning_images/482.png"}
|
| 484 |
+
{"text": "plum circle with hot pink background", "image": "images/483.png", "conditioning_image": "conditioning_images/483.png"}
|
| 485 |
+
{"text": "orchid circle with medium spring green background", "image": "images/484.png", "conditioning_image": "conditioning_images/484.png"}
|
| 486 |
+
{"text": "dark turquoise circle with crimson background", "image": "images/485.png", "conditioning_image": "conditioning_images/485.png"}
|
| 487 |
+
{"text": "dark salmon circle with indigo background", "image": "images/486.png", "conditioning_image": "conditioning_images/486.png"}
|
| 488 |
+
{"text": "midnight blue circle with turquoise background", "image": "images/487.png", "conditioning_image": "conditioning_images/487.png"}
|
| 489 |
+
{"text": "dark slate gray circle with slate gray background", "image": "images/488.png", "conditioning_image": "conditioning_images/488.png"}
|
| 490 |
+
{"text": "dark green circle with thistle background", "image": "images/489.png", "conditioning_image": "conditioning_images/489.png"}
|
| 491 |
+
{"text": "pale violet red circle with pink background", "image": "images/490.png", "conditioning_image": "conditioning_images/490.png"}
|
| 492 |
+
{"text": "papaya whip circle with cyan background", "image": "images/491.png", "conditioning_image": "conditioning_images/491.png"}
|
| 493 |
+
{"text": "green yellow circle with yellow green background", "image": "images/492.png", "conditioning_image": "conditioning_images/492.png"}
|
| 494 |
+
{"text": "saddle brown circle with light pink background", "image": "images/493.png", "conditioning_image": "conditioning_images/493.png"}
|
| 495 |
+
{"text": "tan circle with dark cyan background", "image": "images/494.png", "conditioning_image": "conditioning_images/494.png"}
|
| 496 |
+
{"text": "light gray circle with white smoke background", "image": "images/495.png", "conditioning_image": "conditioning_images/495.png"}
|
| 497 |
+
{"text": "azure circle with lavender background", "image": "images/496.png", "conditioning_image": "conditioning_images/496.png"}
|
| 498 |
+
{"text": "lavender circle with violet background", "image": "images/497.png", "conditioning_image": "conditioning_images/497.png"}
|
| 499 |
+
{"text": "sienna circle with medium violet red background", "image": "images/498.png", "conditioning_image": "conditioning_images/498.png"}
|
| 500 |
+
{"text": "medium sea green circle with coral background", "image": "images/499.png", "conditioning_image": "conditioning_images/499.png"}
|